EVOLUTION-NINJA
Edit File: 1732604646jay_erp.sql
-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Nov 25, 2024 at 08:36 AM -- Server version: 10.4.32-MariaDB -- PHP Version: 8.1.25 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!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 */; -- -- Database: `jay_erp` -- -- -------------------------------------------------------- -- -- Table structure for table `access_action_rights` -- CREATE TABLE `access_action_rights` ( `action_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `menu_id` int(11) NOT NULL, `insert_id` int(11) NOT NULL, `edit_id` int(11) NOT NULL, `delete_id` int(11) NOT NULL, `status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account type` -- CREATE TABLE `account type` ( `account_type_id` int(11) NOT NULL, `account_type` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_attach_notes` -- CREATE TABLE `account_attach_notes` ( `notes_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `lead_notes` varchar(555) NOT NULL, `created_by` int(11) NOT NULL, `attach_file` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `notes_from` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_calls` -- CREATE TABLE `account_calls` ( `call_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `subject` varchar(222) NOT NULL, `call_type` varchar(222) NOT NULL, `call_purpose` varchar(222) NOT NULL, `contact_num` varchar(111) NOT NULL, `call_details` varchar(111) NOT NULL, `call_timer` time NOT NULL, `call_duration` time NOT NULL, `description` varchar(222) NOT NULL, `call_result` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_events` -- CREATE TABLE `account_events` ( `event_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `event_name` varchar(222) NOT NULL, `all_day` varchar(111) NOT NULL, `from_date` date NOT NULL, `to_date` date NOT NULL, `host` varchar(111) NOT NULL, `participants` varchar(111) NOT NULL, `related_to` varchar(111) NOT NULL, `lead` varchar(111) NOT NULL, `repeat` varchar(111) NOT NULL, `description` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_new_task` -- CREATE TABLE `account_new_task` ( `acc_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `subject` varchar(222) NOT NULL, `all_day` varchar(222) NOT NULL, `type` varchar(250) NOT NULL, `due_date` date NOT NULL, `priority` varchar(222) NOT NULL, `owner` varchar(222) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `related_to` varchar(222) NOT NULL, `call_type` varchar(250) NOT NULL, `lead` varchar(222) NOT NULL, `call_purpose` varchar(250) NOT NULL, `contact_name` varchar(250) NOT NULL, `call_details` varchar(250) NOT NULL, `call_duration` varchar(250) NOT NULL, `call_result` varchar(250) NOT NULL, `status` varchar(250) NOT NULL, `description` varchar(350) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_tasks` -- CREATE TABLE `account_tasks` ( `task_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `subject` varchar(222) NOT NULL, `due_date` date NOT NULL, `priority` varchar(222) NOT NULL, `owner` varchar(222) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `repeat_type` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `account_type` -- CREATE TABLE `account_type` ( `account_type_id` int(11) NOT NULL, `account_type` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `acc_report_menu` -- CREATE TABLE `acc_report_menu` ( `acc_report_id` int(11) NOT NULL, `acc_report_type` varchar(350) NOT NULL, `acc_report_description` varchar(750) NOT NULL, `acc_link_name` varchar(650) NOT NULL, `acc_favorite_report` varchar(350) NOT NULL, `report_status` varchar(250) NOT NULL DEFAULT 'ACTIVE', `delete_status` varchar(150) NOT NULL DEFAULT 'ACTIVE', `type` varchar(500) NOT NULL, `created_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `add_ticket_organization` -- CREATE TABLE `add_ticket_organization` ( `id` int(11) NOT NULL, `address` text NOT NULL, `name` text NOT NULL, `phone` text NOT NULL, `note` text NOT NULL, `website` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` date NOT NULL, `created_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `add_ticket_user` -- CREATE TABLE `add_ticket_user` ( `id` int(11) NOT NULL, `email` text NOT NULL, `name` text NOT NULL, `phone` text NOT NULL, `user_status` text NOT NULL, `register_status` text NOT NULL, `note` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` date NOT NULL, `created_at` date NOT NULL, `locked` enum('NO','YES') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `assets` -- CREATE TABLE `assets` ( `assets_id` int(11) NOT NULL, `domain_name` varchar(256) NOT NULL, `domain_username` varchar(256) NOT NULL, `domain_link` varchar(256) NOT NULL, `d_password` varchar(256) NOT NULL, `gate_way` varchar(256) NOT NULL, `g_username` varchar(256) NOT NULL, `g_password` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `assigned_task_person_details` -- CREATE TABLE `assigned_task_person_details` ( `id` int(11) NOT NULL, `task_id` int(11) NOT NULL, `emp_id` int(11) NOT NULL, `project_id` int(11) NOT NULL, `client_requirement_id` int(11) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` date NOT NULL, `modified_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `assigned_tickets` -- CREATE TABLE `assigned_tickets` ( `ticket_assigned_id` int(11) NOT NULL, `ticket_id` int(11) NOT NULL, `task` varchar(255) NOT NULL, `task_description` varchar(500) NOT NULL, `responsible_person` int(11) NOT NULL, `assigned_date` varchar(50) NOT NULL, `due_date` varchar(50) NOT NULL, `assigned_by` int(11) NOT NULL, `ticket_task_status` varchar(50) NOT NULL, `completed_on` varchar(50) NOT NULL, `completed_by` int(11) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `assign_task` -- CREATE TABLE `assign_task` ( `id` int(11) NOT NULL, `client_requirement_id` int(11) NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `attachment` text NOT NULL, `responsible_person` text NOT NULL, `deadline` text NOT NULL, `priority` text NOT NULL, `link` text NOT NULL, `link_text` text NOT NULL, `project_id` int(11) NOT NULL, `time_period` text NOT NULL, `created_by` int(11) NOT NULL, `modified_by` int(11) NOT NULL, `created_at` date NOT NULL, `modified_at` date NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `client_assets` -- CREATE TABLE `client_assets` ( `asset_id` int(11) NOT NULL, `domain_asset_for` varchar(50) NOT NULL, `account_id` int(11) NOT NULL, `master_type_id` text NOT NULL, `all_data` text NOT NULL, `form_field_type` text NOT NULL, `form_field_label` text NOT NULL, `form_field_name` text NOT NULL, `form_field_value` text NOT NULL, `domain_name` varchar(100) NOT NULL, `domain_server` varchar(100) NOT NULL, `domain_username` varchar(100) NOT NULL, `domain_password` varchar(100) NOT NULL, `domain_start_date` varchar(100) NOT NULL, `domain_expiry_date` varchar(100) NOT NULL, `domain_status` varchar(100) NOT NULL, `domain_space` varchar(100) NOT NULL, `domain_service_provider` varchar(100) NOT NULL, `hosting_asset_for` varchar(255) NOT NULL, `hosting_username` varchar(100) NOT NULL, `hosting_password` varchar(100) NOT NULL, `hosting_service_provider` varchar(100) NOT NULL, `hosting_expiry_date` varchar(100) NOT NULL, `pg_asset_for` varchar(255) NOT NULL, `pg_username` varchar(100) NOT NULL, `pg_password` varchar(100) NOT NULL, `pg_service_provider` varchar(100) NOT NULL, `pg_commission` varchar(100) NOT NULL, `sms_asset_for` varchar(255) NOT NULL, `sms_username` varchar(100) NOT NULL, `sms_password` varchar(100) NOT NULL, `sms_service_provider` varchar(100) NOT NULL, `sms_expiry_date` varchar(100) NOT NULL, `no_of_sms` varchar(100) NOT NULL, `email_asset_for` varchar(255) NOT NULL, `email_username` varchar(100) NOT NULL, `email_password` varchar(100) NOT NULL, `email_service_provider` varchar(100) NOT NULL, `email_expiry_date` varchar(100) NOT NULL, `no_of_emails` varchar(100) NOT NULL, `attachment_upload` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `client_requirements` -- CREATE TABLE `client_requirements` ( `client_requirement_id` int(11) NOT NULL, `entered_by` int(11) NOT NULL, `project_id` varchar(255) NOT NULL, `project_comments` text NOT NULL, `client_name` varchar(100) NOT NULL, `client_name_comments` text NOT NULL, `contact_number` varchar(100) NOT NULL, `contact_number_comments` text NOT NULL, `email` varchar(200) NOT NULL, `email_comments` text NOT NULL, `website` varchar(200) NOT NULL, `website_comments` text NOT NULL, `industry_type` varchar(200) NOT NULL, `u_industry` int(11) NOT NULL, `u_industry_on` datetime NOT NULL, `industry_type_comments` text NOT NULL, `website_type` varchar(200) NOT NULL, `u_web_type` int(11) NOT NULL, `u_web_type_edit_on` datetime NOT NULL, `website_type_comments` text NOT NULL, `client_domain` varchar(255) NOT NULL, `u_domain_id` int(11) NOT NULL, `u_domain_edit_on` datetime NOT NULL, `client_domain_comments` text NOT NULL, `client_server` varchar(255) NOT NULL, `u_client_server_id` int(11) NOT NULL, `u_client_edit_on` datetime NOT NULL, `client_server_comments` text NOT NULL, `reference_shared` varchar(255) NOT NULL, `reference_id` int(11) NOT NULL, `reference_edit_on` datetime NOT NULL, `reference_shared_comments` text NOT NULL, `logo` varchar(200) NOT NULL, `u_logo_id` int(11) NOT NULL, `logo_edit_on` datetime NOT NULL, `logo_comments` text NOT NULL, `blog` varchar(255) NOT NULL, `u_blog_id` int(11) NOT NULL, `u_blog_edit_on` datetime NOT NULL, `blog_comments` text NOT NULL, `no_of_templates` varchar(100) NOT NULL, `u_template_id` int(11) NOT NULL, `u_template_edit_on` datetime NOT NULL, `template_comments` text NOT NULL, `template_concept` text NOT NULL, `u_temp_concept_id` int(11) NOT NULL, `concept_edit_on` datetime NOT NULL, `template_concept_comments` text NOT NULL, `approved_date` varchar(50) NOT NULL, `u_approved_id` int(11) NOT NULL, `u_approved_on` datetime NOT NULL, `approved_date_comments` text NOT NULL, `content_received_date` varchar(50) NOT NULL, `u_content_id` int(11) NOT NULL, `u_content_edit_on` datetime NOT NULL, `content_received_date_comments` text NOT NULL, `development_start_date` varchar(50) NOT NULL, `u_development_id` int(11) NOT NULL, `u_development_edit_on` datetime NOT NULL, `development_start_date_comments` text NOT NULL, `development_end_date` varchar(50) NOT NULL, `u_end_id` int(11) NOT NULL, `u_end_edit_on` datetime NOT NULL, `development_end_date_comments` text NOT NULL, `testing` varchar(200) NOT NULL, `testing_comments` text NOT NULL, `website_live_date` varchar(50) NOT NULL, `website_live_comments` text NOT NULL, `changes` text NOT NULL, `changes_comments` text NOT NULL, `email_provided` varchar(200) NOT NULL, `email_provided_comments` text NOT NULL, `google_analytics` varchar(255) NOT NULL, `google_analytics_comments` text NOT NULL, `payment_gateway` text NOT NULL, `payment_gateway_comments` text NOT NULL, `seo` varchar(300) NOT NULL, `seo_comments` text NOT NULL, `ssl` varchar(255) NOT NULL, `ssl_comments` text NOT NULL, `bulk_sms` varchar(255) NOT NULL, `bulk_sms_comments` text NOT NULL, `adwards` varchar(255) NOT NULL, `adwards_comments` text NOT NULL, `support_number` text NOT NULL, `support_number_comments` text NOT NULL, `client_username` varchar(100) NOT NULL, `client_password` varchar(255) NOT NULL, `client_login_comments` varchar(500) NOT NULL, `updated_by` int(11) NOT NULL, `completion_status` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `u_testing_id` int(11) NOT NULL, `u_test_edit_on` datetime NOT NULL, `u_website_id` int(11) NOT NULL, `u_website_live_on` datetime NOT NULL, `u_change_id` int(11) NOT NULL, `u_change_on` datetime NOT NULL, `u_email_id` int(11) NOT NULL, `u_email_edit_on` datetime NOT NULL, `u_analytic_id` int(11) NOT NULL, `u_analytic_edit_on` datetime NOT NULL, `u_gateway_id` int(11) NOT NULL, `u_gateway_edit_on` datetime NOT NULL, `u_seo_id` int(11) NOT NULL, `u_seo_edit_on` datetime NOT NULL, `u_ssl_edit_on` datetime NOT NULL, `u_ssl_id` int(11) NOT NULL, `u_bulksms_id` int(11) NOT NULL, `u_bulksms_edit_on` datetime NOT NULL, `u_adward_id` int(11) NOT NULL, `u_award_edit_on` datetime NOT NULL, `u_support_id` int(11) NOT NULL, `u_support_edit_on` datetime NOT NULL, `u_completion_id` int(11) NOT NULL, `u_complete_edit_on` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `companies` -- CREATE TABLE `companies` ( `company_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `company_name` varchar(100) NOT NULL, `addresss` text NOT NULL, `phone` varchar(100) NOT NULL, `type_of_service` varchar(100) NOT NULL, `reviews` text NOT NULL, `logo` text NOT NULL, `reviews_video` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `company_details` -- CREATE TABLE `company_details` ( `company_id` int(11) NOT NULL, `company_pic` mediumtext NOT NULL, `Company_Name` varchar(200) NOT NULL, `Alias` varchar(200) NOT NULL, `Employee_Count` varchar(200) NOT NULL, `Phone` varchar(200) NOT NULL, `Mobile` varchar(200) NOT NULL, `Fax` varchar(200) NOT NULL, `Website` varchar(200) NOT NULL, `Description` varchar(200) NOT NULL, `Super_Admin` varchar(200) NOT NULL, `Street` varchar(200) NOT NULL, `City` varchar(200) NOT NULL, `State` varchar(200) NOT NULL, `Zip_Code` varchar(200) NOT NULL, `Country` varchar(200) NOT NULL, `create_at` varchar(200) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `contact_activities` -- CREATE TABLE `contact_activities` ( `cactivities_id` int(11) NOT NULL, `contact_id` int(11) NOT NULL, `type` text NOT NULL, `subject` varchar(222) NOT NULL, `all_day` varchar(250) NOT NULL, `ntype` varchar(350) NOT NULL, `due_date` date NOT NULL, `priority` varchar(222) NOT NULL, `owner` varchar(222) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `host` varchar(250) NOT NULL, `participants` text NOT NULL, `related_to` varchar(250) NOT NULL, `call_type` varchar(250) NOT NULL, `lead` varchar(222) NOT NULL, `call_purpose` varchar(250) NOT NULL, `contact_name` varchar(250) NOT NULL, `call_details` varchar(250) NOT NULL, `call_timer` varchar(250) NOT NULL, `call_duration` varchar(250) NOT NULL, `call_result` varchar(350) NOT NULL, `status` varchar(350) NOT NULL, `description` varchar(500) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','CLOSE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `contact_attachments` -- CREATE TABLE `contact_attachments` ( `cattachments_id` int(11) NOT NULL, `contact_id` int(11) NOT NULL, `type` varchar(350) NOT NULL, `link_url` varchar(500) NOT NULL, `attach_file` longblob NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','CLOSE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_assets` -- CREATE TABLE `customer_assets` ( `c_id` int(11) NOT NULL, `c_name` varchar(256) NOT NULL, `c_domain_name` int(11) NOT NULL, `c_website` varchar(256) NOT NULL, `c_service` int(11) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_type` -- CREATE TABLE `customer_type` ( `customer_type_id` int(11) NOT NULL, `customer_type` text NOT NULL, `create_at` datetime NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `department` -- CREATE TABLE `department` ( `department_id` int(11) NOT NULL, `department_name` varchar(250) NOT NULL, `email_id` varchar(100) NOT NULL, `department_lead` varchar(222) NOT NULL, `parent_department` varchar(222) DEFAULT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `designation` -- CREATE TABLE `designation` ( `designation_id` int(11) NOT NULL, `designation_name` varchar(250) NOT NULL, `email_id` varchar(100) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_settings` -- CREATE TABLE `email_settings` ( `email_settings_id` int(11) NOT NULL, `display_name` varchar(222) NOT NULL, `email_address` varchar(222) NOT NULL, `who_can_see` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_template` -- CREATE TABLE `email_template` ( `e_template_id` int(11) NOT NULL, `client_name` varchar(256) NOT NULL, `email` varchar(256) NOT NULL, `message` text NOT NULL, `e_template` text NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `employees` -- CREATE TABLE `employees` ( `emp_id` int(11) NOT NULL, `employee_id` varchar(256) NOT NULL, `first_name` varchar(222) NOT NULL, `last_name` varchar(222) NOT NULL, `email_id` varchar(100) NOT NULL, `nick_name` varchar(222) NOT NULL, `department_id` int(11) NOT NULL, `designation_id` int(11) NOT NULL, `reporting_to` varchar(100) NOT NULL, `source_of_hire` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `title` varchar(100) NOT NULL, `date_of_joining` varchar(222) NOT NULL, `seating_location` varchar(222) NOT NULL, `work_phone` varchar(100) NOT NULL, `extension` varchar(222) NOT NULL, `employee_status` varchar(100) NOT NULL, `employee_type` varchar(100) NOT NULL, `role_id` int(11) NOT NULL, `pan_no` varchar(100) NOT NULL, `date_of_birth` varchar(222) NOT NULL, `address` varchar(250) NOT NULL, `residential_address` varchar(250) NOT NULL, `marital_status` varchar(50) NOT NULL, `job_description` varchar(250) NOT NULL, `about_me` varchar(250) NOT NULL, `date_of_exit` varchar(222) NOT NULL, `gender` varchar(50) NOT NULL, `pre_company_name` varchar(222) NOT NULL, `job_title` varchar(222) NOT NULL, `from_date` varchar(222) NOT NULL, `to_date` varchar(222) NOT NULL, `work_job_description` varchar(250) NOT NULL, `school_name` varchar(222) NOT NULL, `diplamo_degree` varchar(222) NOT NULL, `field_of_study` varchar(222) NOT NULL, `date_of_completion` varchar(222) NOT NULL, `additional_notes` varchar(250) NOT NULL, `interests` varchar(222) NOT NULL, `dependent_name` varchar(222) NOT NULL, `dependent_relationship` varchar(100) NOT NULL, `dependent_dob` varchar(222) NOT NULL, `file` varchar(256) NOT NULL, `aggregate` double NOT NULL, `delete_status` enum('Active','INACTIVE') NOT NULL, `agents` varchar(256) NOT NULL, `offer_letter` text NOT NULL, `relieve_letter` text NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `employee_education` -- CREATE TABLE `employee_education` ( `id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `college_name` varchar(250) NOT NULL, `diplamo_degree` varchar(250) NOT NULL, `field_of_study` varchar(250) NOT NULL, `date_of_completion` varchar(250) NOT NULL, `additional_notes` varchar(250) NOT NULL, `interests` varchar(250) NOT NULL, `aggregate` varchar(250) NOT NULL, `file` text NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','','') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `expense` -- CREATE TABLE `expense` ( `expense_id` int(11) NOT NULL, `expense_type` varchar(256) NOT NULL, `expense_amount` float NOT NULL, `expense_towards_account` text NOT NULL, `expense_date` date NOT NULL, `reference_number` varchar(256) NOT NULL, `payment_by` varchar(256) NOT NULL, `payment_mode` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL, `vendor_name` text NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `feeds` -- CREATE TABLE `feeds` ( `feeds_id` int(11) NOT NULL, `sender_id` int(11) NOT NULL, `receiver_id` int(11) NOT NULL, `message` varchar(500) NOT NULL, `document_name` longblob NOT NULL, `delete_status` text NOT NULL, `send_date_time` datetime NOT NULL, `date` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `feeds_comment` -- CREATE TABLE `feeds_comment` ( `comment_id` int(11) NOT NULL, `feeds_id` int(11) NOT NULL, `send_id` int(11) NOT NULL, `receive_id` int(11) NOT NULL, `comment` varchar(250) NOT NULL, `file_name` longblob NOT NULL, `send_at` datetime NOT NULL, `comm_date` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `holidays` -- CREATE TABLE `holidays` ( `holiday_id` int(11) NOT NULL, `holi_name` varchar(250) NOT NULL, `holi_date` varchar(222) NOT NULL, `to_date` varchar(222) NOT NULL, `res_holiday` varchar(222) DEFAULT NULL, `app_for` varchar(222) NOT NULL, `description` varchar(500) NOT NULL, `notify_appl_emp` varchar(222) DEFAULT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `holidays` -- INSERT INTO `holidays` (`holiday_id`, `holi_name`, `holi_date`, `to_date`, `res_holiday`, `app_for`, `description`, `notify_appl_emp`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'deepavali', '04/10/2017', '06/12/2017', '1', 'all staff', 'testing', '1', 'ACTIVE', '2017-10-09 00:00:00', '0000-00-00 00:00:00'), (2, 'Dasara', '01/10/2017', '05/12/2017', '1', 'all staff', 'Holiday for all Staff', '1', 'ACTIVE', '2017-10-10 00:00:00', '0000-00-00 00:00:00'), (3, 'Christmas', '25/12/2017', '26/12/2017', '1', 'all staff', 'testing', '1', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (4, 'Ugadi', '03/10/2017', '02/10/2017', '1', 'all staff', 'testing', '1', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `holiday_settings` -- CREATE TABLE `holiday_settings` ( `holiday_id` int(11) NOT NULL, `consecutive_days` varchar(250) NOT NULL, `appl_for` varchar(250) NOT NULL, `enable_comp_off` varchar(222) NOT NULL, `credited_weekend_lea` varchar(222) NOT NULL, `credited_holiday_lea` varchar(222) NOT NULL, `credited_expires` varchar(222) NOT NULL, `pre_year_report` varchar(222) NOT NULL, `user_avail_report` varchar(222) NOT NULL, `enable_payroll` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `holiday_settings` -- INSERT INTO `holiday_settings` (`holiday_id`, `consecutive_days`, `appl_for`, `enable_comp_off`, `credited_weekend_lea`, `credited_holiday_lea`, `credited_expires`, `pre_year_report`, `user_avail_report`, `enable_payroll`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Business days', 'all users', 'Manual', '1', '1', 'day(s)', 'Last Years', 'All Data to Admin', 'Enable', 'ACTIVE', '2017-10-10 00:00:00', '0000-00-00 00:00:00'), (2, 'Business days', 'all users', 'Manual', '2', '1', 'day(s)', 'Last Years', 'All Data to Admin', 'Enable', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `honorific` -- CREATE TABLE `honorific` ( `honorific_id` int(11) NOT NULL, `honorific` varchar(250) NOT NULL, `create_at` datetime NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `honorific` -- INSERT INTO `honorific` (`honorific_id`, `honorific`, `create_at`, `delete_status`) VALUES (1, 'Mr.', '2017-12-14 11:24:20', 'ACTIVE'), (2, 'Mrs.', '2017-12-14 11:24:20', 'ACTIVE'), (3, 'Ms.', '2017-12-14 11:24:20', 'ACTIVE'), (4, 'Dr.', '2017-12-14 11:24:20', 'ACTIVE'), (5, 'Prof.', '2017-12-14 11:24:20', 'ACTIVE'), (6, 'te', '0000-00-00 00:00:00', 'INACTIVE'), (7, 't111', '0000-00-00 00:00:00', 'INACTIVE'), (8, 'aaaaa', '0000-00-00 00:00:00', 'INACTIVE'); -- -------------------------------------------------------- -- -- Table structure for table `hr_file` -- CREATE TABLE `hr_file` ( `hr_id` int(11) NOT NULL, `file` longblob NOT NULL, `file_name` varchar(200) NOT NULL, `file_permission_view` varchar(200) NOT NULL, `employee` varchar(200) NOT NULL, `description` varchar(200) NOT NULL, `category` varchar(200) NOT NULL, `type` varchar(200) NOT NULL, `delete_status` varchar(200) NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `hr_file` -- INSERT INTO `hr_file` (`hr_id`, `file`, `file_name`, `file_permission_view`, `employee`, `description`, `category`, `type`, `delete_status`, `created_at`) VALUES (8, 0x313530373634343337334c69676874686f7573652e6a7067, 'images', 'employee based', 'Akshay', 'images', 'hr', 'Attached File', 'INACTIVE', '2017-10-10 19:36:13'), (9, 0x3135303736343434303250656e6775696e732e6a7067, 'images', 'employee based', 'aaaa', 'maes', 'ceo', 'Attached File', 'INACTIVE', '2017-10-10 19:36:42'), (10, 0x3135303736343434333350656e6775696e732e6a7067, 'images', 'role based', ' ', 'images', 'hr', 'Attached File', 'ACTIVE', '2017-10-10 19:37:13'), (11, 0x313530373634343436304b6f616c612e6a7067, 'images', 'role based', ' ', 'images', 'ceo', 'Attached File', 'INACTIVE', '2017-10-10 19:37:40'), (12, 0x313530373732383530344b6f616c612e6a7067, 'Sample Test', 'employee based', 'manjunath', 'testing', 'yaskawa', 'Attached File', 'ACTIVE', '2017-10-11 18:58:24'), (13, 0x313530373732383534354c69676874686f7573652e6a7067, 'Sample Test', 'role based', ' ', 'testing', 'ceo', 'Attached File', 'ACTIVE', '2017-10-11 18:59:05'); -- -------------------------------------------------------- -- -- Table structure for table `invoice` -- CREATE TABLE `invoice` ( `id` int(11) NOT NULL, `invoice_date` date NOT NULL, `name` varchar(256) NOT NULL, `invoice_no` varchar(256) NOT NULL, `address` text NOT NULL, `type` varchar(256) NOT NULL, `account_id` int(11) NOT NULL, `gstn` varchar(256) NOT NULL, `si_no` varchar(250) NOT NULL, `description` text NOT NULL, `sac` varchar(256) NOT NULL, `price` varchar(256) NOT NULL, `cgst` varchar(256) NOT NULL, `igst` varchar(256) NOT NULL, `igst_amount` double NOT NULL, `supply_to` text NOT NULL, `supply_address` text NOT NULL, `sgst` varchar(256) NOT NULL, `cgst_amount` double NOT NULL, `sgst_amount` double NOT NULL, `total` double NOT NULL, `total_amount` double NOT NULL, `total_amount_words` varchar(250) NOT NULL, `tds_amount` double NOT NULL, `attachment` text NOT NULL, `invoice_status` enum('PENDING','CLEARED','PARTIAL','CANCELLED') NOT NULL, `grand_total` double NOT NULL, `reason` text NOT NULL, `quotation_id` int(11) NOT NULL, `others` text NOT NULL, `status` enum('WAITING','EXPIRED','CLOSED') NOT NULL, `invoice_type` varchar(256) NOT NULL, `created_by` varchar(256) NOT NULL, `updated_by` varchar(256) NOT NULL, `created_at` text NOT NULL, `updated_at` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','','') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `invoice` -- INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1, '2015-10-15', 'Home credit India Pvt Ltd', 'JB-011015/002', 'Gurgaon', 'Service', 387, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '0', '', 0, '', '', '0', 0, 0, 60000, 60000, '', 0, '', 'CLEARED', 60000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (2, '2015-10-12', 'Savadi Dental Care', 'JB-121015/003', 'Bangalore', 'Sales', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"16949\"]', '9%', '', 0, '', '', '9%', 1526, 1526, 16949, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:48', '2018-08-28', 'ACTIVE'), (3, '2015-11-02', 'Home credit India Pvt Ltd', 'JB-021115/004', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (4, '2015-11-02', 'Ranga Bashyam', 'JB-021115/005', 'Bangalore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"57000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (5, '2015-12-01', 'Ranga Bashyam', 'JB-011215/006', 'Bangalore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"28750\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (6, '2015-12-01', 'Home credit India Pvt Ltd', 'JB-011215/007', 'Gurgaon', 'Service', 0, '', '1', '[\"Web Application\"]', '[\"998314\"]', '[\"50847\"]', '9%', '', 0, '', '', '9%', 4576, 4576, 50847, 60000, 'Sixty Thousand Rupees Only', 0, '', 'CLEARED', 60000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:48', '2018-08-28', 'ACTIVE'), (7, '2015-12-28', 'Maanasa Dental Health Center', 'JB-281215/008', 'Mysore', 'Sales', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8940\"]', '9%', '', 0, '', '', '9%', 805, 805, 8940, 10550, 'Ten Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 10550, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:48', '2018-08-28', 'ACTIVE'), (8, '2016-01-01', 'Home credit India Pvt Ltd', 'JB-010116/009', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (9, '2016-01-25', 'Smile Dental Care', 'JB-250116/010', 'Mysore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"20000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (10, '2016-01-20', 'Sunil HM', 'JB-200116/013', 'Shimoga', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"10000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (11, '2016-02-01', 'Home credit India Pvt Ltd', 'JB-010216/011', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (12, '2016-02-15', 'Pragathi Logistics', 'JB-150216/012', 'Mysore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"25000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'INACTIVE'), (13, '2016-02-05', 'Dr Sunil', 'JB-050216/022', 'Shimoga', 'Service', 0, '', '1', '[\"\"]', '[\"\"]', '[\"20000\"]', '9%', '18%', 0, '', '', '9%', 0, 0, 20, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:48', '2018-11-29', 'INACTIVE'), (14, '2016-03-21', 'Samarthanam trust for disabled', 'JB-210316/014', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 11:48', '', 'INACTIVE'), (15, '2016-02-19', 'Dr Anthony Fernandes', 'JB-190216/015', 'Mysore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"26227\"]', '', '', 0, '', '', '', 1367, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (16, '2016-02-19', 'Dr Anthony Fernandes', 'JB-190216/016', 'Mysore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"21100\"]', '', '', 0, '', '', '', 1100, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (17, '2016-02-25', 'Dr Babitha HM', 'JB-250216/017', 'Mysore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"17535\"]', '', '', 0, '', '', '', 964, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (18, '2016-03-01', 'Home credit India Pvt Ltd', 'JB-010316/018', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (19, '2016-03-01', 'Samarthanam trust for disabled', 'JB-010316/019', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 11:48', '', 'INACTIVE'), (20, '2016-03-03', 'Ora dental care', 'JB-030316/020', 'Mysuru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"21000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'INACTIVE'), (21, '2016-02-05', 'Dr Adarsh(Shimoga)', 'JB-050216/021', 'Shimoga', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"20000\"]', '', '', 0, '', '', '', 1042, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (22, '2016-03-22', 'Samarthanam trust for disabled', 'JB-220316/025', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (23, '2016-03-04', 'Dr Adarsh(Shimoga)', 'JB-040316/023', 'Shimoga', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"14580\"]', '', '', 0, '', '', '', 755, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (24, '2016-03-11', 'Dr Anthony Fernandes', 'JB-110316/024', 'Mysuru', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"2950\"]', '', '', 0, '', '', '', 154, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (25, '2016-04-04', 'Home credit India Pvt Ltd', 'JB-040416/027', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (26, '2016-04-06', 'Pragathi Logistics', 'JB-060416/028', 'Mysuru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"10000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (27, '2016-06-20', 'Dr C Jagadeesh Dental Clinic', 'JB-200616/045', 'Bengaluru', 'Sales', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12711\"]', '9%', '', 0, '', '', '9%', 1144, 1144, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:48', '2018-08-27', 'ACTIVE'), (28, '2016-04-26', 'DR JaiKrishna', 'JB-260416/030', 'Bengaluru', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"5983\"]', '', '', 0, '', '', '', 114765, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (29, '2016-04-26', 'DR JaiKrishna', 'JB-260416/031', 'Bengaluru', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1824\"]', '', '', 0, '', '', '', 35000, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (30, '2016-05-07', 'Dr Karthik shetty (Excellence Dental Care)', 'JB-070516/033', 'Mangalore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1375\"]', '', '', 0, '', '', '', 26375, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (31, '2016-05-15', 'Ashirvada Dental Clinic', 'JB-150516/035', 'Bengaluru', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1303\"]', '', '', 0, '', '', '', 25000, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (32, '2016-07-20', 'Dr Madhusudhan', 'JB-200716/056', 'Banaglore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1375\"]', '', '', 0, '', '', '', 26375, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (33, '2016-11-02', 'Dr Sheshaprasad', 'JB-021116/080', 'Bangalore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1265\"]', '', '', 0, '', '', '', 24265, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (34, '2016-11-08', 'Shre Vinayaka Dental Clinic', 'JB-081116/082', 'Bangalore', 'Sales', 0, '', '', '[\"\"]', '[\"\"]', '[\"1199\"]', '', '', 0, '', '', '', 23000, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:48', '', 'ACTIVE'), (35, '2015-09-02', 'Home credit India Pvt Ltd', 'JB-020915/001', 'Gurgaon', 'Service', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, '', '', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2018-10-17', 'ACTIVE'), (36, '2015-10-01', 'Home credit India Pvt Ltd', 'JB-011015/002', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (37, '2015-11-02', 'Home credit India Pvt Ltd', 'JB-021115/004', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (38, '2015-11-02', 'Ranga Bashyam', 'JB-021115/005', 'Bangalore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"57000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (39, '2015-12-01', 'Ranga Bashyam', 'JB-011215/006', 'Bangalore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"28750\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (40, '2015-12-01', 'Home credit India Pvt Ltd', 'JB-011215/007', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (41, '2016-01-01', 'Home credit India Pvt Ltd', 'JB-010116/009', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (42, '2016-01-25', 'Smile Dental Care', 'JB-250116/010', 'Mysore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"20000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'INACTIVE'), (43, '2016-01-20', 'Dr Sunil HM', 'JB-200116/013', 'Shimoga', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"10000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (44, '2016-02-01', 'Home credit India Pvt Ltd', 'JB-010216/011', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (45, '2016-02-15', 'Pragathi Logistics', 'JB-150216/012', 'Mysore', 'Service', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"21186\"]', '9%', '', 0, '', '', '9%', 1907, 1907, 21186, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '2018-07-31', 'ACTIVE'), (46, '2016-02-05', 'Dr Sunil', 'JB-050216/022', 'Shimoga', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"20000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'INACTIVE'), (47, '2016-02-15', 'Samarthanam trust for disabled', 'JB-150216/012', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (48, '2016-03-21', 'Samarthanam trust for disabled', 'JB-210316/014', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 11:58', '', 'INACTIVE'), (49, '2016-03-01', 'Home credit India Pvt Ltd', 'JB-010316/018', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (50, '2016-03-01', 'Samarthanam trust for disabled', 'JB-010316/019', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"106250\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 11:58', '', 'INACTIVE'), (51, '2016-03-03', 'Ora dental care', 'JB-030316/020', 'Mysuru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"21000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (52, '2016-04-04', 'Home credit India Pvt Ltd', 'JB-040416/027', 'Gurgaon', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"60000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (53, '2016-04-06', 'Pragathi Logistics', 'JB-060416/028', 'Mysuru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"10000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (54, '2016-04-26', 'DR JaiKrishna', 'JB-260416/032', 'Bengaluru', 'Service', 0, '', '1', '[\"Service Charge\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, '', '', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (55, '2016-05-14', 'Dental Diagnostics Center', 'JB-140516/036', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"7500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (56, '2016-05-18', 'Ashirvada Dental Clinic', 'JB-180516/037', 'Bengaluru', 'Service', 0, '', '1', '[\"Application development\"]', '[\"998314\"]', '[\"25423\"]', '9%', '18%', 0, '', '', '9%', 2289, 2289, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (57, '2016-05-26', 'Smile Dental Care', 'JB-260516/038', 'Mysore', 'Service', 0, '', '1', '[\"Service Charge\"]', '[\"\"]', '[\"6800\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'Six Thousand eight hundred only.', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (58, '2016-05-31', 'Pragathi Logistics', 'JB-310516/039', 'Mysore', 'Service', 0, '', '1', '[\"Billing Application Development Part 1\"]', '[\"\"]', '[\"25000\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'Twenty Five Thousand only', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (59, '2016-05-31', 'Shivkam Services', 'JB-310516/040', 'Bengaluru', 'Service', 0, '', '1', '[\"Web Application Development\"]', '[\"998314\"]', '[\"22500\"]', '9%', '', 0, '', '', '9%', 0, 0, 22500, 22500, 'Twenty Two thousand five hundred only', 0, '', 'CLEARED', 22500, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2018-08-25', 'ACTIVE'), (60, '2016-05-31', 'Samarthanam trust for disabled', 'JB-310516/041', 'Bengaluru', 'Service', 0, '', '1', '[\"Service Change for an NGO Program .\"]', '[\"998314\"]', '[\"90042\"]', '9%', '', 0, '', '', '9%', 8104, 8104, 90042, 106250, 'One Lakhs Six Thousand Two Hundred Fifty Rupees Only', 0, '', 'CLEARED', 106250, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2018-08-25', 'ACTIVE'), (61, '2016-06-01', 'Home credit India Pvt Ltd', 'JB-010616/042', 'Gurgaon', 'Service', 387, '', '1', '[\"Infrastructure Service Changes .\"]', '[\"\"]', '[\"40000\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'Forty Thousand Only', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (62, '2016-06-20', 'Dr C Jagadeesh Dental Clinic', 'JB-200616/045', 'Bengaluru', 'Service', 0, '', '1', '[\"Website Development Service Charge\"]', '[\"\"]', '[\"15000\"]', '0', '', 0, '', '', '0', 0, 0, 15000, 15000, 'Fifteen Thousand Only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'INACTIVE'), (63, '2016-06-20', 'Dr Uttam Chand Kincha', 'JB-200616/046', 'Bengaluru', 'Service', 391, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"30000\"]', '0', '', 0, '', '', '0', 0, 0, 30000, 30000, 'Thirty Thousand only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (64, '2016-06-20', 'Trust Dental Corporation', 'JB-200616/047', '#5, Puttanna Cross, DVG Road, Basavanagudi, Bangalore', 'Service', 0, '29ACSPA2627F1ZM', '1', '[\"Service Charge for Website Development\"]', '[\"998314\"]', '[\"16949.15\"]', '9%', '18%', 0, 'Trust Dental Corporation', '#5, Puttanna Cross, DVG Road, Basavanagudi, Bangalore', '9%', 1525, 1525, 16949, 20000, 'Twenty thousand Rupees Only', 0, '', 'CLEARED', 20000, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (65, '2016-06-20', 'Kumar G P', 'JB-200616/048', 'Bengaluru', 'Service', 393, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"20000\"]', '0', '', 0, '', '', '0', 0, 0, 20000, 20000, 'Twenty Thousand only', 0, '', 'CLEARED', 20000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (66, '2016-06-20', 'Dr Shesha Prasad', 'JB-200616/049', 'Bengaluru', 'Service', 394, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"25000\"]', '0', '', 0, '', '', '0', 0, 0, 25000, 25000, 'Twenty Five Thousand only', 0, '', 'CLEARED', 25000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (67, '2016-06-20', 'DR JaiKrishna', 'JB-200616/050', 'Bengaluru', 'Service', 0, '', '1', '[\"Service Charge\"]', '[\"\"]', '[\"18000\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'Eight Thousand Only', 0, '', 'CLEARED', 0, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (68, '2016-06-20', 'Shivkam Services', 'JB-200616/051', 'Bengaluru', 'Service', 0, '', '1', '[\"Service Charge for Web Application Development AppKiJori\"]', '[\"\"]', '[\"120000\"]', '0', '', 0, '', '', '0', 0, 0, 120000, 120000, 'One Lakh twenty thousand only', 0, '', 'CLEARED', 120000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (69, '2016-06-20', 'Dr karthik Shetty', 'JB-200616/052', 'Mangalore', 'Service', 397, '', '1', '[\"SMS charge\"]', '[\"\"]', '[\"2850\"]', '0', '', 0, '', '', '0', 0, 0, 2850, 2850, 'Two thousand Eight hundred and fifty only', 0, '', 'CLEARED', 2850, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (70, '2016-03-23', 'Chirtra Happy Garden', 'JB-230616/053', 'Mysore', 'Service', 0, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"35000\"]', '0', '', 0, '', '', '0', 0, 0, 35000, 35000, 'Thirty Five Thousand Only', 0, '', 'CLEARED', 35000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (71, '2016-06-24', 'DR JaiKrishna', 'JB-240616/054', 'Bengaluru', 'Service', 395, '', '1', '[\"Service Charge Only\"]', '[\"\"]', '[\"9000\"]', '0', '', 0, '', '', '0', 0, 0, 9000, 9000, 'Nine Thousand Only', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (72, '2016-07-20', 'Dr Madhusudhan(Smile Studio)', 'JB-200716/055', 'Bangalore', 'Service', 0, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"25000\"]', '0', '', 0, '', '', '0', 0, 0, 25000, 25000, 'Twenty Five Thousand only', 0, '', 'CLEARED', 25000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (73, '2016-07-27', 'Chirtra Happy Garden', 'JB-270716/057', 'Mysore', 'Service', 398, '', '1', '[\"Service Charge for Website Development\"]', '[\"\"]', '[\"35000\"]', '0', '', 0, '', '', '0', 0, 0, 35000, 35000, 'Thirty Five Thousand Only', 0, '', 'CLEARED', 35000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (74, '2016-08-01', 'Shivkam Services', 'JB-010816/058', 'Bengaluru', 'Service', 403, '', '1', '[\"Web application Development\"]', '[\"\"]', '[\"120000\"]', '0', '', 0, '', '', '0', 0, 0, 120000, 120000, 'One Lakh twenty thousand only', 0, '', 'CLEARED', 120000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (75, '2016-08-01', 'Shivkam Services', 'JB-010816/059', 'Bengaluru', 'Service', 0, '', '1', '[\"Web Application Development .\"]', '[\"\"]', '[\"23500\"]', '0', '', 0, '', '', '0', 0, 0, 23500, 23500, 'Twenty three thousand five hundred only .', 0, '', 'CLEARED', 23500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (76, '2016-08-01', 'DR JaiKrishna', 'JB-010816/060', 'Bengaluru', 'Service', 395, '', '1', '[\"Service Charge (Payment Made is 20k in that 15k is refunded )\"]', '[\"\"]', '[\"5000\"]', '0', '', 0, '', '', '0', 0, 0, 5000, 5000, 'Five Thousand only', 0, '', 'CLEARED', 5000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (77, '2016-08-06', 'Prakruthi Yatri Nivas', 'JB-060816/061', 'Bangalore', 'Service', 125, '', '1', '[\"Website Development Service Charge .\"]', '[\"\"]', '[\"40000\"]', '0', '', 0, '', '', '0', 0, 0, 40000, 40000, 'Forty Thousand Only', 0, '', 'CLEARED', 40000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (78, '2016-08-11', 'Venus Surgical Agencies', 'JB-110816/062', 'Bangalore', 'Service', 152, '', '', '[\"\"]', '[\"\"]', '[\"25000\"]', '15', '', 0, '', '', '0', 3750, 0, 28750, 28750, 'Twenty Eight Thousand Five Hundred Only', 0, '', 'CLEARED', 28750, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (79, '0000-00-00', 'Vstaarplus', 'Cash Invoice', 'Chikmagalur', 'Service', 67, '', '1', '[\"Brochure Printing Charges\"]', '[\"\"]', '[\"125000\"]', '0', '', 0, '', '', '0', 0, 0, 125000, 125000, 'One Lakh twenty five thousand only', 0, '', 'CLEARED', 125000, 'Rounded Up', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 11:58', '', 'ACTIVE'), (80, '2016-08-22', 'Heritage World', 'JB-220816/063', 'Bengaluru', 'Service', 408, '', '1', '[\"Website Development Service Charge\"]', '[\"\"]', '[\"21739\"]', '17', '', 0, '', '', '0', 3750, 0, 25000, 25000, 'Twenty Five Thousand only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (81, '2016-08-26', 'Dr karthik Shetty', 'JB-260816/064', 'Mangalore', 'Service', 397, '', '1', '[\"Service Charge for Den-tics\"]', '[\"\"]', '[\"1218\"]', '15', '', 0, '', '', '0', 182, 0, 1400, 1400, 'One Thousand Four Hundred only .', 0, '', 'CLEARED', 1400, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (82, '2016-09-03', 'Views and News', 'JB-030916/065', 'Mysore', 'Service', 410, '', '1', '[\"Towards News Portal Development .\"]', '[\"\"]', '[\"43478\"]', '15', '', 0, '', '', '0', 6521, 0, 50000, 50000, 'Fifty Thousand Only', 0, '', 'CLEARED', 50000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (83, '2016-09-03', 'Dr Anjum Nazia', 'JB-030916/066', 'Bengaluru', 'Service', 411, '', '1', '[\"Advance towards website Development .\"]', '[\"\"]', '[\"2000\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'Two Thousand Only', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (84, '2016-09-03', 'M/S Tanmay Traders', 'JB-030916/067', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', 'Service', 0, '29AIDPS5620B1ZF', '1', '[\"Website Development Service Charges\"]', '[\"998314\"]', '[\"14618.64\"]', '9%', '18%', 0, 'M/S Tanmay Traders', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', '9%', 1316, 1316, 14619, 17250, 'Seventeen thousand two hundred and fifty Rupees Only', 0, '', 'CLEARED', 17250, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (85, '2016-09-06', 'Shivkam Services', 'JB-060916/068', 'Bengaluru', 'Service', 403, '', '1', '[\"Towards Application Development\"]', '[\"\"]', '[\"69565\"]', '15', '', 0, '', '', '0', 10435, 0, 80000, 80000, 'Eighty Thousand Only', 0, '', 'CLEARED', 80000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (86, '2016-09-08', 'Proven mantra technologies pvt ltd', 'JB-080916/069', 'Bengaluru', 'Service', 414, '', '1', '[\"Web Application Development .\"]', '[\"\"]', '[\"47826\"]', '15', '', 0, '', '', '0', 7174, 0, 55000, 55000, 'Fifty Five Thousand Only', 0, '', 'CLEARED', 55000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (87, '2016-09-14', 'Intercontinental Logistics', 'JB-140916/070', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore', 'Service', 0, '29BIIPS9092K3Z6', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10720.34\"]', '9%', '18%', 0, 'Intercontinental Logistics', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore', '9%', 965, 965, 10720, 12650, 'Twelve thousand six hundred and fifty Rupees Only', 0, '', 'CLEARED', 12650, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (88, '2016-09-14', 'Celestain', 'JB-140916/071', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', 'Service', 0, '29BFCPR6408F3Z9', '1', '[\"Website development\"]', '[\"998314\"]', '[\"12669.49\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', '9%', 1140, 1140, 12669, 14950, 'Fourteen thousand nine hundred and fiftyRupees Only', 0, '', 'CLEARED', 14950, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (89, '2016-09-15', 'Sidvin Elevators', 'Jb-150916/072', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore', 'Service', 0, '29ADDFS6507Q1ZC', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"14618.64\"]', '9%', '18%', 0, 'Sidvin Elevators', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore', '9%', 1316, 1316, 14619, 17250, 'Seventeen thousand two hundred and fifty Rupees Only', 0, '', 'CLEARED', 17250, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (90, '2016-09-29', 'Yaskawa India Pvt Ltd', 'Jb-290916/073', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', 'Service', 0, '29AAACY4408P1ZR', '1', '[\"ERP Development\"]', '[\"998314\"]', '[\"63347.46\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 5701, 5701, 63347, 74750, 'Seventy four thousand seven hundred and fifty Rupees Only', 0, '', 'CLEARED', 74750, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (91, '2016-09-27', 'SS Technologies', 'JB-270916/074', 'Bengaluru', 'Service', 419, '', '1', '[\"Urbille Development service charge\"]', '[\"\"]', '[\"91364\"]', '15', '', 0, '', '', '0', 13636, 0, 105000, 105000, 'One Lakh five thousand only', 0, '', 'CLEARED', 105000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (92, '2016-09-27', 'Dr karthik Shetty', 'JB-270916/075', 'Mangalore', 'Service', 397, '', '1', '[\"AMC Charge for Dentics .\"]', '[\"\"]', '[\"4600\"]', '13', '', 0, '', '', '0', 600, 0, 0, 0, 'Four Thousand six hundred only', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (93, '2016-09-29', 'aswini agrotech', 'JB-290916/076', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', 'Service', 0, '', '1', '[\"AMC for Website\"]', '[\"998314\"]', '[\"3898\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 351, 351, 3898, 4600, 'Four Thousand Six Hundred Rupees Only', 0, '', 'CLEARED', 4600, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2018-11-21', 'ACTIVE'), (94, '2016-10-03', 'Arjun Ventures', 'JB-031016/077', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage, Bangalore', 'Service', 0, '29AYPPA3816K1Z4', '1', '[\"Website Development Along with Hosting and Development .\"]', '[\"\"]', '[\"29237.29\"]', '9%', '18%', 0, 'Arjun Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage, Bangalore', '9%', 2631, 2631, 29237, 34500, 'Thirty four thousand five hundred Rupees Only', 0, '', 'CLEARED', 34500, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (95, '2016-10-04', 'Prakruthi Yatri Nivas', 'JB-041016/078', 'Bangalore', 'Service', 125, '', '2', '[\"Second Payment for web site development\"]', '[\"\"]', '[\"5000\"]', '15', '', 0, '', '', '0', 750, 0, 5750, 5750, 'Five Thousand seven hundred and fifty only .', 0, '', 'CLEARED', 5750, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (96, '2016-10-24', 'i-Marc Pest control', 'JB-241016/079', 'Bengaluru', 'Service', 0, '', '1', '[\"\"]', '[\"\"]', '[\"16000\"]', '15', '', 0, '', '', '0', 2400, 0, 18400, 18400, 'Eighteen thousand five hundred only .', 0, '', 'CLEARED', 18400, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (97, '2016-11-03', 'SS Technologies', 'JB-031116/081', 'Bengaluru', 'Service', 419, '', '1', '[\"Urbille Development\"]', '[\"\"]', '[\"54713\"]', '10', '', 0, '', '', 'NaN', 5266, 0, 60000, 60000, 'sixty thousand Only', 0, '', 'CLEARED', 60000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (98, '2016-11-08', 'Radion Dental Equipments Pvt Ltd', 'JB-081116/083', 'Bangalore', 'Service', 218, '', '1', '[\"Website Development .\"]', '[\"\"]', '[\"29000\"]', '15', '', 0, '', '', '0', 4350, 0, 33350, 33350, 'Thirty Three Thousand Three fifty only.', 0, '', 'CLEARED', 33350, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (99, '2016-11-14', 'Savadi Dental Care', 'JB-141116/084', 'Bangalore', 'Service', 2, '', '1', '[\"AMC for Dentics and website .\"]', '[\"\"]', '[\"8000\"]', '15', '', 0, '', '', '0', 1200, 0, 9200, 9200, 'Nine thousand Two Hundred Only.', 0, '', 'CLEARED', 9200, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (100, '2016-11-14', 'Shubhodaya Old age home', 'JB-141116/085', 'Bengaluru', 'Service', 428, '', '1', '[\"Bulk SMS and Databases .\"]', '[\"\"]', '[\"7000\"]', '15', '', 0, '', '', 'NaN', 1050, 0, 8050, 8050, 'Eight Thousand Fifty Only', 0, '', 'CLEARED', 8050, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (101, '2016-11-21', 'Aramane Motte', 'JB-211116/086', 'Madikeri', 'Service', 429, '', '1', '[\"Website Development \\/ Booking Engine \\/ Logo Design\"]', '[\"\"]', '[\"45000\"]', '15', '', 0, '', '', '0', 6750, 0, 51750, 51750, 'fifty one thousand seven fifty only .', 0, '', 'CLEARED', 51750, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (102, '2016-11-24', 'Fly Fast Express', 'JB-241116/087', '14/4 Mission Road, S.R nagar Banglore 560027', 'Service', 0, '29AHEPA8435E1ZI', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"9258.47\"]', '9%', '18%', 0, 'Fly Fast Express', '14/4 Mission Road, S.R nagar Banglore 560027', '9%', 833, 833, 9258, 10925, 'Ten thousand nine twenty five Rupees Only', 0, '', 'CLEARED', 10925, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (103, '2016-11-25', 'Samarthanam trust for disabled', 'JB-251116/088', 'Bengaluru', 'Service', 373, '', '1', '[\"NGO Teaching Services\"]', '[\"\"]', '[\"48750\"]', '15', '', 0, '', '', '0', 7312, 0, 56062, 56062, 'Fifty six thousand sixty two only', 0, '', 'CLEARED', 56062, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (104, '2016-12-10', 'Dr Sunil', 'JB-101216/095', 'Shimoga', 'Service', 13, '', '1', '[\"SMS services.\"]', '[\"\"]', '[\"7187\"]', '13', '', 0, '', '', '0', 937, 0, 7187, 7187, 'seven thousand one hundred and eighty seven only .', 0, '', 'CLEARED', 7187, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (105, '2016-12-10', 'Footline India', 'JB-101216/096', 'Mysore', 'Service', 219, '', '1', '[\"Website Development\"]', '[\"\"]', '[\"11500\"]', '13', '', 0, '', '', '0', 1500, 0, 11500, 11500, 'eleven thousand five hundred only', 0, '', 'CLEARED', 11500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (106, '2016-12-02', 'Technology and Software development centre', 'JB-021216/097', '', 'Service', 440, '', '1', '[\"Ecommerce plugin\"]', '[\"\"]', '[\"9000\"]', '15', '', 0, '', '', '0', 1350, 0, 10350, 10350, 'Ten thousand three hundred and fifty only .', 0, '', 'CLEARED', 10350, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (107, '2016-12-17', 'Millionaire Digital Minds', 'JB-171216/099', 'Bengaluru', 'Service', 0, '', '1', '[\"Static website Development\"]', '[\"\"]', '[\"8695\"]', '15', '', 0, '', '', '0', 1304, 0, 10000, 10000, 'Ten Thousand only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (108, '2016-12-23', 'Kempegowda Build mart', 'JB-231216/100', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa, Bangalore', 'Service', 0, '29AARFK1722G1Z6', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"21186.44\"]', '9%', '18%', 0, 'Kempegowda Build mart', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa, Bangalore', '9%', 1907, 1907, 21186, 25000, 'Twenty five thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (109, '2016-12-24', 'Samarthanam trust for disabled', 'JB-241216/102', 'Bengaluru', 'Service', 373, '', '1', '[\"NGO Training service charge\"]', '[\"\"]', '[\"48750\"]', '15', '', 0, '', '', '0', 7312, 0, 56062, 56062, 'Fifty six thousand sixty two only', 0, '', 'CLEARED', 56062, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (110, '2017-01-05', 'Yashas Dental Health Care', 'JB-050117/103', 'Bengaluru', 'Sales', 445, '', '1', '[\"Dentics application sales invoice\"]', '[\"\"]', '[\"23000\"]', '6', '', 0, '', '', '0', 1265, 0, 24265, 24265, 'twenty four thousand two sixty five .', 0, '', 'CLEARED', 24265, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (111, '2017-01-09', 'Celestain', 'JB-090117/104', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', 'Service', 0, '29BFCPR6408F3Z9', '1', '[\"Additional service charge\"]', '[\"998314\"]', '[\"6779.66\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', '9%', 610, 610, 6780, 8000, 'Eight thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (112, '2017-01-09', 'Sidvin Elevators', 'JB-090117/105', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore', 'Service', 0, '29ADDFS6507Q1ZC', '1', '[\"Additional service Charge\"]', '[\"998314\"]', '[\"6355.93\"]', '9%', '18%', 0, 'Sidvin Elevators', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore', '9%', 572, 572, 6356, 7500, 'Seven thousand five hundred Rupees Only', 0, '', 'CLEARED', 7500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (113, '2017-01-09', 'Tanmay Traders', 'JB-090117/106', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"1000\"]', '', '', 0, '', '', '', 1000, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (114, '2017-01-11', 'Alpha Human Capital', 'JB-110117/109', 'Bengaluru', 'Service', 0, '', '1', '[\"website Development .\"]', '[\"\"]', '[\"4782\"]', '15', '', 0, '', '', '0', 717, 0, 5500, 5500, 'Five Thousand five hundred only .', 0, '', 'CLEARED', 5500, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (115, '2017-01-17', 'NGO Samratis', 'JB-170117/110', 'Bengaluru', 'Service', 452, '', '1', '[\"NGO Training service bill\"]', '[\"\"]', '[\"22593\"]', '18', '', 0, '', '', '0', 3987, 0, 26581, 26581, 'twenty six thousand five eighty one only .', 0, '', 'CLEARED', 26581, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (116, '2017-01-17', 'Samarthanam trust for disabled', 'JB-170117/111', 'Bengaluru', 'Service', 373, '', '1', '[\"Training Program NGO\"]', '[\"\"]', '[\"97500\"]', '15', '', 0, '', '', '0', 14625, 0, 112125, 112125, 'one lakh twelve thousand and twenty five only', 0, '', 'CLEARED', 112125, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (117, '2017-01-24', 'Seventh Page INC', 'JB-230117/112', 'Calgary ,Cannada', 'Service', 45, '', '1', '[\"Urbille application Development\"]', '[\"\"]', '[\"90000\"]', '0', '', 0, '', '', '0', 0, 0, 90000, 90000, 'Ninety thousand only .', 0, '', 'CLEARED', 90000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (118, '2017-01-24', 'Durga Steels Corporation', 'JB-240117/113', 'Bangalore', 'Service', 82, '', '1', '[\"E- Commerce development\"]', '[\"\"]', '[\"17391\"]', '15', '', 0, '', '', '0', 2609, 0, 20000, 20000, 'twenty thousand only', 0, '', 'CLEARED', 20000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (119, '2017-01-25', 'Tilak Textiles', 'JB-250117/114', 'Bengaluru', 'Service', 456, '', '1', '[\"Ecommerce application\"]', '[\"\"]', '[\"15000\"]', '15', '', 0, '', '', '0', 2250, 0, 17250, 17250, 'seventeen thousand Two fifty only', 0, '', 'CLEARED', 17250, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (120, '2017-01-27', 'Mia Casa', 'JB-270117/115', 'Bangalore', 'Service', 263, '', '1', '[\"Website Development\"]', '[\"\"]', '[\"16000\"]', '15', '', 0, '', '', '0', 2400, 0, 18400, 18400, 'Eighteen thousand four hundred only .', 0, '', 'CLEARED', 18400, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (121, '2017-02-03', 'MVG Bakery', 'JB-030217/116', 'MVG Bakery, VV Road, Mandya.', 'Service', 0, '29ACGPV6323H1Z8', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"15254.24\"]', '9%', '18%', 0, 'MVG Bakery', 'MVG Bakery, VV Road, Mandya.', '9%', 1373, 1373, 15254, 18000, 'Eighteen thousand Rupees Only', 0, '', 'CLEARED', 18000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (122, '2017-02-03', 'Pest control Mohammed', 'JB-030217/117', 'Bengaluru', 'Service', 459, '', '1', '[\"Billing Application\"]', '[\"\"]', '[\"8695\"]', '15', '', 0, '', '', '0', 1304, 0, 10000, 10000, 'Ten Thousand Only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (123, '2017-02-08', 'Purpule Yo Narayan Swamy', 'JB-080217/118', 'Bengaluru', 'Service', 460, '', '1', '[\"website development\"]', '[\"\"]', '[\"13044\"]', '15', '', 0, '', '', '0', 1956, 0, 15000, 15000, 'fifteen Thousand Only', 0, '', 'CLEARED', 15000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (124, '2017-02-14', 'Seventh Page INC', 'JB-140217/119', 'Calgary ,Cannada', 'Service', 45, '', '1', '[\"Urbille Development\"]', '[\"\"]', '[\"22500\"]', '0', '', 0, '', '', '0', 0, 0, 22500, 22500, 'Twenty Two thousand five hundred only', 0, '', 'CLEARED', 22500, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (125, '2017-02-16', 'Excel Diagnostics', 'JB-160217/120', 'Mysore', 'Service', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"32609\"]', '9%', '', 0, '', '', '9%', 4891, 0, 37500, 37500, 'Thirty seven thousand five hundred rupees only', 0, '', 'CLEARED', 37500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '2018-07-26', 'ACTIVE'), (126, '2017-02-16', 'Rika Innovations', 'JB-160217/121', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar Bangalore', 'Service', 0, '29ATFPK1482J1ZE', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"16949.15\"]', '9%', '18%', 0, 'Rika Innovations', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar Bangalore', '9%', 1525, 1525, 16949, 20000, 'Twenty thousand Rupees Only', 0, '', 'CLEARED', 20000, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 11:58', '2019-04-05', 'ACTIVE'), (127, '2017-02-17', 'Rajiv Dental Care Centre', 'JB-170217/122', 'Bengaluru', 'Sales', 464, '', '1', '[\"Dentics Software\"]', '[\"\"]', '[\"23000\"]', '6', '', 0, '', '', '0', 1265, 0, 24265, 24265, 'twenty four thousand two sixty five .', 0, '', 'CLEARED', 24265, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (128, '2017-03-02', 'SH Tile box', 'JB-020317/123', 'Bengaluru', 'Service', 465, '', '1', '[\"Logo Design\"]', '[\"\"]', '[\"2125\"]', '18', '', 0, '', '', '0', 375, 0, 2500, 2500, 'two thousand five hundred only', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (129, '2017-03-07', 'Phogan', 'JB-070317/124', 'Bengaluru', 'Service', 466, '', '1', '[\"Logo Design\"]', '[\"\"]', '[\"2300\"]', '13', '', 0, '', '', '0', 300, 0, 2500, 2500, 'two thousand five hundred only', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (130, '2017-03-07', 'Sonal', 'JB-070317/125', 'Bengaluru', 'Service', 467, '', '1', '[\"Logo Design\"]', '[\"\"]', '[\"2500\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'two thousand five hundred only', 0, '', 'CLEARED', 0, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (131, '2017-03-10', 'Pragathi Logistics', 'JB-100317/126', 'Mysore', 'Service', 384, '', '1', '[\"AMC Charge\"]', '[\"\"]', '[\"5652\"]', '15', '', 0, '', '', '0', 847, 0, 6500, 6500, 'six thousand five hundred only', 0, '', 'CLEARED', 6500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (132, '2017-03-10', 'Hi-Tec Tyres', 'JB-100317/127', 'Mangalore', 'Service', 469, '', '1', '[\"Application Development\"]', '[\"\"]', '[\"13043\"]', '15', '', 0, '', '', '0', 1956, 0, 15000, 15000, 'Fifteen Thousand Only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (133, '2017-03-13', 'Seventh Page INC', 'JB-130317/128', 'Calgary ,Cannada', 'Service', 45, '', '1', '[\"Urbille Development\"]', '[\"\"]', '[\"22500\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'twenty two thousand five hundred only .', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (134, '2017-03-15', 'Dr Trupthi\'s Dental Care', 'JB-150317/129', 'Bangalore', 'Sales', 44, '', '1', '[\"Dentics software\"]', '[\"\"]', '[\"23000\"]', '6', '', 0, '', '', '0', 1265, 0, 24265, 24265, 'twenty four thousand two hundred and sixty five only', 0, '', 'CLEARED', 24265, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (135, '2017-03-15', 'GSS', 'JB-150317/130', 'Mysore', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"75000\"]', '', '', 0, '', '', '', 9782, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (136, '2017-03-23', 'Seventh Page INC', 'JB-230317/131', 'Calgary ,Cannada', 'Service', 45, '', '1', '[\"Urbille Development\"]', '[\"\"]', '[\"18000\"]', '0', '', 0, '', '', '0', 0, 0, 0, 0, 'eighteen Thousand Only', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (137, '2017-03-24', 'Prakash Paints', 'JB-240317/132', '', 'Service', 479, '', '1', '[\"Website\"]', '[\"\"]', '[\"10000\"]', '15', '', 0, '', '', '0', 1500, 0, 11500, 11500, 'eleven thousand five hundred only', 0, '', 'CLEARED', 11500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (138, '2017-03-25', 'Poornaprajna International School', 'JB-250317/133', 'Bangalore', 'Service', 279, '', '1', '[\"website Development\"]', '[\"\"]', '[\"13043\"]', '15', '', 0, '', '', '0', 1956, 0, 15000, 15000, 'fifteen thousand only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (139, '2017-03-27', 'Dr Madhusudhan(Smile Studio)', 'JB-270317/134', 'Bangalore', 'Service', 107, '', '1', '[\"\"]', '[\"\"]', '[\"55000\"]', '9', '', 0, '', '', '0', 4950, 0, 63250, 63250, 'sixty three thousand two hundred and fifty only', 0, '', 'CLEARED', 63250, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (140, '2017-01-17', 'Service Hub', 'JB-170117/110', 'Bengaluru', 'Service', 0, '', '', '[\"\"]', '[\"\"]', '[\"90000\"]', '', '', 0, '', '', '', 13500, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 11:58', '', 'ACTIVE'), (141, '2017-04-03', 'FightDepressionin2steps', 'JB-03042017/135', 'Bangalore', 'Static Website', 477, '', '', '[\"Website\"]', '[\"\"]', '[\"11000\"]', '15', '', 0, '', '', '0', 1650, 0, 12650, 12650, '', 0, '', 'CLEARED', 12650, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (142, '0000-00-00', 'Sri dattanjaeya astro centre', 'Cash', 'Bangalore', 'Website', 0, '', '', '[\"Website\"]', '[\"\"]', '[\"14000\"]', '9', '', 0, '', '', '9', 1260, 0, 14000, 14000, 'Fourteen thousand rupees only', 0, '', 'CLEARED', 14000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (143, '0000-00-00', 'Global Career Academy', 'Cash', 'Bangalore', 'Website', 0, '', '', '[\"Website\"]', '[\"\"]', '[\"4237\"]', '18', '', 0, '', '', '18', 762, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (144, '0000-00-00', 'Dr Venkatesh', 'Cash', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (145, '2017-04-08', 'Sri dattanjaeya astro centre', 'JB-08042017/136', 'Bangalore', 'PPC', 0, '', '1', '[\"PPC\"]', '[\"\"]', '[\"2500\"]', '0', '', 0, '', '', '0', 382, 0, 2500, 2500, 'Two thousand five hundred rupees only', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (146, '2017-04-09', 'Gladsome capital', 'JB-09042017/137', 'Bangalore', 'Website', 0, '', '1', '[\"Regarding website\"]', '[\"998314\"]', '[\"11000\"]', '15', '', 0, '', '', '15', 1650, 0, 12650, 12650, 'Twelve thousand six hundred and fifty only', 0, '', 'CLEARED', 12650, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (147, '2017-04-10', 'Laveera Technologies Pvt Ltd', 'JB-10042017/138', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5380\"]', '9', '', 0, '', '', '9', 484, 0, 5865, 5865, 'Five thousand eight hundred and sixty five rupees only', 0, '', 'PENDING', 5865, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (148, '2017-04-11', 'ALT training college', 'JB-11042017/139', 'Sarjapur road bellandur gate Bangalore', 'AMC', 0, '29AAWFA3597J1ZJ', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5847.46\"]', '9%', '18%', 0, 'ALT training college', 'Sarjapur road bellandur gate Bangalore', '9%', 526, 526, 5847, 6900, 'Six thousand and nine hundred Rupees Only', 0, '', 'CLEARED', 6900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (149, '2017-04-12', 'Rajiv Dental Care', 'JB-12042017/140', 'Bangalore', 'Hosting', 0, '', '1', '[\"Hosting\"]', '[\"998314\"]', '[\"4500\"]', '9%', '', 0, '', '', '9%', 675, 0, 5175, 5175, 'Five thousand one hundred and seventy five rupees only', 0, '', 'CLEARED', 5175, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (150, '2017-04-12', 'Charunya Design Tech Pvt Ltd', 'JB-12042017/141', 'Bangalore', 'Website', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8389\"]', '9%', '18%', 0, '', '', '9%', 756, 756, 8389, 9900, 'Nine Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 9900, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (151, '2017-04-12', 'Dr Trupthi\'s Dental Care', 'JB-12042017/142', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"12711\"]', '9%', '18%', 0, '', '', '9%', 1145, 0, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (152, '2017-04-17', 'Seventh Page INC', 'JB-17042017/143', 'Calgary ,Cannada', 'Appication', 0, '', '1', '[\"Appication\"]', '[\"998314\"]', '[\"6422\"]', '9', '', 0, '', '', '9', 577, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (153, '2017-04-18', 'Sri dattanjaeya astro centre', 'JB-18042017/144', 'Bangalore', 'PPC', 0, '', '1', '[\"PPC\"]', '[\"998314\"]', '[\"8626\"]', '15', '', 0, '', '', '15', 1293, 0, 9920, 9920, 'Nine thousand nine hundred and twenty rupees only', 0, '', 'CLEARED', 9920, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (154, '2017-04-24', 'Sri dattanjaeya astro centre', 'JB-24042017/145', 'Bangalore', 'PPC', 0, '', '1', '[\"PPC\"]', '[\"998314\"]', '[\"4358\"]', '15', '', 0, '', '', '15', 652, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (155, '2017-04-26', 'Sri dattanjaeya astro centre', 'JB-26042017/146', 'Bangalore', 'PPC', 0, '', '', '[\"PPC\"]', '[\"\"]', '[\"27000\"]', '', '', 0, '', '', '', 3521, 0, 0, 23478, '', 0, '', 'CLEARED', 23478, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (156, '2017-04-27', 'Fly Fast Express', 'JB-27042017/147', '14/4 Mission Road, S.R nagar Banglore 560027', 'Hosting', 0, '29AHEPA8435E1ZI', '1', '[\"Hosting\"]', '[\"998314\"]', '[\"2923.73\"]', '9%', '18%', 0, 'Fly Fast Express', '14/4 Mission Road, S.R nagar Banglore 560027', '9%', 263, 263, 2924, 3450, 'Three thousand four hundred and fifty Rupees Only', 0, '', 'CLEARED', 3450, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (157, '0000-00-00', 'Moment Design and Detailing', 'Cash', '#3, 1ST CROSS ,MARANNA LAYOUT,DODDABIDRAKALLU , BANGALORE-560072', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5504\"]', '9%', '', 0, '', '', '9%', 495, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (158, '2017-04-27', 'Karnataka ICSE schools Association', 'JB-27042017/148', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"31695.65\"]', '9%', '', 0, '', '', '9%', 4754, 0, 36450, 36450, 'Thirty six thousand six hundred and fifty rupees only', 0, '', 'CLEARED', 36450, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (159, '2017-04-28', 'Sri dattanjaeya astro centre', 'JB-28042017/149', 'Bangalore', 'Domain', 0, '', '1', '[\"Domain\"]', '[\"998314\"]', '[\"1000\"]', '15', '', 0, '', '', '15', 150, 0, 1150, 1150, 'One thousand one hundred and fifty rupees only', 0, '', 'CLEARED', 1150, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (160, '2017-07-24', 'Swansilk Pvt Ltd', 'JB-24042017/150', 'Bangalore', 'Application', 0, '29AACCS4515R1ZR', '1', '[\"Application\"]', '[\"998314\"]', '[\"36546.61\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 3289, 3289, 36547, 43125, 'Forty three thousand one hundred and twenty five Rupees Only', 0, '', 'CLEARED', 43125, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (161, '2017-05-03', 'Mannan Realtors and Developers', 'JB-03052017/151', '135/1, Brigade Towers, Brigade Road, Bangalore - 560025', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"17391\"]', '9%', '', 0, '', '', '9%', 2608, 0, 20000, 20000, 'Twenty thousand Rupees only', 0, '', 'CLEARED', 20000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (162, '2017-05-05', 'Seventh Page INC', 'JB-05052017/152', 'Calgary ,Cannada', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"18348\"]', '9%', '', 0, '', '', '9%', 1651, 0, 20000, 20000, 'Twenty thousand rupees only', 0, '', 'CLEARED', 20000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (163, '2017-05-05', 'Swansilk Pvt Ltd', 'JB-05052017/153', 'Bangalore', 'Application', 0, '29AACCS4515R1ZR', '1', '[\"Application\"]', '[\"998314\"]', '[\"36546.61\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 3289, 3289, 36547, 43125, 'Forty three thousand one hundred and twenty five Rupees Only', 0, '', 'CLEARED', 43125, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (164, '2017-05-05', 'GSS Infrastructure Pvt Ltd', 'JB-05052017/154', '1104, Udayaravi Rd, Block K, Kuvempu Nagara, Bangalore', 'Application', 0, '29AAACG3912G1ZT', '1', '[\"Application\"]', '[\"998314\"]', '[\"42372.88\"]', '9%', '18%', 0, 'GSS Infrastructure Pvt Ltd', '1104, Udayaravi Rd, Block K, Kuvempu Nagara, Bangalore', '9%', 3814, 3814, 42373, 50000, 'Fifty thousand Rupees Only', 0, '', 'CLEARED', 50000, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (165, '2017-05-05', 'Excel Diagnostics', 'JB-05052017/155', 'Mysore', 'Application', 0, '', '', '[\"\"]', '[\"\"]', '[\"37500\"]', '', '', 0, '', '', '', 4891, 0, 0, 32609, '', 0, '', 'CLEARED', 32609, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (166, '2017-05-05', 'Laveera Technologies Pvt Ltd', 'JB-05052017/156', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', 'Website', 0, '29AADCL2628R1ZV', '1', '[\"Website\"]', '[\"998314\"]', '[\"16567.80\"]', '9%', '18%', 0, 'Laveera Technologies Pvt Ltd', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', '9%', 1491, 1491, 16568, 19550, 'Nineteen thousand five hundred and fifty Rupees Only', 0, '', 'CLEARED', 19550, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (167, '0000-00-00', 'Conceptual Designers', 'cash', '#476, 14th main, 7th cross, Wilson garden,Bangalore', 'website', 0, '', '1', '[\"website\"]', '[\"998314\"]', '[\"9633\"]', '9%', '', 0, '', '', '9%', 866, 0, 10500, 10500, 'Ten thousand five hundred rupees only', 0, '', 'CLEARED', 10500, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (168, '2017-05-06', 'Hi-Tec Tyres', 'JB-06052017/157', 'Bangalore', 'Application', 0, '', '1', '[\"website\"]', '[\"998314\"]', '[\"7956\"]', '15', '', 0, '', '', '15', 1193, 0, 9150, 9150, 'Nine thousand one hundred and fifty rupees only', 0, '', 'CLEARED', 9150, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (169, '2017-05-09', 'Sterling events', 'JB-09052017/158', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', 'website', 0, '29CKHPP9108B1Z1', '1', '[\"website\"]', '[\"998314\"]', '[\"15593.22\"]', '9%', '18%', 0, 'Sterling events', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', '9%', 1403, 1403, 15593, 18400, 'Eighteen Thousand four hundred Rupees Only', 0, '', 'CLEARED', 18400, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (170, '2017-05-10', 'Aditi Consultancy', 'JB-10052017/159', 'Bangalore', 'website', 0, '29AAJPR79841ZO', '1', '[\"website\"]', '[\"998314\"]', '[\"28262.71\"]', '9%', '18%', 0, 'Aditi Consultancy', 'Bangalore', '9%', 2544, 2544, 28263, 33350, 'Thirty thousand three hundred and fifty Rupees Only', 0, '', 'CLEARED', 33350, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (171, '2017-05-10', 'Global Career Academy', 'JB-10052017/160', 'Bangalore', 'website', 0, '', '1', '[\"website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '', 0, '', '', '9%', 1500, 0, 11500, 11500, 'Eleven thousand five hundred rupees only', 0, '', 'CLEARED', 11500, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-26', 'ACTIVE'), (172, '2017-05-10', 'Aashirwad dental clinic', 'JB-10052017/161', 'Bangalore', 'AMC For Dentics and Website', 0, '', '1', '[\"AMC For Dentics and Website\"]', '[\"998314\"]', '[\"9000\"]', '15', '', 0, '', '', '15', 1350, 0, 10350, 10350, 'Ten thousand three hundred and fifty rupees only', 0, '', 'CLEARED', 10350, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (173, '2017-05-12', 'Swami vivekananda international public school', 'JB-12052017/162', 'bangalore', 'Dynamic joomla website', 0, '', '1', '[\"Dynamic joomla website\"]', '[\"998314\"]', '[\"13000\"]', '15', '', 0, '', '', '15', 1950, 0, 14950, 14950, 'Fourteen thousand nine hundred and fifty rupees only', 0, '', 'CLEARED', 14950, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (174, '2017-05-12', 'Vstaarplus', 'JB-12052017/163', 'Chikmagalur', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"86956\"]', '15', '', 0, '', '', '15', 13043, 0, 100000, 100000, 'One lakh rupees only', 0, '', 'CLEARED', 100000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (175, '2017-05-18', 'Apple Advertising', 'JB-18052017/164', '#1880/17, 28th C Main Road, 9th Block, Jayanagar,Bangalore', 'Static website', 0, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"6086\"]', '15', '', 0, '', '', '15', 913, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (176, '2017-05-22', 'Evasuite Business Services', 'JB-22052017/165', 'HSR layour , bangalore', 'Static website', 0, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"7500\"]', '15', '', 0, '', '', '15', 1125, 0, 8625, 8625, 'Eight thousand six hundred and twenty five rupees only', 0, '', 'CLEARED', 8625, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (177, '2017-05-24', 'Excellence Dental Health Care', 'JB-24052017/166', 'Mangalore', 'AMC For Dentics', 0, '', '1', '[\"AMC For Dentics\"]', '[\"998314\"]', '[\"3600\"]', '15', '', 0, '', '', '15', 540, 0, 4140, 4140, 'Four thousand one hundred and forty rupees only', 0, '', 'CLEARED', 4140, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (178, '0000-00-00', 'Vstaarplus', 'Cancelled', 'Chikmagalur', 'Application', 0, '', '', '[\"\"]', '[\"\"]', '[\"100000\"]', '', '', 0, '', '', '', 0, 0, 0, 100000, '', 0, '', 'PENDING', 100000, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (179, '2017-05-26', 'GSS Infrastructure Pvt Ltd', 'JB-26052017/167', '1104, Udayaravi Rd, Block K, Kuvempu Nagara, Bangalore', 'Application', 0, '29AAACG3912G1ZT', '1', '[\"Application\"]', '[\"998314\"]', '[\"21186.44\"]', '9%', '18%', 0, 'GSS Infrastructure Pvt Ltd', '1104, Udayaravi Rd, Block K, Kuvempu Nagara, Bangalore', '9%', 1607, 1607, 21186, 25000, 'Twenty five thousand Rupees Only', 0, '', 'CLEARED', 25000, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (180, '2017-05-31', 'Swansilk', 'JB-31052017/168', 'Bangalore', 'Application', 0, '', '', '[\"\"]', '[\"\"]', '[\"43125\"]', '', '', 0, '', '', '', 5625, 0, 0, 37500, '', 0, '', 'CLEARED', 37500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (181, '2017-05-30', 'Sri dattanjaeya astro centre', 'JB-26052017/169', 'Bangalore', 'PPC', 0, '', '', '[\"\"]', '[\"\"]', '[\"6086\"]', '10', '', 0, '', '', '10', 630, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (182, '2017-05-30', 'Sushindhar-Paradies suites', 'JB-30052017/170', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"10434\"]', '15', '', 0, '', '', '15', 1565, 0, 12000, 12000, 'Twelve thousand rupees only', 0, '', 'CLEARED', 12000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (183, '2017-05-31', 'Good rich pest control', 'JB-31053017/171', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala,Banaglore', 'SMS', 0, '', '1', '[\"SMS\"]', '[\"998314\"]', '[\"2500\"]', '15', '', 0, '', '', '15', 375, 0, 2875, 2875, 'Two thousand eight hundred and seventy five rupees only', 0, '', 'CLEARED', 2875, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (184, '2017-06-02', 'Visavi Food Ventures', 'JB-02062017/172', 'N0.372,university layout, ringroad, Mysore-570023 ', 'E-commerce website', 0, '29AAOFV4850D1ZT', '1', '[\"E-commerce website\"]', '[\"998314\"]', '[\"31779.66\"]', '9%', '18%', 0, 'Visavi Food Ventures', 'N0.372,university layout, ringroad, Mysore-570023', '9%', 2860, 2860, 31780, 37500, 'Thirty seven thousand five hundred Rupees Only', 0, '', 'CLEARED', 37500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (185, '2017-06-03', 'Suddhi Loka', 'JB-03062017/173', 'Bangalore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"13913\"]', '15', '', 0, '', '', '15', 2086, 0, 16000, 16000, 'Sixteen thousand rupees only', 0, '', 'CLEARED', 16000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (186, '2017-06-07', 'Vishnavimatha Astrologer', 'JB-07062017/174', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"17391\"]', '15', '', 0, '', '', '15', 2608, 0, 20000, 20000, 'Twenty thousand rupees only', 0, '', 'CLEARED', 20000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (187, '2017-06-07', 'Vishnavimatha Astrologer', 'JB-07062017/175', 'Bangalore', 'PPC', 0, '', '1', '[\"PPC\"]', '[\"998314\"]', '[\"8695\"]', '15', '', 0, '', '', '15', 1304, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (188, '2017-06-13', 'Radha Systems', 'JB-13062017/176', '#119, 2nd floor, G street, Jogupalya, Ulsoor, Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"8695\"]', '15', '', 0, '', '', '15', 1304, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (189, '2017-06-13', 'Durga steels', 'JB-13062017/177', 'Bangalore', 'Website module & logo', 0, '', '', '[\"Website module & logo\"]', '[\"998314\"]', '[\"6521\"]', '15', '', 0, '', '', '15', 978, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (190, '2017-06-14', 'Adds Group(Purpleyo narayan)', 'JB-14062017/178', 'Bangalore', 'Application', 0, '', '1', '[\"\"]', '[\"\"]', '[\"16949.15\"]', '9%', '18%', 0, '', '', '9%', 1525, 1525, 16949, 20000, 'Twenty thousand Rupees Only', 0, '', 'CLEARED', 20000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (191, '2017-06-14', 'Jai', 'JB-14062017/179', 'Bangalore', 'Hosting & domain', 0, '', '1', '[\"Hosting & domain\"]', '[\"998314\"]', '[\"4000\"]', '15', '', 0, '', '', '15', 600, 0, 4600, 4600, 'Four thousand six hundred rupees only', 0, '', 'CLEARED', 4600, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (192, '2017-06-15', 'Swansilk', 'JB-15062017/180', 'Bangalore', 'Application', 0, '', '', '[\"\"]', '[\"\"]', '[\"43125\"]', '', '', 0, '', '', '', 5625, 0, 0, 37500, '', 0, '', 'CLEARED', 37500, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (193, '2017-06-19', 'Hublaunch', 'JB-19062017/181', 'Bangalore', 'Bulk SMS', 0, '', '1', '[\"Bulk SMS\"]', '[\"998314\"]', '[\"7309\"]', '9%', '', 0, '', '', '9%', 658, 658, 7309, 8625, 'Eight Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 8625, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-07', 'ACTIVE'), (194, '2017-06-19', 'Hublaunch', 'JB-19062017/182', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5847\"]', '9%', '18%', 0, '', '', '9%', 527, 527, 5847, 6900, 'Six Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 6900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (195, '2017-06-19', 'Urban works', 'JB-19062017/183', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 381.5, 381.5, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-07', 'ACTIVE'), (196, '2017-06-22', 'Creative Networks', 'JB-22062017/184', 'Bangalore', 'Website', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"19491\"]', '9%', '', 0, '', '', '9%', 1755, 1755, 19491, 23000, 'Twenty Three Thousand Rupees Only', 0, '', 'CLEARED', 23000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2018-08-25', 'ACTIVE'), (197, '2017-06-22', 'Trust dental corporation', 'JB-22062017/185', 'Bangalore', 'AMC', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"4872\"]', '9%', '', 0, '', '', '9%', 439, 439, 4872, 5750, 'Five Thousand Seven Hundred Fifty Rupees Only', 0, '', 'CLEARED', 5750, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-07', 'ACTIVE'), (198, '2017-06-22', 'GP and Co', 'JB-22062017/186', 'Bangalore', 'AMC', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"4872\"]', '9%', '', 0, '', '', '9%', 439, 439, 4872, 5750, 'Five Thousand Seven Hundred Fifty Rupees Only', 0, '', 'CLEARED', 5750, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-07', 'ACTIVE'), (199, '2017-06-23', 'Yashas Dental Health Care', 'JB-23062017/187', 'Bangalore', 'AMC', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '15', '', 0, '', '', '15', 750, 0, 5750, 5750, 'Five thousand seven hundred and fifty rupees only', 0, '', 'CLEARED', 5750, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (200, '2017-06-27', 'Swansilk', 'JB-27062017/188', 'Bangalore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"58749\"]', '15', '', 0, '', '', '15', 8812, 0, 67562, 67562, 'Sixty seven thousand five hundred and sixty two rupees only', 0, '', 'CLEARED', 67562, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (201, '2017-06-29', 'Kids Zone', 'JB-29062017/189', 'Bangalore', 'Website & SMS', 0, '', '1', '[\"Website & SMS\"]', '[\"998314\"]', '[\"18652\"]', '15', '', 0, '', '', '15', 2797, 0, 21450, 21450, 'Twenty one thousand four hundred and fifty rupees only', 0, '', 'CLEARED', 21450, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (202, '2017-06-30', 'Sterling events', 'JB-30062017/190', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', 'Email', 0, '29CKHPP9108B1Z1', '1', '[\"Email\"]', '[\"998314\"]', '[\"3898.31\"]', '9%', '18%', 0, 'Sterling events', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', '9%', 351, 351, 3898, 4600, 'Four thousand six hundred Rupees Only', 0, '', 'CLEARED', 4600, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (203, '2017-07-03', 'Swansilk', 'JB-03072017/191', 'Bangalore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"58749\"]', '18', '', 0, '', '', '18', 10574, 0, 69324, 69324, 'Sixty nine thousand three hundred and twenty four rupees only', 0, '', 'CLEARED', 69324, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (204, '2017-07-03', 'Excel Diagnostics', 'JB-03072017/192', 'Mysore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"59322\"]', '18', '', 0, '', '', '18', 10677, 0, 70000, 70000, 'Seventy thousand rupees only', 0, '', 'CLEARED', 70000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (205, '2017-07-03', 'Hublaunch', 'JB-03072017/193', 'Bangalore', 'Website & Design', 0, '', '1', '[\"Website & Design\"]', '[\"998314\"]', '[\"19004\"]', '18', '', 0, '', '', '18', 3420, 0, 22425, 22425, 'Twenty two thousand four hundred and twenty five rupees only', 0, '', 'CLEARED', 22425, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (206, '2017-07-03', 'ESS & ESS Infrastructure Pvt Ltd', 'JB-03072017/194', 'Mysore', 'Application', 0, 'Sales module', '1', '[\"Application\"]', '[\"998314\"]', '[\"75000\"]', '18', '', 0, '', '', '18', 13500, 0, 88500, 88500, 'Eighty eight thousand five hundred rupees only', 0, '', 'CLEARED', 88500, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (207, '2017-07-04', 'John D Leo Engineering Inc', 'JB-04072017/195', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"15254\"]', '18', '', 0, '', '', '18', 2745, 0, 18000, 18000, 'Eighteen thousand rupees only', 0, '', 'CLEARED', 18000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (208, '2017-07-04', 'Visavi Food Ventures', 'JB-04072017/196', 'N0.372,university layout, ringroad, Mysore-570023', 'E-Commerce', 0, '29AAOFV4850D1ZT', '1', '[\"E-Commerce\"]', '[\"998314\"]', '[\"32608.47\"]', '9%', '18%', 0, 'Visavi Food Ventures', 'N0.372,university layout, ringroad, Mysore-570023', '9%', 2935, 2935, 32608, 38478, 'Thirty eight thousand four hundred and seventy eight Rupees Only', 0, '', 'CLEARED', 38478, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (209, '2017-07-04', 'Happy Garden', 'JB-04072017/197', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore', 'AMC', 0, '29ACIPS8466L1ZK', '1', '[\"AMC\"]', '[\"998314\"]', '[\"9000\"]', '9%', '18%', 0, 'Happy Garden', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore', '9%', 810, 810, 9000, 10620, 'Ten thousand six hundred and twenty rupees only', 0, '', 'CLEARED', 10620, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (210, '2017-07-06', 'Taktik Consulting', 'JB-06072017/198', 'Bangalore', 'Dynamic joomla website', 0, '', '1', '[\"Dynamic joomla website\"]', '[\"998314\"]', '[\"7627\"]', '9%', '18%', 0, '', '', '9%', 687, 687, 7627, 9000, 'Nine Thousand Rupees Only', 0, '', 'CLEARED', 9000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (211, '2017-07-11', 'GSS', 'JB-11072017/199', 'Mysore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"30000\"]', '18', '', 0, '', '', '18', 5400, 0, 35400, 35400, 'Thirty five thousand four hundred rupees only', 0, '', 'CLEARED', 35400, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (212, '2017-07-12', 'Salemaker', 'JB-12072017/200', 'Pride Bilekahalli Banergatta Road Bangalore', 'Static website', 0, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"14406\"]', '18', '', 0, '', '', '18', 2593, 0, 17000, 17000, 'Seventeen thousand rupees only', 0, '', 'CLEARED', 17000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (213, '2017-07-13', 'Swansilk', 'JB-13072017/201', 'Bangalore', 'Application', 0, '29AACCS4515R1ZR', '1', '[\"\"]', '[\"\"]', '[\"138650\"]', '9%', '', 0, '', '', '9%', 21150, 0, 0, 117500, '', 0, '', 'CLEARED', 117500, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-27', 'ACTIVE'), (214, '2017-07-13', 'Dr Madhusudhan(Smile Studio)', 'JB-13072017/202', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"25000\"]', '18', '', 0, '', '', '18', 4500, 0, 29500, 29500, 'Twenty nine thousand five hundred rupees only', 0, '', 'CLEARED', 29500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (215, '2017-07-14', 'Bharath Kuppal', 'JB-14072017/203', 'Mysore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"3389\"]', '18', '', 0, '', '', '18', 610, 0, 4000, 4000, 'Four thousand rupees only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (216, '2017-07-17', 'JKH Global hunting', 'JB-17072017/204', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"19491\"]', '18', '', 0, '', '', '18', 3508, 0, 23000, 23000, 'Twenty three thousand rupees only', 0, '', 'CLEARED', 23000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (217, '2017-07-21', 'VABT logistics Solution Pvt Ltd', 'JB-21072017/205', 'Bangalore', 'Logo and Brochure', 0, '', '1', '[\"Logo and Brochure\"]', '[\"998314\"]', '[\"8050\"]', '18', '', 0, '', '', '18', 1450, 0, 9500, 9500, 'Nine thousand five hundred rupees only', 0, '', 'CLEARED', 9500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (218, '2017-07-27', 'ESS & ESS Infrastructure Pvt Ltd', 'JB-27072017/206', 'Mysore', 'Server & Hosting', 0, 'server', '1', '[\"Server & Hosting\"]', '[\"998314\"]', '[\"10000\"]', '18', '', 0, '', '', '18', 1800, 0, 11800, 11800, 'Eleven thousand eight hundred rupees only', 0, '', 'CLEARED', 11800, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (219, '2017-07-27', 'ESS & ESS Infrastructure Pvt Ltd', 'JB-27072017/207', 'Mysore', 'Application', 0, 'Sales module', '1', '[\"Regarding website\"]', '[\"998314\"]', '[\"75000\"]', '18', '', 0, '', '', '18', 13500, 0, 88500, 88500, 'Eighty eight thousand five hundred rupees only', 0, '', 'PENDING', 88500, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (220, '2017-07-27', 'ESS & ESS Infrastructure Pvt Ltd', 'JB-27072017/208', 'Mysore', 'Application', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"150000\"]', '18', '', 0, '', '', '18', 27000, 0, 177000, 177000, 'One lakh seventy seven thousand rupees only', 0, '', 'CLEARED', 177000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (221, '2017-07-27', 'Pragathi logistics', 'JB-27072017/209', 'Mysore', 'Application changes', 0, '', '1', '[\"Application changes\"]', '[\"998314\"]', '[\"6500\"]', '18', '', 0, '', '', '18', 1170, 0, 7670, 7670, 'Seven thousand six hundred and seventy rupees only', 0, '', 'CLEARED', 7670, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (222, '2017-08-06', 'Sri Shiva sai astro centre', 'Cash', 'Bangalore', 'Server & Hosting', 0, '', '1', '[\"Server & Hosting\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '', 0, '', '', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, 'No Difference', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '7/19/18 12:27', '2018-08-25', 'ACTIVE'), (223, '0000-00-00', 'Sai Balaji astrology', 'Cash', 'Bangalore', 'website', 0, '', '1', '[\"website\"]', '[\"998314\"]', '[\"11009\"]', '9', '', 0, '', '', '9', 990, 0, 12000, 12000, 'Twelve thousand Rupees only', 0, '', 'CLEARED', 12000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (224, '0000-00-00', 'Vstaarplus', 'Cash', 'Chikmagalur', 'Application', 0, '', '', '[\"\"]', '[\"\"]', '[\"100000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (225, '2017-07-29', 'Fly Fast Express', 'JB-29072017/210', '14/4 Mission Road, S.R nagar Banglore 560027', 'Website and Logo', 0, '29AHEPA8435E1ZI', '1', '[\"Website and Logo\"]', '[\"998314\"]', '[\"8474.58\"]', '9%', '18%', 0, 'Fly Fast Express', '14/4 Mission Road, S.R nagar Banglore 560027', '9%', 763, 763, 8475, 10000, 'Ten thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (226, '2017-07-29', 'Sangam Travels', 'JB-29072017/211', 'Bangalore', 'Website and Logo', 0, '', '1', '[\"Website and Logo\"]', '[\"998314\"]', '[\"5932\"]', '18', '', 0, '', '', '18', 1067, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (227, '2017-08-01', 'Yaskawa India Pvt Ltd', 'JB-01082017/212', 'Bangalore', 'Application', 0, '29AAACY4408P1ZR', '1', '[\"Application\"]', '[\"998314\"]', '[\"40000\"]', '18', '', 0, '', '', '18', 7200, 0, 47200, 47200, '', 0, '', 'PENDING', 47200, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (228, '2017-08-01', 'Swansilk Pvt Ltd', 'JB-01082017/213', 'Bangalore', 'Application', 0, '29AACCS4515R1ZR', '1', '[\"Regarding website\"]', '[\"998314\"]', '[\"117500\"]', '18', '', 0, '', '', '18', 21150, 0, 138650, 138650, 'One lakh thirty eight thousand six hundred and sixty rupees only', 0, '', 'PENDING', 138650, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (229, '2017-08-01', 'GSRM Pvt Ltd', 'JB-01082017/214', 'Bangalore', 'Website', 0, 'nil', '1', '[\"Website\"]', '[\"998314\"]', '[\"10169\"]', '18', '', 0, '', '', '18', 1831, 0, 12000, 12000, 'Twelve thousand rupees only', 0, '', 'CLEARED', 12000, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (230, '2017-08-04', 'Manju Design Build', 'JB-04082017/215', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru', 'Dynamic Website', 0, '29AILPM5696D1ZP', '1', '[\"Dynamic Website\"]', '[\"998314\"]', '[\"13559.32\"]', '9%', '18%', 0, '', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru', '9%', 1220, 1220, 13559, 16000, 'Sixteen thousand Rupees Only', 0, '', 'CLEARED', 16000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (231, '2017-08-04', 'Yaskawa India Pvt Ltd', 'JB-04082017/216', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', 'CRM', 0, '29AAACY4408P1ZR', '1', '[\"CRM\"]', '[\"998314\"]', '[\"60000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 5400, 5400, 60000, 70800, 'Seventy thousand eight hundred rupees only', 0, '', 'CLEARED', 70800, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (232, '2017-08-04', 'Prakruthi Yatri Nivas', 'JB-04082017/217', 'Bangalore', 'AMC', 0, 'nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"8000\"]', '18', '', 0, '', '', '18', 1440, 0, 9440, 9440, 'Nine thousand four hundred and fourty', 0, '', 'CLEARED', 9440, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (233, '2017-08-05', 'Creative Networks', 'JB-05082017/218', 'Bangalore', 'EMAIL', 0, '29AAMPE8611P1Z3', '1', '[\"EMAIL\"]', '[\"998314\"]', '[\"3813\"]', '18', '', 0, '', '', '18', 686, 0, 4500, 4500, 'Four thousand five hundred rupees only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (234, '2017-08-08', 'Ess and Ess infrastructure pvt ltd', 'JB-08082017/219', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar,Mysore', 'EMAIL', 0, '', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"25423\"]', '9%', '', 0, '', '', '9%', 4576, 0, 30000, 30000, 'Thirty thousand rupees only', 0, '', 'CLEARED', 30000, 'TDS ', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-27', 'ACTIVE'), (235, '2017-08-09', 'Tanuja', 'JB-09082017/220', 'Bangalore', 'Website', 0, 'nil', '1', '[\"Website\"]', '[\"998314\"]', '[\"5932\"]', '18', '', 0, '', '', '18', 1068, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (236, '2017-08-12', 'Ashirwad Dental Clinic', 'JB-12082017/221', 'Bangalore', 'SMS', 0, 'nil', '1', '[\"SMS\"]', '[\"998314\"]', '[\"6000\"]', '18', '', 0, '', '', '18', 1080, 0, 7080, 7080, 'Seven thousand and eight rupees only', 0, '', 'CLEARED', 7080, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (237, '2017-08-12', 'Dr Karthik Shetty', 'JB-12082017/222', 'Mangalore', 'SMS', 0, 'nil', '1', '[\"SMS\"]', '[\"998314\"]', '[\"3813\"]', '18', '', 0, '', '', '18', 686, 0, 4500, 4500, 'Four thousand five hundred rupees only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (238, '2017-08-17', 'Mahesh Reddy', 'JB-17082017/223', 'Bangalore', 'Dynamic Website', 0, 'nil', '1', '[\"Dynamic Website\"]', '[\"998314\"]', '[\"5932\"]', '18', '', 0, '', '', '18', 1068, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (239, '2017-08-18', 'Dr. Prasad', 'JB-18082017/224', 'Bangalore', 'Static Website', 0, 'nil', '1', '[\"Static Website\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, '', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (240, '2017-08-07', 'VABT', '07-08-17', '', 'Brochure design', 0, '', '', '[\"\"]', '[\"\"]', '[\"9500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (241, '0000-00-00', 'Make my Documents', 'CASH', 'Bangalore', 'Static webiste', 0, '', '1', '[\"Static webiste\"]', '[\"998314\"]', '[\"6422\"]', '9', '', 0, '', '', '9', 577, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (242, '2017-08-21', 'Swansilk Pvt Ltd', 'JB-21082017/225', 'Bangalore', 'Application', 0, '29AACCS4515R1ZR', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"117500\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 10575, 10575, 117500, 138650, 'One Lakh thirty eight thousand six hundred and fifty Rupees Only', 0, '', 'CLEARED', 138650, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (243, '2017-08-22', 'Fly fast express', 'JB-22082017/226', '14/4 Mission Road, S.R nagar Banglore 560027', 'Website', 0, '29AHEPA8435E1ZI', '1', '[\"Website development\"]', '[\"998314\"]', '[\"5932.20\"]', '9%', '18%', 0, 'Fly fast express', '14/4 Mission Road, S.R nagar Banglore 560027', '9%', 534, 534, 5932, 7000, 'Seven thousand Rupees Only', 0, '', 'CLEARED', 7000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (244, '2017-08-24', 'JKH Global Solutions', 'JB-24082017/227', '214, 2nd Floor 1st Main Rd, behind Robert Bosch gate, 7th Block Koramangala, Bengaluru', 'Email', 0, '29AANFJ4926B1Z9', '1', '[\"Email\"]', '[\"998314\"]', '[\"4491.53\"]', '9%', '18%', 0, 'JKH Global Solutions', '214, 2nd Floor 1st Main Rd, behind Robert Bosch gate, 7th Block Koramangala, Bengaluru', '9%', 404, 404, 4492, 5300, 'Five thousand three hundred Rupees Only', 0, '', 'CLEARED', 5300, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (245, '2017-08-29', 'Jaisri Leather Fashions', 'JB-29082017/228', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore ', 'Website', 0, '29AMAPB5212B1ZV', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6779.66\"]', '9%', '18%', 0, 'Jaisri Leather Fashions', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore ', '9%', 610, 610, 6780, 8000, 'Eight thousand Rupees Only', 0, '', 'CLEARED', 8000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (246, '2017-08-29', 'Janapara media Pvt Ltd', 'JB-29082017/229', 'Bangalore', 'Website', 0, 'nil', '1', '[\"Website\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (247, '2017-08-29', 'Sunil(Unison4)', 'JB-29082017/230', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', 'Website', 0, '29CABPP6393Q1ZO', '1', '[\"Website\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Sunil(Unison4)', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', '9%', 585, 585, 6500, 7670, 'Seven thousand six hundred and seventy rupees only', 0, '', 'CLEARED', 7670, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (248, '2017-08-30', 'Avega Consultancy Services Pvt Ltd', 'JB-30082017/231', 'Bangalore', 'Website', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"7627\"]', '18', '', 0, '', '', '18', 1373, 0, 9000, 9000, 'Nine thousand rupees only', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (249, '2017-09-02', 'Swansilk Pvt Ltd', 'JB-02092017/232', 'Bangalore', '', 0, '29AACCS4515R1ZR', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 900, 900, 10000, 11800, 'Eleven thousand eight hundred rupees only', 0, '', 'CLEARED', 11800, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (250, '2017-09-02', 'ESS and ESS Infrastructure Pvt Ltd', 'JB-02092017/233', 'Mysore', '', 0, '1 module finish', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"150000\"]', '18', '', 0, '', '', '18', 27000, 0, 177000, 177000, 'One lakh seventy seven thousand rupees only', 0, '', 'CLEARED', 177000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (251, '2017-09-04', 'Intercontinental Logistics', 'JB-04092017/234', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore', '', 0, '29BIIPS9092K3Z6', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Intercontinental Logistics', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore', '9%', 450, 450, 5000, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (252, '2017-09-05', 'ESS and ESS Infrastructure Pvt Ltd', 'JB-05092017/235', 'Bangalore', '', 0, 'Email ID', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (253, '2017-09-05', 'Swansilk Pvt Ltd', 'JB-05092017/236', 'Bangalore', '', 0, '29AACCS4515R1ZR', '1', '[\"Application\"]', '[\"998314\"]', '[\"117500\"]', '18', '', 0, '', '', '18', 21150, 0, 138650, 138650, 'One lakh thirty eight thousand six hundred and fifty rupees only', 0, '', 'PENDING', 138650, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (254, '2017-09-06', 'Think of green', 'JB-06092017/237', 'Bangalore', '', 0, '', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5963\"]', '9', '', 0, '', '', '9', 536, 0, 6500, 6500, 'Six thousand five hundred rupees only', 0, '', 'CLEARED', 6500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (255, '2017-09-07', 'Prime Panels', 'JB-07092017/238', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3559\"]', '18', '', 0, '', '', '18', 641, 0, 4200, 4200, 'Four thousand two hundred rupees only', 0, '', 'CLEARED', 4200, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (256, '2017-09-13', 'General manager, CEPT', 'JB-13092017/239', 'Mysore', '', 0, '29AAAGA0164NIZE', '1', '[\"Corporate Training\"]', '[\"998314\"]', '[\"162556\"]', '18', '', 0, '', '', '18', 29261, 0, 191816, 191816, 'One lakh ninety one thousand eight hundred and sixteen rupees only', 0, '', 'CLEARED', 191816, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (257, '2017-09-13', 'Sunil(Unison4)', 'JB-13092017/240', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', '', 0, '29CABPP6393Q1ZO', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6076.27\"]', '9%', '18%', 0, 'Sunil(Unison4)', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', '9%', 547, 547, 6076, 7170, 'Seven thousand one hundred and seventy Rupees Only', 0, '', 'CLEARED', 7170, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (258, '2017-09-13', 'Matha Associates', 'JB-13092017/241', 'No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara, Bangalore', '', 0, '29AARFM9918N1Z3', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"13559.32\"]', '9%', '18%', 0, 'Matha Associates', 'No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara, Bangalore', '9%', 1220, 1220, 13559, 16000, 'Sixteen thousand Rupees Only', 0, '', 'CLEARED', 16000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (259, '2017-09-13', 'Venus Surgical Agencies', 'JB-13092017/242', 'Bangalore', '', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '18', '', 0, '', '', '18', 900, 0, 5900, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (260, '2017-09-13', 'M/s Micro Energy(India) Limited', 'JB-13092017/243', 'Bangalore', '', 0, 'nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"3500\"]', '18', '', 0, '', '', '18', 630, 0, 4130, 4130, 'Four thousand one hundred and thirty rupees only', 0, '', 'CLEARED', 4130, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (261, '2017-09-14', 'Jaisri Leather Fashions', 'JB-14092017/244', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore ', '', 0, '29AMAPB5212B1ZV', '1', '[\"Website\"]', '[\"998314\"]', '[\"6779.66\"]', '9%', '18%', 0, 'Jaisri Leather Fashions', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore ', '9%', 610, 610, 6780, 8000, 'Eight thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (262, '2017-09-14', 'ESS and ESS Infrastructure Pvt Ltd', 'JB-14092017/245', 'Mysore', '', 0, '2 module', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"150000\"]', '18', '', 0, '', '', '18', 27000, 0, 177000, 177000, '', 0, '', 'CLEARED', 177000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (263, '0000-00-00', 'ING Corporation', 'Cash', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6779\"]', '17', '', 0, '', '', '17', 1120, 0, 8000, 8000, 'Eight thousand rupees only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (264, '2017-09-20', 'Yaskawa India Pvt Ltd', 'JB-20092017/246', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '', 0, '29AAACY4408P1ZR', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 3600, 3600, 40000, 47200, 'Forty seven thousand two hundred rupees only', 0, '', 'CLEARED', 47200, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (265, '2017-09-20', 'Yaskawa India Pvt Ltd', 'JB-20092017/247', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '', 0, '29AAACY4408P1ZR', '1', '[\"CRM\"]', '[\"998314\"]', '[\"60000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 5400, 5400, 60000, 70800, 'Seventy thousand eight hundred rupees only', 0, '', 'CLEARED', 70800, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (266, '2017-08-01', 'Swansilk Pvt Ltd', 'JB-01082017/213', 'Bangalore', '', 0, '29AACCS4515R1ZR', '1', '[\"Application\"]', '[\"998314\"]', '[\"117500\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 10575, 10575, 117500, 138650, 'One lakh thirty eight thousand six hundred and fifty Rupees Only', 0, '', 'CLEARED', 138650, 'Paid in other invoice', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (267, '2017-09-26', 'Celestain', 'JB-26092017/249', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', '', 0, 'nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore', '9%', 360, 360, 4000, 4720, 'Four thousand seven hundred and twenty rupees only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (268, '2017-09-26', 'Sidvin Elevators', 'JB-26092017/250', 'Bangalore', '', 0, '29ADDFS6507Q1ZC', '1', '[\"AMC\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2018-08-17', 'ACTIVE'), (269, '0000-00-00', 'Travel website', 'CASH', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"14678\"]', '9', '', 0, '', '', '9', 1321, 0, 16000, 16000, 'Sixteen thousand rupees only', 0, '', 'CLEARED', 16000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (270, '2017-10-04', 'Hiking Holidays', 'JB-04102017/251', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4267\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (271, '2017-10-05', 'Micro Energy India Limited', 'JB-05102017/252', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3500\"]', '18', '', 0, '', '', '18', 630, 0, 4130, 4130, '', 0, '', 'CLEARED', 4130, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (272, '2017-10-09', 'RV Foundations', 'JB-09102017/253', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4267\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (273, '2017-10-09', 'Success Edge Marine Services', 'JB-09102017/254', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"13559\"]', '18', '', 0, '', '', '18', 2441, 0, 16000, 16000, 'Six thousand rupees only', 0, '', 'CLEARED', 16000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (274, '2017-10-11', 'Provoke Advertising', 'JB-11102017/255', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"2119\"]', '18', '', 0, '', '', '18', 381, 0, 2500, 2500, '', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (275, '2017-10-12', 'Excel Diagnostics', 'JB-12102017/256', 'Bangalore', '', 0, 'nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"29661\"]', '18', '', 0, '', '', '18', 5339, 0, 35000, 35000, 'Thirty five thousand rupees only', 0, '', 'CLEARED', 35000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (276, '2017-10-12', 'GSS Infrastructure Pvt Ltd', 'JB-12102017/257', 'Bangalore', '', 0, '29AAACG3912G1ZT', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"16000\"]', '18', '', 0, '', '', '18', 2880, 0, 18880, 18880, 'Eighteen thousand eight hundred and eighty rupees only', 0, '', 'CLEARED', 18880, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (277, '2017-10-13', 'GSS Infrastructure Pvt Ltd', 'JB-13102017/258', 'Bangalore', '', 0, '29AAACG3912G1ZT', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"2000\"]', '18', '', 0, '', '', '18', 360, 0, 2360, 2360, 'Two thousand three hundred and sixty rupees only', 0, '', 'CLEARED', 2360, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (278, '2017-10-13', 'Tanmay Traders', 'JB-13102017/259', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', '', 0, '29AIDPS5620B1ZF', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Tanmay Traders', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', '9%', 450, 450, 5000, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (279, '2017-10-16', 'General manager, CEPT', 'JB-16102017/260', 'Mysore', '', 0, '29AAAGA0164N1ZE', '1', '[\"Corporate Training\"]', '[\"998314\"]', '[\"121917\"]', '18', '', 0, '', '', '18', 21945, 0, 143862, 143862, 'One lakh forty three thousand eight hundred and sixty two rupees only', 0, '', 'CLEARED', 143862, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (280, '0000-00-00', 'Vishnavimatha Astrology', 'Cash', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7700\"]', '8', '', 0, '', '', '8', 635, 0, 7064, 7064, 'Seven thousand and sixty four rupees only', 0, '', 'CLEARED', 7064, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (281, '2017-10-20', 'National Housing Corporation', 'JB-20102017/261', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4267\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (282, '2017-11-06', 'Savadi dental Care', 'JB-06112017/265', 'Bangalore', '', 0, 'nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"7000\"]', '18', '', 0, '', '', '18', 1260, 0, 8260, 8260, 'Eight thousand two hundred and sixty rupees only', 0, '', 'CLEARED', 8260, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (283, '2017-11-07', 'Limra', 'JB-07112017/266', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3669\"]', '9', '', 0, '', '', '9', 330, 0, 4000, 4000, 'Four thousand rupees only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (284, '2017-11-09', 'Hiking Holidays', 'JB-09112017/267', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"10169\"]', '18', '', 0, '', '', '18', 1831, 0, 12000, 12000, 'Twelve thousand rupees only', 0, '', 'CLEARED', 12000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (285, '2017-11-10', 'National Housing Corporation', 'JB-10112017/268', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4267\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (286, '2017-11-10', 'Arjun Ventures', 'JB-10112017/269', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage, Bangalore', '', 0, '29AYPPA3816K1Z4', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Arjun Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage, Bangalore', '9%', 540, 540, 6000, 7080, 'Seven thousand and eighty rupees only', 0, '', 'CLEARED', 7080, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (287, '2017-11-14', 'Broadfield HR Soloutions Pvt Ltd', 'JB-14112017/270', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte, Bangalore', '', 0, '29AAFCB099Q1ZK', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3601.69\"]', '9%', '18%', 0, 'Broadfield HR Soloutions Pvt Ltd', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte, Bangalore', '9%', 324, 324, 3602, 4250, 'Three Thousand Six Hundred One Rupees Only', 0, '', 'CLEARED', 4250, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (288, '2017-11-14', 'Provoke Advertising', 'JB-14112017/271', 'Bangalore', '', 0, '29APKPG8924J1ZC', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3381\"]', '18', '', 0, '', '', '18', 609, 0, 3990, 3990, 'Three thousand nine hundred and ninety rupees only', 0, '', 'CLEARED', 3990, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (289, '2017-11-16', 'Rockworth Infra Equipments Pvt Ltd', 'JB-16112017/272', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '', 0, '29AAGCR2132K1Z9', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Rockworth Infra Equipments Pvt Ltd', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '9%', 270, 270, 3000, 3540, 'Three thousand five hundred and forty rupees only', 0, '', 'CLEARED', 3540, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (290, '2017-11-16', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-16112017/273', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"8898\"]', '9%', '', 0, '', '', '9%', 1602, 0, 10500, 10500, '', 0, '', 'CLEARED', 10500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-30', 'ACTIVE'), (291, '0000-00-00', 'Vstaarplus', 'Cash', 'Chikmagalur', '', 0, 'nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"45871\"]', '9', '', 0, '', '', '9', 4128, 0, 50000, 50000, 'Fifty thousand rupees only', 0, '', 'CLEARED', 50000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (292, '2017-11-21', 'Sree Vinayakaa Dental Clinic', 'JB-21112017/274', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4000\"]', '18', '', 0, '', '', '18', 720, 0, 4720, 4720, '', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (293, '2017-11-22', 'Shree Swami Vivekananda High School', 'JB-22112017/275', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"2542\"]', '18', '', 0, '', '', '18', 458, 0, 3000, 3000, 'Three thousand rupees only', 0, '', 'CLEARED', 3000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (294, '2017-11-24', 'Dr Sheshaprasad(Krishna Sevashrama-AMC)', 'JB-24112017/276', 'Bangalore', '', 0, 'nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"3500\"]', '18', '', 0, '', '', '18', 630, 0, 4130, 4130, 'Four thousand one hundred and thirty rupees only', 0, '', 'CLEARED', 4130, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (295, '2017-11-24', 'Indian Society of Professional Social Works', 'JB-24112017/277', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (296, '0000-00-00', 'Sri mahaganapathy astrologer', 'Cash', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4237\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'INACTIVE'), (297, '0000-00-00', 'Sri Bhadrakali Astrologer', 'Cash', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4237\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'INACTIVE'), (298, '2017-11-25', 'Corbelo Design Interiors', 'JB-25112017/278', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6585\"]', '18', '', 0, '', '', '18', 1185, 0, 7770, 7770, 'Seven thousand seven hundred and seventy rupees only', 0, '', 'CLEARED', 7770, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (299, '2017-11-27', 'Sky Indigo Management Solutions', 'JB-27112017/279', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', '', 0, '29FOMPS8061A1ZI', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3813.56\"]', '9%', '18%', 0, 'Sky Indigo Management Solutions', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', '9%', 343, 343, 3814, 4500, 'Four thousand five hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (300, '2017-11-27', 'Yaskawa India Pvt Ltd', 'JB-27112017/280', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '', 0, '29AAACY4408P1ZR', '1', '[\"CRM Development\"]', '[\"998314\"]', '[\"73000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 6570, 6570, 73000, 86140, 'Eighty six thousand one hundred and forty rupees only', 0, '', 'CLEARED', 86140, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (301, '2017-11-27', 'Yaskawa India Pvt Ltd', 'JB-27112017/281', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '', 0, '29AAACY4408P1ZR', '1', '[\"CRM Development\"]', '[\"998314\"]', '[\"200000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 18000, 18000, 200000, 236000, 'Two Lakh thirty six thousand Rupees Only', 0, '', 'CLEARED', 236000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (302, '2017-11-29', 'Aavaas', 'JB-29112017/282', '#83, Eshwar layout Near RBI layout JP Nagar 7th phase, Bangalore Karnataka', '', 0, 'nil', '1', '[\"Website development\"]', '[\"998314\"]', '[\"4237.29\"]', '9%', '18%', 0, 'Aavaas', '#83, Eshwar layout Near RBI layout JP Nagar 7th phase, Bangalore Karnataka', '9%', 381, 381, 4237, 5000, 'Five thousand Rupees Only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (303, '2017-12-01', 'Rockworth Infra Equipments Pvt Ltd', 'JB-01122017/283', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '', 0, '29AAGCR2132K1Z9', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'Rockworth Infra Equipments Pvt Ltd', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '9%', 630, 630, 7000, 8260, 'Eight thousand two hundred and sixty rupees only', 0, '', 'CLEARED', 8260, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (304, '2017-12-01', 'Rockworth Infra Equipments Pvt Ltd', 'JB-01122017/284', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '', 0, '29AAGCR2132K1Z9', '1', '[\"AMC\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Rockworth Infra Equipments Pvt Ltd', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '9%', 450, 450, 5000, 5900, 'Five Thousand nine hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (305, '2017-12-01', 'Ess and Ess Infrastructure Pvt Ltd', 'JB-01122017/285', 'Bangalore', '', 0, '2nd module final', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"65254\"]', '18', '', 0, '', '', '18', 11746, 0, 77000, 77000, 'Seventy seven thousand rupees only', 0, '', 'CLEARED', 77000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (306, '2017-12-01', 'Ess and Ess Infrastructure Pvt Ltd', 'JB-01122017/286', 'Bangalore', '', 0, '3rd module', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"150000\"]', '18', '', 0, '', '', '18', 27000, 0, 177000, 177000, 'One lakh seventy seven thousand rupees only', 0, '', 'CLEARED', 177000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (307, '2017-12-02', 'Broadfield HR Soloutions Pvt Ltd', 'JB-02122017/287', 'Bangalore', '', 0, '29AAFCB099Q1ZK', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3602\"]', '18', '', 0, '', '', '18', 648, 0, 4250, 4250, 'Four thousand two hundred and fifty rupees only', 0, '', 'CLEARED', 4250, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (308, '2017-12-02', 'Service Force Tech Solutions Pvt Ltd', 'JB-02122017/288', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3814\"]', '18', '', 0, '', '', '18', 686, 0, 4500, 4500, 'Four thousand five hundred rupees only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (309, '2017-12-04', 'Sree Nandi Logistics', 'JB-04122017/289', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"2542\"]', '18', '', 0, '', '', '18', 458, 0, 3000, 3000, 'Three thousand rupees only', 0, '', 'CLEARED', 3000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (310, '0000-00-00', 'Sigandur Astrologer', 'Cash', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"9174\"]', '9', '', 0, '', '', '9', 825, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (311, '2017-12-06', 'Deco-Textil Pvt Ltd', 'JB-06122017/290', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"72500\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 6525, 6525, 72500, 85550, 'Eighty Five Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 85550, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (312, '2017-12-12', 'Homistics Pvt Ltd', 'JB-12122017/291', 'Bangalore', '', 0, 'nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"12220\"]', '18', '', 0, '', '', '18', 2200, 0, 14420, 14420, 'Fourteen thousand four hundred and twenty rupees only', 0, '', 'CLEARED', 14420, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (313, '2017-12-15', 'Jyesta Constructions', 'JB-15122017/292', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (314, '2017-12-15', 'Oncomax Dental Clinic', 'JB-15122017/293', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3000\"]', '30', '', 0, '', '', '30', 900, 0, 3900, 3900, 'Three thousand nine hundred rupees only', 0, '', 'CLEARED', 3900, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (315, '0000-00-00', 'Sri mahaganapathy astrologer', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4587\"]', '9', '', 0, '', '', '9', 412, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (316, '0000-00-00', 'Sri Bhadrakali Astrologer', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"5000\"]', '', '', 0, '', '', '', 0, 0, 0, 4237, '', 0, '', 'CLEARED', 4237, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (317, '2017-12-16', 'General manager, CEPT', 'JB-16122017/294', 'Mysore', '', 0, '29AAAGA0164NIZE', '1', '[\"Corporate Training\"]', '[\"998314\"]', '[\"121917\"]', '9', '', 0, '', '', '9', 10972, 0, 143862, 143862, 'One lakh forty three thousand eight hundred and sixty two rupees only', 0, '', 'CLEARED', 143862, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (318, '2017-12-16', 'Imarc Pest Control', 'JB-16122017/295', 'Bangalore', '', 0, 'Nil', '1', '[\"website\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (319, '2017-12-18', 'Sky Indigo Management Solutions', 'JB-18122017/296', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', '', 0, '29FOMPS8061A1ZI', '1', '[\"website\"]', '[\"998314\"]', '[\"3813.56\"]', '9%', '18%', 0, 'Sky Indigo Management Solutions', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', '9%', 343, 343, 3814, 4500, 'Four thousand five hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (320, '2017-12-18', 'Marrie\'s Food Factory', 'JB-18122017/297', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4237\"]', '18', '', 0, '', '', '18', 763, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (321, '2017-12-19', 'Deco-Textil Pvt Ltd', 'JB-19122017/298', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"72500\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 6525, 6525, 72500, 85550, 'Eighty five thousand five hundred and fifty Rupees Only', 0, '', 'CLEARED', 85550, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (322, '2017-12-20', 'Radion Dental Equipments Pvt Ltd', 'JB-20122017/299', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"21000\"]', '18', '', 0, '', '', '18', 3780, 0, 24780, 24780, 'Twenty four thousand seven hundred and eighty rupees only', 0, '', 'CLEARED', 24780, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (323, '2017-12-20', 'Footline India', 'JB-20122017/300', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"1271\"]', '18', '', 0, '', '', '18', 229, 0, 1500, 1500, 'one thousand five hundred rupees only', 0, '', 'CLEARED', 1500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (324, '2017-12-21', 'Deco-Textil Pvt Ltd', 'JB-21122017/301', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 9000, 9000, 100000, 118000, 'One Lakh eighteen thousand Rupees Only', 0, '', 'CLEARED', 118000, 'Rounded Up', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (325, '2017-12-22', 'Ess and Ess Infrastructure Pvt Ltd', 'JB-22122017/302', 'Mysore', '', 0, 'Nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"150000\"]', '18', '', 0, '', '', '18', 27000, 0, 177000, 177000, 'One lakh seventy seven thousand rupees only', 0, '', 'CLEARED', 177000, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (326, '2017-12-26', 'Rockworth infra equipments pvt ltd', 'JB-26122017/303', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '', 0, '29AAGCR2132K1Z9', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"9000\"]', '9%', '18%', 0, 'Rockworth infra equipments pvt ltd', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '9%', 810, 810, 9000, 10620, 'Ten thousand six hundred and twenty rupees only', 0, '', 'CLEARED', 10620, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (327, '0000-00-00', 'Dr C Jagadeesh', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"25424\"]', '18', '', 0, '', '', '18', 4576, 0, 30000, 30000, 'Thirty thousand rupees only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (328, '2017-12-26', 'Limra', 'JB-26122017/304', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5932\"]', '18', '', 0, '', '', '18', 1068, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (329, '2017-12-26', 'Bhadra kali Astrologers', 'JB-26122017/305', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"16949\"]', '18', '', 0, '', '', '18', 3051, 0, 20000, 20000, 'Twenty thousand rupees only', 0, '', 'CLEARED', 20000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (330, '2019-04-01', 'Surya woods', 'Cash', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', '', 0, '29ABOPE5514E1ZQ', '1', '[\"AMC\"]', '[\"998314\"]', '[\"3389.83\"]', '9%', '18%', 0, 'Surya woods', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', '9%', 305, 305, 3390, 4000, 'Four thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (331, '2017-12-29', 'RV Foundations', 'JB-29122017/306', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5085\"]', '18', '', 0, '', '', '18', 915, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (332, '2017-12-30', 'Nityananda', 'JB-30122017/307', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5932\"]', '18', '', 0, '', '', '18', 1068, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (333, '2018-01-01', 'Ess & ESS Infrastructure Pvt Ltd', 'JB-01012018/308', 'Mysore', '', 0, 'Nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"300000\"]', '18', '', 0, '', '', '18', 54000, 0, 354000, 354000, 'Three lakh fifty four thousand rupees only', 0, '', 'CLEARED', 354000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (334, '2018-01-02', 'Dr C Jagadeesh Dental Clinic', 'JB-02012018/309', 'Bangalore', '', 0, 'Nil', '1', '[\"website\"]', '[\"998314\"]', '[\"6780\"]', '18', '', 0, '', '', '18', 1220, 0, 8000, 8000, 'Eight thousand rupee only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (335, '2017-01-05', 'Dental Surgery Centre', 'JB-05012017/310', 'Bangalore', '', 0, 'Nil', '1', '[\"website\"]', '[\"998314\"]', '[\"20000\"]', '18', '', 0, '', '', '18', 3600, 0, 23600, 23600, 'Twenty three thousand six hundred rupees only', 0, '', 'CLEARED', 23600, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (336, '2018-01-05', 'Elite Services', 'JB-05012018/311', 'Bangalore', '', 0, '29APMPJ0355A1Z5', '1', '[\"website\"]', '[\"998314\"]', '[\"8475\"]', '18', '', 0, '', '', '18', 1525, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (337, '2018-01-08', 'Apparel & Leather Techniques Pvt Ltd', 'JB-08012018/312', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post, Bangalore', '', 0, '29AABCA1730B2ZB', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"11500\"]', '9%', '18%', 0, 'Apparel & Leather Techniques Pvt Ltd', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post, Bangalore', '9%', 1035, 1035, 11500, 13570, 'Thirteen thousand five hundred and seventy rupees only', 0, '', 'CLEARED', 13570, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (338, '2018-01-08', 'Miacasa', 'JB-08012018/313', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5000\"]', '18', '', 0, '', '', '18', 900, 0, 5900, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (339, '2018-01-09', 'ESS & ESS Infrastructure Pvt Ltd', 'JB-09012018/314', 'Mysore', '', 0, 'Nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"30000\"]', '18', '', 0, '', '', '18', 5400, 0, 35400, 35400, 'Thirty five thousand four hundred rupees only', 0, '', 'CLEARED', 35400, 'Rounded Up', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (340, '2018-01-11', 'Indian Society of Professional Social Works', 'JB-11012018/315', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"9000\"]', '16', '', 0, '', '', '16', 1409, 0, 9240, 9240, 'Nine thousand two hundred and forty rupees only', 0, '', 'CLEARED', 9240, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (341, '2018-01-11', 'Priya Ranjan', 'JB-11012018/316', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4000\"]', '18', '', 0, '', '', '18', 720, 0, 4720, 4720, 'Four thousand seven hundred and twenty rupees only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (342, '0000-00-00', 'Jyesta Constructions', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"5000\"]', '', '', 0, '', '', '', 0, 0, 0, 5000, '', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (343, '2018-01-17', 'New IT Solution', 'JB-17012018/317', '#944, ground floor,42nd cross,3rd block, Rajajinagar,bangalore', '', 0, '29AGWPA5095K1ZN', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'New IT Solution', '#944, ground floor,42nd cross,3rd block, Rajajinagar,bangalore', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (344, '2018-01-18', 'Shivaprakash', 'JB-18012018/318', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5000\"]', '18', '', 0, '', '', '18', 900, 0, 5900, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (345, '2017-08-25', 'Hiking Holidays', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '7/19/18 12:27', '2018-08-29', 'ACTIVE'), (346, '0000-00-00', 'Hublaunch', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"3500\"]', '', '', 0, '', '', '', 0, 0, 0, 3500, '', 0, '', 'CLEARED', 3500, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (347, '2017-12-27', 'Amber Home', 'JB-27122017/319', 'No.62, 19th Main, 1st Block, Rajajinagar Bangalore', '', 0, '29ABEFA1847N1Z2', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3601.69\"]', '9%', '18%', 0, 'Amber Home', 'No.62, 19th Main, 1st Block, Rajajinagar Bangalore', '9%', 324, 324, 3602, 4250, 'Four thousand two hundred and fifty Rupees Only', 0, '', 'CLEARED', 4250, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (348, '2018-01-22', 'ani technologies pvt ltd', 'JB-22012018/320', 'Goddard Technical Solutions Private Ltd, Auro Center, No.13/63, Kormangala Industrial Layout, Bangalore', '', 0, '29AAGCG6213L1ZC', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"18644\"]', '9%', '18%', 0, 'ani technologies pvt ltd', 'Goddard Technical Solutions Private Ltd, Auro Center, No.13/63, Kormangala Industrial Layout, Bangalore', '9%', 1678, 1678, 18644, 22000, 'Twenty two thousand Rupees Only', 0, '', 'CLEARED', 220000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (349, '2018-01-23', 'Deco-Textil Pvt Ltd', 'JB-23012018/321', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 9000, 9000, 100000, 118000, 'One Lakh eighteen thousand Rupees Only', 0, '', 'CLEARED', 118000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (350, '0000-00-00', 'Hublaunch', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"32110\"]', '9', '', 0, '', '', '9', 2889, 0, 35000, 35000, 'Thirty five thousand rupees only', 0, '', 'CLEARED', 35000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (351, '2018-01-24', 'Service force tech solutions pvt ltd', 'JB-24012018/322', 'Bangalore', '', 0, 'Nil', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3813\"]', '9%', '18%', 0, '', '', '9%', 344, 344, 3813, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (352, '2018-01-24', 'Zepnor', 'JB-24012018/323', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6780\"]', '18', '', 0, '', '', '18', 1220, 0, 8000, 8000, 'Eight thousand rupees only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (353, '0000-00-00', 'Vstaarplus', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"50000\"]', '', '', 0, '', '', '', 0, 0, 0, 50000, '', 0, '', 'CLEARED', 50000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (354, '2018-01-24', 'Durga Steels', 'JB-24012018/324', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3814\"]', '18', '', 0, '', '', '18', 686, 0, 4500, 4500, 'Four thousand five hundred rupees only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (355, '2018-01-30', 'Yaskawa India Pvt Ltd', 'JB-30012018/325', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '', 0, '29AAACY4408P1ZR', '1', '[\"CRM\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore', '9%', 2700, 2700, 30000, 35400, 'Thirty five Thousand four hundred Rupees Only', 0, '', 'CLEARED', 35400, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-02', 'ACTIVE'), (356, '2018-01-30', 'Rajesh', 'JB-30012018/326', 'Bangalore', '', 0, 'Nil', '1', '[\"website\"]', '[\"998314\"]', '[\"13761\"]', '9', '', 0, '', '', '9', 1238, 0, 15000, 15000, 'Fifteen thousand rupees only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (357, '2018-01-31', 'Yaskawa India Pvt Ltd', 'JB-31012018/327', 'Bangalore', '', 0, '29AAACY4408P1ZR', '', '[\"\"]', '[\"\"]', '[\"35400\"]', '', '', 0, '', '', '', 5400, 0, 0, 30000, '', 0, '', 'CLEARED', 30000, 'No Difference', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (358, '2018-01-31', 'Capital Star', 'JB-31012018/328', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6780\"]', '18', '', 0, '', '', '18', 1220, 0, 8000, 8000, 'Eight thousand rupees only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (359, '2018-02-01', 'Veera Panel Boards', 'JB-01022018/329', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', '', 0, '29ARFPE6881N1J', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3389.83\"]', '9%', '18%', 0, 'Veera Panel Boards', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', '9%', 305, 305, 3390, 4000, 'Four thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (360, '0000-00-00', 'JSH Facility Services', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"3669\"]', '9', '', 0, '', '', '9', 330, 0, 4000, 4000, 'Four thousand rupees only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (361, '0000-00-00', 'Corbelo Group', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5504\"]', '9', '', 0, '', '', '9', 495, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (362, '2018-02-05', 'Yashas Dental Health Care', 'JB-05022018/330', 'Bangalore', '', 0, 'Nil', '1', '[\"AMC For Dentics\"]', '[\"998314\"]', '[\"3500\"]', '9%', '', 0, '', '', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2018-08-17', 'ACTIVE'), (363, '2018-02-12', 'Oncomax', 'JB-12022018/331', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7712\"]', '18', '', 0, '', '', '18', 1388, 0, 9100, 9100, 'Nine thousand one hundred rupees only', 0, '', 'CLEARED', 9100, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (364, '2018-02-14', 'Capital Star', 'JB-14022018/332', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5220\"]', '18', '', 0, '', '', '18', 939, 0, 6160, 6160, 'Six thousand one hundred and sixty rupees only', 0, '', 'CLEARED', 6160, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (365, '2018-02-19', 'Biosite India Pvt Ltd', 'JB-19022018/333', 'jp nagar 7th phase, Bangalore', '', 0, '06AAGCB15921ZQ', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7838.98\"]', '9%', '18%', 0, 'Biosite India Pvt Ltd', 'jp nagar 7th phase, Bangalore', '9%', 706, 706, 7839, 9250, 'Nine thousand two hundred and fifty Rupees Only', 0, '', 'CLEARED', 9250, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (366, '2018-02-19', 'Deco-Textil Pvt Ltd', 'JB-19022018/334', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 9000, 9000, 100000, 118000, 'One lakh eighteen thousand rupees only', 0, '', 'CLEARED', 118000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (367, '2018-02-19', 'Rika Innovations', 'JB-19022018/335', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar Bangalore', '', 0, '29ATFPK1482J1ZE', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Rika Innovations', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar Bangalore', '9%', 360, 360, 4000, 4720, 'Four thousand seven hundred and twenty rupees only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', 'Normal', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (368, '2018-02-19', 'Mia Casa', 'JB-19022018/336', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West,Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"10000\"]', '18', '', 0, '', '', '18', 1800, 0, 11800, 11800, 'Eleven thousand eight hundred rupees only', 0, '', 'CLEARED', 11800, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (369, '0000-00-00', 'Dental Diagnostic Centre', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"8256\"]', '9', '', 0, '', '', '9', 743, 0, 9000, 9000, 'Nine thousand rupees only', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (370, '0000-00-00', 'JSH Facility Services', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4587\"]', '9', '', 0, '', '', '9', 412, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (371, '2018-02-22', 'Poorna pragna international school', 'JB-22022018/337', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"2118\"]', '18', '', 0, '', '', '18', 381, 0, 2500, 2500, 'two thousand five hundred rupees only', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (372, '2018-02-22', 'Koolair Systems Pvt Ltd', 'JB-22022018/338', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7203\"]', '18', '', 0, '', '', '18', 1296, 0, 8500, 8500, 'Eight thousand five hundred rupees only', 0, '', 'CLEARED', 8500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (373, '2018-02-24', 'ESS & ESS Infrastructure pvt ltd', 'JB-24022018/339', 'Bangalore', '', 0, 'Nil', '1', '[\"Erp Development\"]', '[\"998314\"]', '[\"35400\"]', '15', '', 0, '', '', '15', 5400, 0, 35400, 35400, 'Thirty five thousand four hundred rupees only', 0, '', 'CLEARED', 35400, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (374, '2018-02-26', 'Kempegowda Build mart', 'JB-26022018/340', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore', '', 0, '29AARFK1722G1Z6', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Kempegowda Build mart', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore', '9%', 540, 540, 6000, 7080, 'Seven thousand and eighty rupees only', 0, '', 'CLEARED', 7080, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (375, '0000-00-00', 'John D Leo', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"9000\"]', '', '', 0, '', '', '', 0, 0, 0, 9000, '', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (376, '2018-02-26', 'Goddard Technical Solutions Private Limited/ Avail Finance', 'JB-26022018/341', 'Bangalore', '', 0, '29AAGCG6213L1ZC', '1', '[\"website\"]', '[\"998314\"]', '[\"5084\"]', '18', '', 0, '', '', '18', 915, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (377, '2018-02-26', 'Bangalore Headlines', 'JB-26022018/342', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4237\"]', '18', '', 0, '', '', '18', 762, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (378, '0000-00-00', 'Rajesh', 'Cash', 'Bangalore', '', 0, 'Nil', '', '[\"\"]', '[\"\"]', '[\"6000\"]', '', '', 0, '', '', '', 0, 0, 0, 6000, '', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (379, '2003-02-18', 'Veera Panel Boards', 'JB-02032018/343', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', '', 0, '29ARFPE6881N1J', '1', '[\"website\"]', '[\"998314\"]', '[\"4237.29\"]', '9%', '18%', 0, 'Veera Panel Boards', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', '9%', 381, 381, 4237, 5000, 'Five thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (380, '2018-03-02', 'New IT Solution', 'JB-02032018/344', '#944, ground floor,42nd cross,3rd block, Rajajinagar,Bangalore', '', 0, '29AGWPA5095K1ZN', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'New IT Solution', '#944, ground floor,42nd cross,3rd block, Rajajinagar,Bangalore', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (381, '2018-03-05', 'Zepnur', 'JB-05032018/345', 'Level 8, Tower 1, Umiya Business Bay Cessna Business Park, 560 103,Marathahalli - Sarjapur Outer Ring Rd, Kaverappa Layout, Kadubeesanahalli, Bengaluru, Karnataka 560103', '', 0, '29AABCZ1663J1ZY', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6779.66\"]', '9%', '18%', 0, 'Zepnur', 'Level 8, Tower 1, Umiya Business Bay Cessna Business Park, 560 103,Marathahalli - Sarjapur Outer Ring Rd, Kaverappa Layout, Kadubeesanahalli, Bengaluru, Karnataka 560103', '9%', 610, 610, 6780, 8000, 'Eight thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (382, '2018-03-06', 'Salemaker', 'JB-06032018/346', 'Pride Bilekahalli Banergatta Road Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4000\"]', '18', '', 0, '', '', '18', 720, 0, 4720, 4720, 'Four thousand two hundred and twenty rupees only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (383, '0000-00-00', 'Astrologer(veerabhadrakaliastrology.com)', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6422\"]', '9', '', 0, '', '', '9', 577, 0, 7000, 7000, 'Seven thousand rupees only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (384, '2018-03-08', 'Poornaprajna International School', 'JB-08032018/347', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore,', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7500\"]', '18', '', 0, '', '', '18', 1350, 0, 8850, 8850, 'Eight thousand eight hundred and fifty rupees only', 0, '', 'CLEARED', 8850, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (385, '2018-03-08', 'Rainbow decorators', 'JB-08032018/348', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"4000\"]', '18', '', 0, '', '', '18', 720, 0, 4720, 4720, 'Four thousand seven hundred and twenty rupees only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (386, '0000-00-00', 'Print Cube', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"7339\"]', '9', '', 0, '', '', '9', 660, 0, 8000, 8000, 'Eight thousand rupees only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (387, '2018-03-19', 'Excel diagnostics', 'JB-19032018/349', 'Bangalore', '', 0, 'Nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"7500\"]', '18', '', 0, '', '', '18', 1350, 0, 8850, 8850, 'Eight thousand eight hundred and fifty rupees only', 0, '', 'CLEARED', 8850, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (388, '2018-03-19', 'Dental diagnostic centre', 'JB-19032018/350', 'Bangalore', '', 0, 'Nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"7627\"]', '18', '', 0, '', '', '18', 1372, 0, 9000, 9000, 'Nine thousand rupees only', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (389, '0000-00-00', 'Veerabhadrakaliastrology Astrologer', 'Cash', 'Unit No: 20, Hadson 432, W2 1EG ( opposite ESSO petrol Station )(5,010.66 mi) London, United Kingdom', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"9174\"]', '9', '', 0, '', '', '9', 825, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (390, '2018-03-20', 'Savadi Dental Care', 'JB-20032018/351', 'SHIRAHA, 1st Floor, 29 6/D, 38th Cross, 9th main 5th Block, Jayanagar,Bangalore', '', 0, 'Nil', '1', '[\"AMC\"]', '[\"998314\"]', '[\"2966\"]', '18', '', 0, '', '', '18', 533, 0, 3500, 3500, 'Three thousand five hundred rupees only', 0, '', 'CLEARED', 3500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (391, '0000-00-00', 'Make my documents', 'Cash', 'No 334 2nd Main Dattatreya Nagar Hosakerehalli Bsk 3rd Stage Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"1834\"]', '9', '', 0, '', '', '9', 165, 0, 2164, 2164, 'Two Thousand One Hundred and Sixty Four Rupees only', 0, '', 'CLEARED', 2164, 'Rounded Up', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (392, '2018-03-21', 'Koolair Systems Pvt Ltd', 'JB-21032018/352', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"9322\"]', '18', '', 0, '', '', '18', 1677, 0, 11838, 11838, 'Eleven Thousand Eight Hundred and Thirty Eight Rupees only', 0, '', 'CLEARED', 11838, 'Minor amount round figured .', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (393, '2018-03-22', 'Educate Overseas', 'JB-22032018/353', '#60, 18th Main, 22nd Cross HSR Layout, Bangalore - 560102', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"\"]', '[\"6355\"]', '18', '', 0, '', '', '18', 1144, 0, 7500, 7500, 'Seven Thousand Five Hundred Rupees only', 0, '', 'CLEARED', 7500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (394, '2018-03-22', 'Deco-Textil Pvt Ltd', 'JB-22032018/354', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House\", Post box 25210,#40, 4th cross, Residency road, Bangalore', '9%', 9000, 9000, 100000, 118000, 'One lakh eighteen thousand rupees only', 0, '', 'CLEARED', 118000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (395, '0000-00-00', 'Good rich pest control', 'Cash', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala,Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"5504\"]', '9', '', 0, '', '', '9', 495, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (396, '2018-03-26', 'Apparel & Leather Techniques Pvt Ltd', 'JB-26032018/355', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post,bangalore', '', 0, '29AABCA1730B2ZB', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Apparel & Leather Techniques Pvt Ltd', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post,bangalore', '9%', 540, 540, 6000, 7080, 'Five hundred and forty rupees only', 0, '', 'CLEARED', 7080, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (397, '0000-00-00', 'Nelivigi Dental Clinic', 'Cash', 'No. 450/435/10, Infront Of Vijaya Bank Opp. Bangalore Central Mall, ORR Bellandur Circle, Bengaluru', '', 0, 'Nil', '1', '[\"Dentics and Website\"]', '[\"998314\"]', '[\"22935\"]', '9', '', 0, '', '', '9', 2064, 0, 25000, 25000, 'Twenty five thousand rupees only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (398, '0000-00-00', 'Helpmate', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"917\"]', '9', '', 0, '', '', '9', 82, 0, 1000, 1000, 'One thousand rupees only', 0, '', 'CLEARED', 1000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (399, '2018-03-28', 'Krishnapriya Handlooms', 'JB-280302018/356', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069', '', 0, 'AA290117035986S', '1', '[\"E-Commerce\"]', '[\"998314\"]', '[\"17372.88\"]', '9%', '18%', 0, 'Krishnapriya Handlooms', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069', '9%', 1564, 1564, 17373, 20500, 'Twenty thousand five hundred Rupees Only', 0, '', 'CLEARED', 20500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (400, '2018-03-29', 'Catabill', 'JB-29032018/357', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore', '', 0, 'Nil', '1', '[\"E-Commerce\"]', '[\"998314\"]', '[\"100917\"]', '9', '', 0, '', '', '9', 9082, 0, 110000, 110000, 'One lakh ten thousand rupees only', 0, '', 'CLEARED', 110000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (401, '0000-00-00', 'Rajesh', 'Cash', 'Bangalore', '', 0, 'Nil', '1', '[\"Webiste\"]', '[\"998314\"]', '[\"2752\"]', '9', '', 0, '', '', '9', 247, 0, 3000, 3000, 'Three thousand rupees only', 0, '', 'CLEARED', 3000, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (402, '2017-05-08', 'Ess and Ess infrastructure pvt ltd', 'JB-30032018/358', 'Bangalore', '', 0, 'Nil', '1', '[\"EMAIL\"]', '[\"998314\"]', '[\"25423\"]', '18', '', 0, '', '', '18', 4576, 0, 30000, 30000, 'Thirty thousand rupees only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (403, '2018-04-11', 'KISA', 'JB-11042018/364', 'Bangalore', '', 0, '', '1', '[\"\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'KISA', 'Bangalore', '9%', 450, 450, 0, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, 'No Difference ', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-20', 'ACTIVE'), (404, '2018-04-11', 'Truecon Enterprises', 'JB-11042018/365', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '', 0, '29CKHPP9108B1Z1', '1', '[\"Website\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '9%', 585, 585, 6500, 7670, 'Seven thousand six hundred and seventy rupees only', 0, '', 'CLEARED', 7670, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (405, '2018-04-11', 'A&M Edu Solution', 'JB-11042018/366', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, bangalore', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"7500\"]', '10', '', 0, '', '', '10', 730, 0, 8850, 8850, 'Eight thousand eight hundred and fifty rupees only', 0, '', 'CLEARED', 8850, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (406, '0000-00-00', 'S R Marble and Granite', 'Cash', 'Bangalore', '', 307, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"7798\"]', '9', '', 0, '', '', '9', 701, 0, 8500, 8500, 'Eight thousand five hundred rupees only', 0, '', 'CLEARED', 8500, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (407, '2018-04-12', 'Charunya Design Tech', 'JB-12042018/367', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage,bangalore', '', 0, '29BFCPR6408F3Z9', '1', '[\"Website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Charunya Design Tech', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage,bangalore', '9%', 450, 450, 5000, 5900, 'Five thousand nine hundred rupees only', 0, '', 'CLEARED', 5900, 'No Difference ', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (408, '2018-04-14', 'Rika Innovations', 'JB-14042018/368', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar,Bangalore', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"7000\"]', '10', '', 0, '', '', '10', 682, 0, 8260, 8260, 'Eight thousand two hundred and sixty rupees only', 0, '', 'PENDING', 8260, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (409, '2018-04-18', 'American Smiles', 'JB-18042018/369', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post,Bangalore', '', 0, '29ABHSM0708R1ZP', '1', '[\"Website\"]', '[\"998314\"]', '[\"12500\"]', '9%', '18%', 0, 'American Smiles', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post,Bangalore', '9%', 1125, 1125, 12500, 14750, 'Twelve Rupees Only', 0, '', 'CLEARED', 14750, 'No difference ', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-29', 'ACTIVE'), (410, '2018-04-18', 'Anamiivaa', 'JB-18042018/370', '#707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout,Bangalore', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"11210\"]', '8', '', 0, '', '', '8', 925, 0, 11210, 11210, 'Eleven thousand two hundred and ten rupees only', 0, '', 'CLEARED', 11210, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (411, '2018-04-06', 'K P Interiors', 'Cash', 'Bangalore', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"12844\"]', '9%', '', 0, '', '', '9%', 1155, 0, 14000, 14000, 'Fourteen thousand rupees only', 0, '', 'CLEARED', 14000, 'Paid in other invoice', 0, '', 'CLOSED', 'Cash', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (412, '2018-04-19', 'ORA Dental Care', 'JB-19042018/371', 'Mysore', '', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 762, 0, 0, 4237, '', 0, '', 'CLEARED', 4237, 'no difference', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (413, '2018-04-19', 'Aruna Cadd printers', 'JB-19042018/372', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road, Bangalore', '', 0, '29ABLFA0922B1ZU', '1', '[\"Website\"]', '[\"998314\"]', '[\"7203.39\"]', '9%', '18%', 0, 'Aruna Cadd printers', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road, Bangalore', '9%', 648, 648, 7203, 8500, 'Eight thousand five hundred Rupees Only', 0, '', 'CLEARED', 8500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (414, '2018-04-21', 'Manukula Charitable and Educational Trust', 'JB-21042018/373', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore', '', 0, 'Cash', '1', '[\"Website\"]', '[\"998314\"]', '[\"4237\"]', '10', '', 0, '', '', '10', 412, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (415, '2018-04-24', 'Elite Residencies', 'JB-24042018/374', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70', '', 0, 'Cash', '1', '[\"Website\"]', '[\"998314\"]', '[\"10169\"]', '10', '', 0, '', '', '10', 990, 0, 12000, 12000, 'Twelve thousand rupees only', 0, '', 'CLEARED', 12000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (416, '0000-00-00', 'Pri co working hub', 'Cash', '#883, 2nd floor, \'Chinmayee Arcade\' 10th Cross, opp to big bazaar, RBI Layout, JP Nagar 7th Phase, Bengaluru', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"4587\"]', '9', '', 0, '', '', '9', 412, 0, 5000, 5000, 'Five thousand rupees only', 0, '', 'CLEARED', 5000, 'No Difference', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (417, '2018-04-26', 'Redstone Retreat', 'JB-26042018/375', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"8474\"]', '10', '', 0, '', '', '10', 825, 0, 10000, 10000, 'Ten thousand rupees only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (418, '2018-04-30', 'Kids Zone', 'JB-30042018/376', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West,Bangalore', '', 0, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5084\"]', '10', '', 0, '', '', '10', 495, 0, 6000, 6000, 'Six thousand rupees only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (419, '2018-04-30', 'Moment Design and Detailing', 'JB-30042018/377', '#3, 1ST CROSS ,MARANNA LAYOUT,DODDABIDRAKALLU , BANGALORE-560072', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"2118\"]', '10', '', 0, '', '', '10', 206, 0, 2500, 2500, 'Two thousand five hundred rupees only', 0, '', 'CLEARED', 2500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (420, '2018-05-02', 'Yaskawa', 'JB-02052018/378', 'Bangalore', '', 0, '29AAACY4408P1ZR', '', '[\"\"]', '[\"\"]', '[\"23600\"]', '', '', 0, '', '', '', 3600, 0, 0, 20000, '', 0, '', 'CLEARED', 20000, 'no differnce', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (421, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Bangalore', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"6000\"]', '', '', 0, '', '', '', 915, 0, 0, 5084, '', 0, '', 'PENDING', 5084, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (422, '2018-05-03', 'Sterling events', 'JB-03052018/380', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', '', 0, '29CKHPP9108B1Z1', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Sterling events', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', '9%', 450, 450, 5000, 5900, 'Five Thousand nine hundred Rupees Only', 0, '', 'CLEARED', 5900, 'no difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (423, '2018-05-15', 'Manukula Charitable and Educational Trust', 'Cash 15 may 2018', 'Bangalore', '', 0, 'Cash', '1', '[\"website development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 0, 0, 0, 5000, '', 0, '', 'CLEARED', 5000, 'Paid in other invoice', 0, '', 'CLOSED', 'Cash', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (424, '2018-05-18', 'Anamiivaa', 'JB-18052018/384', 'Bangalore', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"9500\"]', '9%', '', 0, '', '', '9%', 855, 855, 9500, 11210, 'Eleven Thousand Two Hundred Ten Rupees Only', 0, '', 'CLEARED', 11210, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (425, '2018-05-18', 'Krishnapriya Handlooms', 'JB-18052018/385', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069 Bangalore Karnataka', '', 294, 'AA290117035986S', '1', '[\"Ecommerce application\"]', '[\"998314\"]', '[\"7029\"]', '9%', '18%', 0, 'Krishnapriya Handlooms:294', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069 Bangalore Karnataka', '9%', 633, 633, 7029, 8295, 'Eight Thousand Two Hundred and Ninety Five Rupees Only', 0, '', 'CLEARED', 8295, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-03-27', 'ACTIVE'), (426, '2018-05-14', 'Truecon Enterprises', 'JB-14052018/386', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '', 0, '29CKHPP9108B1Z1', '1', '[\"Website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '9%', 900, 900, 10000, 11800, 'Eleven thousand eight hundred Rupees Only', 0, '', 'CLEARED', 11800, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-01', 'ACTIVE'), (427, '2018-05-22', 'VidyaJyothi Foundation', 'JB-22052018/387', 'Bangalore', '', 0, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"8474\"]', '9%', '', 0, '', '', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2018-08-17', 'ACTIVE'), (428, '2018-05-25', 'xyramsoft', 'JB-25052018/388', 'Bangalore', '', 0, '', '1', '[\"website application\"]', '[\"998314\"]', '[\"42372\"]', '9%', '', 0, '', '', '9%', 3814, 3814, 42372, 50000, 'Fifty Thousand Rupees Only', 0, '', 'CLEARED', 50000, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (429, '2018-05-25', 'Dr Karthik shetty', 'JB-25052018/389', 'Bangalore', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"4720\"]', '', '', 0, '', '', '', 720, 0, 0, 4000, '', 0, '', 'CLEARED', 4000, 'No Difference ', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (430, '2018-05-25', 'Happy Garden', 'JB-25052018/390', 'Mysore', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC\"]', '[\"\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (431, '2018-05-28', 'Creative Networks', 'JB-28052018/391', 'Bangalore', '', 0, '29AAMPE8611P1Z3', '', '[\"\"]', '[\"\"]', '[\"4720\"]', '', '', 0, '', '', '', 720, 0, 0, 4000, '', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (432, '2018-05-31', 'Srihari and associates', 'JB-31052018/392', 'Bangalore', '', 0, 'Nil', '1', '[\"website development\"]', '[\"\"]', '[\"10620\"]', '9%', '', 0, '', '', '9%', 1620, 0, 0, 9000, '', 0, '', 'CLEARED', 9000, 'No Difference', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (433, '2018-05-31', 'Mrigneha Fashion Elegant', 'JB-31052018/393', 'Bangalore', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"3500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (434, '2018-06-01', 'A&M Edu Solution', 'JB-01062018/394', 'Bangalore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7627.12\"]', '9%', '18%', 0, 'A&M Edu Solution', '', '9%', 687, 687, 7627, 9000, 'Seven Thousand Six Hundred and Twenty Seven Rupees Only', 0, '', 'CLEARED', 9000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2019-04-05', 'ACTIVE'), (435, '0000-00-00', 'Roopesh', '', '', '', 0, 'Cash', '', '[\"\"]', '[\"\"]', '[\"7000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (436, '0000-00-00', 'Dr venkatesh', '', '', '', 0, 'Cash', '', '[\"\"]', '[\"\"]', '[\"12500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (437, '2018-06-05', 'xyramsoft', 'JB-05062018/395', '', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"0\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (438, '2018-06-06', 'Dr Hemalatha', 'JB-06062018/396', 'Bangalore', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"11500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'ACTIVE'), (439, '2018-06-06', 'Aruna Cadd printers', 'JB-06062018/397', '', '', 0, '29ABLFA0922B1ZU', '', '[\"\"]', '[\"\"]', '[\"9500\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (440, '2018-06-28', 'AandM', 'JB-28062018/401', '', '', 0, '', '1', '[\"\"]', '[\"\"]', '[\"9350\"]', '9%', '18%', 0, '', '', '9%', 0, 0, 0, 9350, 'Nine Thousand Three Hundred Fifty Rupees Only', 0, '', 'CLEARED', 9350, '', 0, '', 'CLOSED', '', '', 'Ashwini', '7/19/18 12:27', '2019-08-07', 'ACTIVE'), (441, '2018-06-29', 'Corbelo Group', 'JB - 29062018/402', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '', 0, '', '1', '[\"Towards Website Development,8 Email -Id + 5GB storage\"]', '[\"998314\"]', '[\"10500\"]', '9%', '', 0, '', '', '9%', 945, 945, 10500, 12390, 'Twelve Thousand Three Hundred Ninety Rupees Only', 0, '', 'CLEARED', 12390, '', 0, '', 'CLOSED', '', '', 'Admin', '7/19/18 12:27', '2018-08-06', 'ACTIVE'), (442, '0000-00-00', 'JSS', '403', '', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"129000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (443, '2018-07-04', 'Deco-Textil Pvt Ltd', 'JB- 04072018/404', 'Swan House Bangalore Karnataka', '', 0, '', '1', '[\"Towards Hosting charges for 2 application(2 months),SSL certificate for 2 application(1 year),Configuration charges\"]', '[\"998314\"]', '[\"26400\"]', '9%', '', 0, '', '', '9%', 2376, 2376, 26400, 31152, 'Thirty One Thousand One Hundred and Fifty Two Rupees Only', 0, '', 'CLEARED', 31152, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (444, '0000-00-00', 'Hublaunch', 'Cash', '', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"8000\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'CLOSED', 'Cash', '', '', '7/19/18 12:27', '', 'ACTIVE'), (445, '0000-00-00', 'Annamiiva', '405', '', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"0\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', '', '', '', '7/19/18 12:27', '', 'INACTIVE'), (446, '2018-07-18', 'GSS Infrastructure Pvt Ltd', 'JB- 18072018/407', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 0, '', '1', '[\"ERP New Requirement\"]', '[\"998314\"]', '[\"12711\"]', '9%', '', 0, '', '', '9%', 1145, 1145, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (447, '2018-07-20', 'Salemaker', 'JB- 20072018/407', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '', 0, '', '', '9%', 180, 180, 2000, 2360, 'Two Thousand Three Hundred Sixty Rupees Only', 0, '', 'CLEARED', 2360, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (448, '0000-00-00', 'Yashas dental care', 'cash', '', '', 0, '', '', '[\"\"]', '[\"\"]', '[\"0\"]', '', '', 0, '', '', '', 0, 0, 0, 0, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', 'Cash', '', '', '7/19/18 12:27', '', 'INACTIVE'), (449, '2017-05-08', 'Ess and Ess infrastructure pvt ltd', 'JB- 08052017/405', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 0, '', '1', '[\"EMail\"]', '[\"998314\"]', '[\"25423\"]', '9%', '', 0, '', '', '9%', 2289, 2289, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (450, '2018-07-05', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-05072018/409', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, '', '1', '[\"Balance Payment towards website Development\"]', '[\"\"]', '[\"9788\"]', '9%', '', 0, '', '', '9%', 881, 881, 9788, 11550, 'Eleven Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 11550, 'Over credited \r\n', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (451, '2018-07-23', 'Prakruthi Yatri Nivas', 'JB- 23072018/414', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (452, '2018-05-24', 'Pragathi Logistics', 'JB- 24052018/414', '#78F, Hootagalli Industrial Area Opp Rane Madras, Mysore Mysore Karnataka', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3813\"]', '9%', '', 0, '', '', '9%', 344, 344, 3813, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (453, '2018-07-19', 'aswini agrotech', 'JB-19072018/413', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/19/18 12:27', '2018-11-21', 'ACTIVE'), (454, '2018-07-09', 'Namma Foundation', 'JB-09072018/413', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8474\"]', '9%', '', 0, '', '', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (455, '2018-07-13', 'RP Printers', '13072018/414', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore Bangalore Karnataka', '', 482, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 305, 305, 3389, 3999, 'Three Thousand Nine Hundred and Ninety Nine Rupees Only', 0, '', 'PENDING', 3999, '', 0, '', 'WAITING', '', '', 'Admin', '7/19/18 12:27', '2018-08-09', 'INACTIVE'), (456, '2018-07-16', 'Aditi Consultancy', '16072018/415', ' Bangalore ', '', 63, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', '', '7/19/18 12:27', '2018-07-31', 'ACTIVE'), (457, '2016-06-01', 'Dr Sunil', 'JB-010616/043', 'Arkis Arcade, Tilak Nagar, Shimoga', '', 0, '', '1', '[\"Website Development Service Charge\"]', '[\"\"]', '[\"21186\"]', '9', '', 0, '', '', '9', 1907, 0, 25000, 25000, 'Twenty Five Thousand', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', '', '', '7/19/18 14:07', '', 'ACTIVE'), (458, '2018-07-19', 'Elite Spa', 'JB-19072018/458', 'BTM Layout BTM Layout BTM Layout', '', 478, '', '1', '[\"Logo Design 2 Design Concepts\"]', '[\"998314\"]', '[\"1483\"]', '9%', '', 0, '', '', '9%', 133, 0, 1749, 1749, 'One Thousand Seven Hundred and Forty Nine', 0, '', 'CLEARED', 1749, '', 0, '', 'CLOSED', '', '', '', '7/19/18 14:21', '', 'ACTIVE'), (459, '2016-12-06', 'Shivkam Services', 'JB-061216/089', 'SHIVKAM ServicesJP Nagar 5th Phase Bangalore-560078 Bengaluru Karnataka', '', 0, '', '1', '[\"Pending Amount for Application development\"]', '[\"\"]', '[\"21739\"]', '15', '', 0, '', '', '0', 3261, 0, 25000, 25000, 'Twenty Five Thousand Only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', '', '', '7/20/18 8:37', '', 'ACTIVE'), (460, '2016-12-02', 'Jude', 'JB-021216/090', 'Bengaluru', '', 433, '', '1', '[\"Broucher design\"]', '[\"\"]', '[\"3000\"]', '15', '', 0, '', '', '0', 450, 0, 3450, 3450, 'Three Thousand Four Hundred and fifty Only', 0, '', 'CLEARED', 3450, '', 0, '', 'CLOSED', '', '', '', '7/20/18 8:51', '', 'ACTIVE'), (461, '2016-12-03', 'Fly Fast Express', 'JB-031216/091', '14/4 Mission Road, S.R nagar Banglore 560027', '', 0, '29AHEPA8435E1ZI', '1', '[\"Email Template & Website\"]', '[\"998314\"]', '[\"7552.54\"]', '9%', '18%', 0, 'Fly Fast Express', '14/4 Mission Road, S.R nagar Banglore 560027', '9%', 680, 680, 7553, 8912, 'Eight thousand nine hundred and twelve Rupees Only', 0, '', 'CLEARED', 8912, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/20/18 8:54', '2019-04-05', 'ACTIVE'), (462, '2016-12-07', 'Service Hub', 'JB-071216/092', 'Bengaluru', '', 435, '', '1', '[\"Web and mobile applications\"]', '[\"\"]', '[\"125000\"]', '0', '', 0, '', '', '0', 0, 0, 125000, 125000, 'one Lakh twenty five thousand only', 0, '', 'CLEARED', 125000, 'Others', 0, 'amount difference a lot', 'CLOSED', '', '', '', '7/20/18 8:56', '', 'ACTIVE'), (463, '2016-12-08', 'Surya Woods', 'JB-081216/093', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', '', 0, '29ABOPE5514E1ZQ', '1', '[\"Website Development and one email Id\"]', '[\"998314\"]', '[\"13644.07\"]', '9%', '18%', 0, 'Surya Woods', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', '9%', 1228, 1228, 13644, 16100, 'Sixteen thousand one hundred Rupees Only', 0, '', 'CLEARED', 16100, 'Others', 0, 'amount difference a lot ', 'CLOSED', '', '', 'Shri priya ', '7/20/18 8:57', '2019-04-05', 'ACTIVE'), (464, '2016-09-20', 'Intellivisp', 'JB-200916/094', 'Bengaluru', '', 0, '', '1', '[\"Development charges\"]', '[\"998314\"]', '[\"6864\"]', '9%', '', 0, '', '', '9%', 618, 618, 6864, 8100, 'Eight Thousand One Hundred Rupees Only', 0, '', 'CLEARED', 8100, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '7/20/18 8:58', '2018-08-25', 'ACTIVE'), (465, '2016-12-24', 'SS Technologies', 'JB-241216/101', 'Bengaluru', '', 0, '', '1', '[\"Urbille sprint 2\"]', '[\"\"]', '[\"65217\"]', '15', '', 0, '', '', '0', 9782, 0, 75000, 75000, 'Seventy five thousand only', 0, '', 'CLEARED', 75000, 'Others', 0, 'amount difference a lot ', 'CLOSED', '', '', '', '7/20/18 9:29', '', 'ACTIVE'), (466, '2017-01-09', 'Ginserv', 'JB-090117/107', 'Bengaluru', '', 0, '', '1', '[\"Broucher Design\"]', '[\"\"]', '[\"2500\"]', '15', '', 0, '', '', '0', 375, 0, 2875, 2875, 'Two thousand Eight hundred and fifty only', 0, '', 'CLEARED', 2875, '', 0, '', 'CLOSED', '', '', '', '7/20/18 10:45', '', 'ACTIVE'), (467, '2017-01-09', 'Dr C Jagadeesh Dental Clinic', 'JB-090117/108', '687, 9th A Main Road, Near Chinmaya Mission Hospital, 1st Stage, Defence Colony, Indiranagar Bengaluru Karnataka', '', 27, '', '1', '[\"AMC for Website\"]', '[\"\"]', '[\"6000\"]', '9%', '', 0, '', '', '9%', 900, 0, 6900, 6900, 'six thousand nine hundred only .', 0, '', 'CLEARED', 6900, 'Others', 0, 'amount differ', 'CLOSED', '', '', '', '7/20/18 10:48', '', 'ACTIVE'), (468, '2018-05-02', 'Yaskawa India Pvt Ltd', 'JB-02052018/378', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '', '1', '[\"AMC For ERP\"]', '[\"998314\"]', '[\"20000\"]', '9%', '', 0, '', '', '9%', 1800, 1800, 20000, 23600, 'Twenty Three Thousand Six Hundred Rupees Only', 2360, '', 'CLEARED', 23600, 'No Difference', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-25 13:26:39', '2018-08-17', 'ACTIVE'), (472, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6900, '', 0, '', 'CLOSED', '', '', 'Ajay', '2018-07-26 06:25:55', '2019-03-21', 'ACTIVE'), (473, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'PENDING', 6000, '', 0, '', 'WAITING', '', '', '', '2018-07-26 06:26:02', '', 'INACTIVE'), (474, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 06:26:07', '2018-09-01', 'INACTIVE'), (475, '2018-03-05', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'PENDING', 6000, '', 0, '', 'WAITING', '', '', '', '2018-07-26 06:26:07', '', 'INACTIVE'), (476, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'PENDING', 6000, '', 0, '', 'WAITING', '', '', '', '2018-07-26 06:26:57', '', 'INACTIVE'), (477, '2018-05-03', 'Salemaker', 'JB-03052018/379', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 06:27:12', '', 'INACTIVE'), (478, '2017-04-10', 'Laveera Technologies Pvt Ltd', 'JB-10042017/138', 'Bangalore', '', 0, '', '1', '[\" website\"]', '[\"998314\"]', '[\"5380\"]', '9%', '', 0, '', '', '9%', 484, 0, 5865, 5865, 'Five thousand eight hundred and sixty five rupees only', 0, '', 'PENDING', 5865, '', 0, '', 'WAITING', '', '', '', '2018-07-26 07:16:20', '', 'INACTIVE'), (479, '2017-04-10', 'Laveera Technologies Pvt Ltd', 'JB-10042017/138', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', '', 0, '29AADCL2628R1ZV', '1', '[\" website\"]', '[\"998314\"]', '[\"4970.34\"]', '9%', '18%', 0, 'Laveera Technologies Pvt Ltd', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', '9%', 447, 447, 4970, 5865, 'Five thousand eight hundred and sixty five Rupees Only', 0, '', 'CLEARED', 5865, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 07:16:20', '2019-04-05', 'ACTIVE'), (480, '2018-05-03', 'Sterling events', 'JB-03052018/380', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029 Bangalore Karnataka', '', 0, '29CKHPP9108B1Z1', '1', '[\"AMC\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Sterling events', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand nine hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 07:47:08', '2019-04-01', 'ACTIVE'), (481, '2018-05-08', 'JayMining and waterwell solutions', 'JB-08052018/381', ' Bangalore Karnataka', '', 324, '29AAMFJ3867C1Z2', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6779\"]', '9%', '', 0, '', '', '9%', 610.5, 0, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, 'No Difference', 0, '', 'CLOSED', '', '', '', '2018-07-26 07:51:51', '', 'ACTIVE'), (482, '2018-05-08', 'Salemaker', 'JB-08052018/382', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, '', '1', '[\"New add on Website\"]', '[\"998314\"]', '[\"1694\"]', '9%', '', 0, '', '', '9%', 153, 0, 1694, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 07:54:09', '', 'ACTIVE'), (483, '2018-05-09', 'Yaskawa India Pvt Ltd', 'JB-09052018/383', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"CRM Development\"]', '[\"998314\"]', '[\"125000\"]', '9%', '', 0, '', '', '9%', 11250, 0, 125000, 147500, 'One Lakhs Forty Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 147500, 'no difference', 0, '', 'CLOSED', '', '', 'Admin', '2018-07-26 07:55:18', '2018-08-06', 'ACTIVE'), (484, '2019-04-05', 'Pri co working hub', 'Cash', '#883, 2nd floor, \'Chinmayee Arcade\' 10th Cross, opp to big bazaar, RBI Layout, JP Nagar 7th Phase, Bengaluru Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, '', '', '9%', 382, 0, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '2018-07-26 07:56:43', '2019-04-05', 'ACTIVE'), (485, '2019-04-05', 'Manukula Charitable and Educational Trust', 'Cash', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, '', '', '9%', 382, 0, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '2018-07-26 07:57:47', '2019-04-05', 'ACTIVE'), (486, '2018-05-18', 'Anamiivaa', 'JB-18052018/384', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '', 311, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"9500\"]', '9%', '', 0, '', '', '9%', 855, 0, 9500, 11210, 'Eleven Thousand Two Hundred Ten Rupees Only', 0, '', 'CLEARED', 11210, 'No differnece. ', 0, '', 'CLOSED', '', '', '', '2018-07-26 07:59:04', '', 'INACTIVE'), (487, '2018-05-18', 'Krishnapriya Handlooms', 'JB-18052018/385', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069 Bangalore Karnataka', '', 294, 'AA290117035986S', '1', '[\"E - commerce Application\"]', '[\"998314\"]', '[\"7029\"]', '9%', '', 0, '', '', '9%', 633, 0, 7029, 8295, 'Eight Thousand Two Hundred and Ninety Five Rupees Only', 0, '', 'CLEARED', 8295, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:00:12', '', 'INACTIVE'), (488, '2018-05-14', 'Truecon Enterprises', 'JB-14052018/386', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka', '', 0, '29CKHPP9108B1Z1', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, 'round figured ', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 08:01:10', '2019-04-01', 'ACTIVE'), (489, '2018-05-22', 'VidyaJyothi Foundation', 'JB-22052018/387', '#20, 1st Cross, KEB Road, Anjananagara, Magadi Main Road, Bangaluru -91 Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, '', '', '9%', 382, 0, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 08:02:26', '2019-04-05', 'ACTIVE'), (490, '2018-05-24', 'xyramsoft', 'JB-24052018/388', ' Bangalore', '', 342, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"42372\"]', '9%', '', 0, '', '', '9%', 3814, 0, 42372, 50000, 'Fifty thousand Rupees Only', 0, '', 'CLEARED', 50000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:03:55', '', 'INACTIVE'), (491, '2018-07-26', 'Dr karthik Shetty', '', ' Mangalore ', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 306, 0, 3389, 4000, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:06:45', '2018-07-26', 'INACTIVE'), (492, '2018-05-25', 'Happy Garden', 'JB-25052018/390', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Happy Garden', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, 'Completed the payment no difference ', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 08:22:20', '2019-04-01', 'ACTIVE'), (493, '2018-05-28', 'Creative Networks', 'JB-28052018/391', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '', 89, '29AAMPE8611P1Z3', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 0, 4000, 4720, 'Four Thousand Seven Hundred and Twenty Rupees Only', 0, '', 'CLEARED', 4720, 'No Difference', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:23:43', '', 'ACTIVE'), (494, '2018-05-31', 'Shrihari and associates', 'JB-31052018/392', 'No. 91, 3rd Main, Rajathadri Layout, Kothanur Dinne, JP Nagar 8th Phase, Bangalore Bangalore Karnataka', '', 337, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"9000\"]', '9%', '', 0, '', '', '9%', 810, 0, 9000, 10620, 'Ten Thousand Six Hundred Twenty Rupees Only', 0, '', 'CLEARED', 10620, 'Paid in other invoice', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:24:59', '', 'ACTIVE'), (495, '2018-05-31', 'Mrigneha Fashion Elegant', 'JB-31052018/393', ' Bangalore ', '', 338, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2966\"]', '9%', '', 0, '', '', '9%', 267, 0, 2966, 3500, ' Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:26:14', '', 'ACTIVE'), (496, '2018-06-01', 'A&M Edu Solution', 'JB-01062018/394', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '', 339, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7627\"]', '9%', '', 0, '', '', '9%', 686.5, 0, 7627, 9000, ' Nine Thousand Rupees Only', 0, '', 'CLEARED', 9000, 'No Difference', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:27:31', '', 'ACTIVE'), (497, '0000-00-00', 'Roopesh', 'Cash', ' Bangalore', '', 340, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '', 0, '', '', '9%', 534, 0, 5932, 7000, ' Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'CLOSED', 'Cash', '', '', '2018-07-26 08:29:48', '', 'ACTIVE'), (498, '2019-04-05', 'Dr venkatesh', 'Cash', '', '', 0, '', '1', '[\"Dentics and Website Development\"]', '[\"998314\"]', '[\"10593\"]', '9%', '18%', 0, '', '', '9%', 954, 0, 10593, 12500, 'Twelve Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 12500, '', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '2018-07-26 08:31:36', '2019-04-05', 'ACTIVE'), (499, '2018-06-06', 'Dr Hemalatha', 'JB-06062018/396', ' ', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"9745\"]', '9%', '18%', 0, '', '', '9%', 878, 0, 9745, 11500, ' Eleven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 11500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 08:33:55', '2019-04-05', 'ACTIVE'), (500, '2018-07-26', 'Aruna Cadd printers', 'JB-26072018/500', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '', 0, '29ABLFA0922B1ZU', '1', '[\"Website Develoment\"]', '[\"998314\"]', '[\"7204\"]', '9%', '', 0, '', '', '9%', 648, 648, 7204, 8500, 'Eight Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 8500, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 08:35:03', '2018-07-31', 'ACTIVE'), (501, '2018-06-28', 'A&M Edu Solution', 'JB-28062018/401', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '', 339, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7923\"]', '9%', '', 0, '', '', '9%', 713.5, 0, 7923, 9350, 'Nine Thousand Three Hundred and Fifty Rupees Only', 0, '', 'PENDING', 9350, '', 0, '', 'WAITING', '', '', '', '2018-07-26 08:36:27', '', 'INACTIVE'), (502, '2018-07-26', 'Aruna Cadd printers', 'JB-26072018/502', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '', 0, '29ABLFA0922B1ZU', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8050.85\"]', '9%', '18%', 0, 'Aruna Cadd printers', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '9%', 725, 725, 8051, 9500, 'Nine thousand five hundred Rupees Only', 0, '', 'CLEARED', 9500, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 10:13:45', '2019-04-05', 'ACTIVE'), (503, '2018-06-28', 'A&M Edu Solution', 'JB-28062018/401', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '', 0, 'JB-28062018/401', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7923\"]', '9%', '18%', 0, '', '', '9%', 714, 0, 7923, 9350, 'Nine Thousand Three Hundred and Fifty Rupees Only', 0, '', 'CLEARED', 9350, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 10:15:42', '2019-04-05', 'ACTIVE'), (504, '2018-06-28', 'A&M Edu Solution', 'JB-28062018/401', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '', 339, 'JB-28062018/401', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7923\"]', '9%', '', 0, '', '', '9%', 713.5, 0, 7923, 9350, 'Nine Thousand Three Hundred and Fifty Rupees Only', 0, '', 'PENDING', 9350, '', 0, '', 'WAITING', '', '', '', '2018-07-26 10:16:02', '', 'INACTIVE'), (505, '2018-07-26', 'Corbelo Group', 'JB-26072018/505', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '', 256, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10500\"]', '9%', '', 0, '', '', '9%', 945, 0, 10500, 12390, 'Twelve Thousand Three Hundred and Ninety Rupees Only', 0, '', 'CLEARED', 12390, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 10:17:20', '', 'ACTIVE'), (506, '2018-07-10', 'JSS', 'JB-10072018/403', ' Mysore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"100000\"]', '9%', '', 0, '', '', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'CLEARED', 118000, 'No Difference', 0, '', 'EXPIRED', '', '', 'Admin', '2018-07-26 10:18:49', '2018-08-06', 'ACTIVE'), (507, '2019-04-05', 'Hublaunch', 'Cash', '#332, Ground Floor, 14th Main Road, Behind Cafe Coffee Day, J.P.Nagar, 5th Phase, Bangalore 560 078 Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6779\"]', '9%', '18%', 0, '', '', '9%', 611, 0, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', 'Cash', '', 'Shri priya ', '2018-07-26 10:39:54', '2019-04-05', 'ACTIVE'), (508, '2018-07-20', 'Salemaker', 'JB- 20072018/417', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, '', '1', '[\"Website New Requirement\"]', '[\"998314\"]', '[\"2000\"]', '9%', '', 0, '', '', '9%', 180, 0, 2000, 2360, 'Two Thousand Three Hundred Sixty Rupees Only', 0, '', 'CLEARED', 2360, 'No Difference', 0, '', 'CLOSED', '', '', '', '2018-07-26 10:42:20', '', 'ACTIVE'), (509, '2018-07-12', 'Ess and Ess infrastructure pvt ltd', 'JB-12072018/408', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 297, '', '1', '[\"E mail AMC\"]', '[\"998314\"]', '[\"25423\"]', '9%', '', 0, '', '', '9%', 2288.5, 0, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 10:44:14', '', 'ACTIVE'), (510, '2018-07-05', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-05072018/409', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10398\"]', '9%', '', 0, '', '', '9%', 936, 0, 10398, 12270, 'Twelve Thousand Two Hundred and Seventy Rupees Only', 0, '', 'PENDING', 12270, '', 0, '', 'WAITING', '', '', '', '2018-07-26 10:46:26', '', 'INACTIVE'), (511, '2018-07-23', 'Prakruthi Yatri Nivas', 'JB- 23072018/418', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 125, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 381.5, 0, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 10:48:09', '', 'ACTIVE'), (512, '2018-07-19', 'aswini agrotech', 'JB-19072018/415', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'CLOSED', '', '', 'Shri priya ', '2018-07-26 10:49:38', '2019-03-29', 'ACTIVE'), (513, '2018-07-12', 'RPPrinters', 'JB-12072018/414', 'Bangalore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 305.5, 0, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', '', '', '2018-07-26 10:51:28', '', 'INACTIVE'), (514, '2018-07-22', 'Proveraxius ', 'JB-22072018/419', 'Bangalore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5720\"]', '9%', '', 0, '', '', '9%', 515, 0, 5720, 6750, 'Six Thousand Seven Hundred and Fifty Rupees Only', 0, '', 'CLEARED', 6750, '', 0, '', 'CLOSED', '', '', 'Admin', '2018-07-26 10:53:20', '2018-08-06', 'ACTIVE'), (515, '2017-11-02', 'Print Cube Technologies Pvt Ltd', 'JB-02112017/264', ' Bangalore ', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10169\"]', '9%', '', 0, '', '', '9%', 916, 916, 10169, 12000, 'Twelve Thousand Rupees Only', 0, '', 'CLEARED', 12000, '', 0, '', 'CLOSED', '', '', 'Admin', '2018-07-27 11:23:57', '2018-08-06', 'ACTIVE'), (516, '2018-07-30', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-30072018/516', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 0, '', '1', '[\"Hosting for one year unlimited bandwidth (till 25\\/7\\/2018)\"]', '[\"\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, 'Adjusted to old payments', 0, '', 'CLOSED', '', '', '', '2018-07-30 08:00:05', '2018-07-31', 'ACTIVE'), (517, '2018-07-30', 'John D Leo Engineering Inc', 'JB-30072018/430', ' Bangalore ', '', 100, '', '1', '[\"One Year Free Bandwidth hosting from 30-07-2018 to 30-07-2019\"]', '[\"998314\"]', '[\"3000\"]', '9%', '', 0, '', '', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'CLOSED', '', '', '', '2018-07-30 14:02:49', '', 'ACTIVE'), (518, '2018-07-31', 'JayMining and waterwell solutions', 'JB-31072018/518', ' Bangalore Karnataka', '', 324, '', '1', '[\"Balance payment for website\"]', '[\"998314\"]', '[\"8000\"]', '9%', '', 0, '', '', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'CLOSED', '', '', '', '2018-07-31 07:29:30', '', 'ACTIVE'), (519, '2018-07-31', 'GSS Infrastructure Pvt Ltd', 'JB-31072018/519', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"ERP Updation for Civil Department final payment \"]', '[\"\"]', '[\"16652\"]', '9%', '', 0, '', '', '9%', 1499, 1499, 16652, 19650, 'Nineteen Thousand Six Hundred Fifty Rupees Only', 0, '', 'CLEARED', 19650, '', 0, '', 'CLOSED', '', '', '', '2018-07-31 11:20:57', '', 'ACTIVE'), (520, '2018-07-19', 'Global Elite Spa', 'JB-19072018/458', 'BTM Layout Bangalore Karnataka', '', 0, '', '1', '[\"Logo Design\"]', '[\"998314\"]', '[\"1483\"]', '9%', '18%', 0, '', '', '9%', 134, 134, 1483, 1750, 'One Thousand Seven Hundred Fifty Rupees Only', 0, '', 'CLEARED', 1750, '', 0, '', 'CLOSED', 'Normal', 'Admin', 'Admin', '2018-08-06 06:09:52', '2019-09-03', 'ACTIVE'), (521, '2017-04-03', 'Dr Snehalatha', 'JB-03042017/135', '', '', 0, '', '1', '[\"Static Website\\r\\n\"]', '[\"998314\"]', '[\"10720\"]', '9%', '', 0, '', '', '9%', 965, 965, 10720, 12650, 'Twelve Thousand Six Hundred Fifty Rupees Only', 0, '', 'CLEARED', 12650, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 06:18:53', '2018-08-25', 'ACTIVE'), (522, '2018-07-12', 'Swansilk Pvt Ltd', 'JB-12072018/404/a', ' Bangalore ', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"13200\"]', '9%', '', 0, '', '', '9%', 1188, 1188, 13200, 15576, 'Fifteen Thousand Five Hundred and Seventy Six Rupees Only', 0, '', 'CLEARED', 15576, '', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-06 06:19:13', '2018-08-06', 'ACTIVE'), (523, '2017-04-28', 'Sri dattanjaeya astro centre', 'JB-06082018/523', '', '', 0, '', '2', '[\"Website development\"]', '[\"998314\"]', '[\"11864\"]', '9%', '', 0, '', '', '9%', 1068, 1068, 11864, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 06:25:46', '', 'ACTIVE'), (524, '2018-04-08', 'Sri dattanjaeya astro centre', 'JB-08042017/136', '', '', 0, '', '1', '[\"PPC\\r\\n\"]', '[\"\"]', '[\"2436\"]', '9%', '', 0, '', '', '9%', 219, 220, 2436, 2875, 'Two Thousand Eight Hundred and Seventy Five Rupees Only', 0, '', 'CLEARED', 2875, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 06:41:46', '', 'ACTIVE'), (525, '2018-07-23', 'JSS Hospital', 'JB-23072018/420', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '', 487, '', '1', '[\"KRSSDI \"]', '[\"998314\"]', '[\"25423\"]', '9%', '', 0, '', '', '9%', 2288, 2289, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 06:53:07', '', 'ACTIVE'), (526, '2017-12-04', 'Gladsome capital ', 'JB-04122017/525', '', '', 0, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"10720\"]', '9%', '', 0, '', '', '9%', 965, 965, 10720, 12650, 'Twelve Thousand Six Hundred Fifty Rupees Only', 0, '', 'CLEARED', 12650, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 06:54:58', '2018-08-25', 'ACTIVE'), (527, '2017-04-27', 'Moments modelling and design', 'JB-27042017/527', '', '', 0, '', '1', '[\"Website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '', 0, '', '', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 07:56:02', '2018-08-25', 'ACTIVE'), (528, '2018-04-24', 'Swansilk', 'JB-24042017/150', '', '', 0, '', '1', '[\"application\"]', '[\"998314\"]', '[\"36546\"]', '9%', '', 0, '', '', '9%', 3289, 3289, 36546, 43125, 'Forty Three Thousand One Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 43125, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 08:16:18', '', 'ACTIVE'), (529, '2017-05-03', 'Mannan Constructions', 'JB-03052017/151', '', '', 0, '', '1', '[\"Website development\\r\\n\"]', '[\"998314\"]', '[\"20000\"]', '9%', '', 0, '', '', '9%', 0, 0, 20000, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, 'Others', 0, 'textrsaer', 'CLOSED', '', 'Admin', 'Admin', '2018-08-06 08:20:25', '2018-08-07', 'ACTIVE'), (530, '2017-05-05', 'Swan Silk', 'JB-05052017/153', '', '', 0, '', '1', '[\"application\"]', '[\"998314\"]', '[\"43125\"]', '9%', '', 0, '', '', '9%', 0, 0, 43125, 43125, 'Forty Three Thousand One Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 43125, '', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-06 08:36:02', '2018-08-17', 'ACTIVE'), (531, '2017-05-06', 'Hitec Tyres', 'JB-06052017/157', '', '', 0, '', '1', '[\"application\"]', '[\"998314\"]', '[\"7754\"]', '9%', '', 0, '', '', '9%', 698, 698, 7754, 9150, 'Nine Thousand One Hundred Fifty Rupees Only', 0, '', 'CLEARED', 9150, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:02:09', '2018-08-25', 'ACTIVE'), (532, '2018-07-23', 'Prakruthi Yatri Nivas', 'JB-23072018/532', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 125, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, '', '', '9%', 382, 381, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 10:16:29', '', 'ACTIVE'), (533, '2018-07-23', 'Prakruthi Yatri Nivas', 'JB-23072018/418', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"8474\"]', '9%', '18%', 0, '', '', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', 'Normal', 'Admin', 'Admin', '2018-08-06 10:19:14', '2019-09-03', 'ACTIVE'), (534, '2018-07-20', 'Salemaker', 'JB-20072018/534', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '', 0, '', '', '9%', 180, 180, 2000, 2360, 'Two Thousand Three Hundred Sixty Rupees Only', 0, '', 'CLEARED', 2360, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:23:30', '2018-08-23', 'ACTIVE'), (535, '2018-07-16', 'Fly Fast Express', 'JB-16072018/416', '14/4 Mission Road, S.R nagar Banglore 560027 Bangalore Karnataka', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3389\"]', '9%', '18%', 0, '', '', '9%', 306, 305, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, 'No Difference', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:27:29', '2018-11-13', 'ACTIVE'), (536, '2017-05-22', 'Eva Suite', 'JB-22052017/165', '', '', 0, '', '1', '[\" Static website\\r\\n\"]', '[\"998314\"]', '[\"7309\"]', '9%', '', 0, '', '', '9%', 658, 658, 7309, 8625, 'Eight Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 8625, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:32:12', '2018-08-25', 'ACTIVE'), (537, '2018-08-06', ' Static website', 'JB-06082018/537', '', '', 0, '', '1', '[\" Static website\\r\\n\"]', '[\"\"]', '[\"7309\"]', '9%', '', 0, '', '', '9%', 658, 658, 7309, 8625, 'Eight Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 8625, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 10:32:59', '', 'INACTIVE'), (538, '2018-07-12', 'RP Printers', 'JB-12072018/414', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore Bangalore Karnataka', '', 482, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 305, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 10:33:45', '', 'ACTIVE'), (539, '2018-07-12', 'Deco-Textil Pvt Ltd', 'JB-12072018/404', 'Swan House Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"13200\"]', '9%', '', 0, '', '', '9%', 1188, 1188, 13200, 15576, 'Fifteen Thousand Five Hundred and Seventy Six Rupees Only', 0, '', 'CLEARED', 15576, 'No Difference', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-06 10:38:54', '2018-08-06', 'ACTIVE'), (540, '2018-07-09', 'A&M Edu Solution', 'JB-09072018/540', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"7923\"]', '9%', '', 0, '', '', '9%', 713, 714, 7923, 9350, 'Nine Thousand Three Hundred Fifty Rupees Only', 0, '', 'CLEARED', 9350, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:44:38', '2018-08-22', 'ACTIVE'), (541, '2018-07-06', 'Hublaunch', 'cash', '#332, Ground Floor, 14th Main Road, Behind Cafe Coffee Day, J.P.Nagar, 5th Phase, Bangalore 560 078 Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"6779\"]', '9%', '', 0, '', '', '9%', 610, 611, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', 'Cash', 'Admin', 'Admin', '2018-08-06 10:46:10', '2018-08-06', 'ACTIVE'), (542, '2018-07-12', 'Swansilk Pvt Ltd', 'JB-12072018/404/b', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"website development\"]', '[\"998314\"]', '[\"13200\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 1188, 1188, 13200, 15576, 'Thirteen Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 15576, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 10:50:18', '2019-04-01', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (543, '2018-05-28', 'Creative Networks', 'JB-28052018/391', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '', 89, '', '1', '[\"AMC\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 11:14:47', '', 'ACTIVE'), (544, '2018-07-12', 'Salemaker ', 'JB-12072018/544', '', '', 0, '', '1', '[\"Static website\\r\\n\"]', '[\"998314\"]', '[\"14406\"]', '9%', '', 0, '', '', '9%', 1297, 1297, 14406, 17000, 'Seventeen Thousand Rupees Only', 0, '', 'CLEARED', 17000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 11:35:02', '2018-08-23', 'ACTIVE'), (545, '2018-04-25', 'Pri co working hub', 'cash', '#883, 2nd floor, \'Chinmayee Arcade\' 10th Cross, opp to big bazaar, RBI Layout, JP Nagar 7th Phase, Bengaluru Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 0, 0, 5000, 0, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', 'Admin', 'Shri priya ', '2018-08-06 11:59:46', '2018-08-25', 'ACTIVE'), (546, '2018-05-08', 'Salemaker', 'JB-08052018/382', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"1694\"]', '9%', '', 0, '', '', '9%', 153, 153, 1694, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 12:07:38', '', 'ACTIVE'), (547, '2018-05-08', 'JayMining and waterwell solutions', 'JB-08052018/381', ' Bangalore Karnataka', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"6779\"]', '9%', '18%', 0, '', '', '9%', 611, 611, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 12:13:16', '2019-04-05', 'ACTIVE'), (548, '2018-04-10', 'K P Interiors', 'cash', ' Bangalore ', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, '', '', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'CLOSED', 'Cash', 'Admin', 'Admin', '2018-08-06 12:54:09', '2018-08-06', 'ACTIVE'), (549, '2018-04-09', 'Ess and Ess infrastructure pvt ltd', 'JB-09042018/363', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 297, '', '1', '[\"ERP development\"]', '[\"998314\"]', '[\"150000\"]', '9%', '', 0, '', '', '9%', 13500, 13500, 150000, 177000, 'One Lakhs Seventy Seven Thousand Rupees Only', 0, '', 'CLEARED', 177000, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 12:59:30', '', 'ACTIVE'), (550, '2018-04-09', 'Ess and Ess infrastructure pvt ltd', 'JB-09042018/362', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 297, '', '1', '[\"ERP Development\"]', '[\"998314\"]', '[\"80000\"]', '9%', '', 0, '', '', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 94400, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 13:03:16', '', 'ACTIVE'), (551, '2018-04-09', 'General manager, CEPT', 'JB-09042018/361', ' Mysore ', '', 213, '', '1', '[\"corparate training\"]', '[\"998314\"]', '[\"121916\"]', '9%', '', 0, '', '', '9%', 10973, 10973, 121916, 143862, 'One Lakhs Forty Three Thousand Eight Hundred and Sixty Two Rupees Only', 0, '', 'CLEARED', 143862, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 13:06:28', '', 'ACTIVE'), (552, '2018-04-04', 'GSS Infrastructure Pvt Ltd', 'JB-04042018/360', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '', '1', '[\"ERP development\"]', '[\"998314\"]', '[\"35639\"]', '9%', '', 0, '', '', '9%', 3208, 3208, 35639, 42055, 'Forty Two Thousand Fifty Five Rupees Only', 0, '', 'CLEARED', 42055, 'Rounded Up', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 13:11:00', '', 'ACTIVE'), (553, '2018-04-03', 'Trupthi dental care', 'JB-03042018/359', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '', 298, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"7500\"]', '9%', '', 0, '', '', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'CLEARED', 8850, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-06 13:13:55', '', 'ACTIVE'), (554, '2017-11-08', 'Limra ', 'JB-08112017/554', '', '', 0, '', '1', '[\"Webiste development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-06 13:35:47', '2018-08-25', 'ACTIVE'), (555, '2018-01-07', 'New IT Solutions', 'JB-07012018/555', '#944, ground floor,42nd cross,3rd block, Rajajinagar Bangalore', '', 0, '29AGWPA5095K1ZN', '1', '[\"website development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'New IT Solutions', '#944, ground floor,42nd cross,3rd block, Rajajinagar Bangalore', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-07 05:52:02', '2019-04-05', 'ACTIVE'), (556, '2018-03-01', 'Rajesh ', 'JB-01032018/556', '', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"10000\"]', '9%', '', 0, '', '', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, 'Rounded Up', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-07 06:21:20', '2018-08-10', 'ACTIVE'), (557, '2017-08-07', 'Dhavan(veerabhadrakaliastrology.com)', 'JB-07082017/557', '', '', 0, '', '1', '[\"website development\"]', '[\"998314\"]', '[\"10000\"]', '9%', '', 0, '', '', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-07 06:33:49', '2018-08-29', 'ACTIVE'), (559, '2017-04-18', 'Sri dattanjaeya astro centre', 'JB-18042017/144', '', '', 0, '', '1', '[\"ppc\"]', '[\"998314\"]', '[\"9920\"]', '9%', '', 0, '', '', '9%', 0, 0, 9920, 9920, 'Nine Thousand Nine Hundred Twenty Rupees Only', 0, '', 'CLEARED', 9920, '', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-07 06:53:05', '2018-08-07', 'INACTIVE'), (560, '2018-08-09', 'Sangam Travels', 'JB-09082018/560', 'No.28 & 29, 3rd Cross, Abbaiahyappa Layout, (Dollars Layout), N.S. Playa, Bannerghatta Road, Bengaluru Bangalore Karnataka', '', 119, '', '1', '[\"AMC renewal 2018-2019\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-09 12:02:25', '', 'ACTIVE'), (561, '2018-08-09', 'RP Printers', 'JB-09082018/561', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore Bangalore Karnataka', '', 0, '', '1', '[\"Final Payment towards website Development\"]', '[\"998314\"]', '[\"4576\"]', '9%', '', 0, '', '', '9%', 412, 412, 4576, 5400, 'Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 5400, '', 0, '', 'CLOSED', '', 'Admin', 'Admin', '2018-08-09 12:08:17', '2018-08-09', 'ACTIVE'), (562, '2018-08-01', 'G V IMPORTS & INFRA', 'JB-01082018/562', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '', 488, '', '1', '[\"Website development first payment\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-09 12:15:09', '', 'ACTIVE'), (563, '2018-08-09', 'Royale electronics', 'JB-09082018/563', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '', '1', '[\"Website Development first payment\"]', '[\"998314\"]', '[\"6355\"]', '9%', '', 0, '', '', '9%', 573, 572, 6355, 7500, 'Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 7500, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-09 14:29:06', '', 'ACTIVE'), (564, '2018-08-11', 'Global Elite Spa', 'JB-11082018/564', 'BTM Layout Bangalore Karnataka', '', 481, '', '1', '[\"Balance payment of logo Design\"]', '[\"998314\"]', '[\"1483\"]', '9%', '', 0, '', '', '9%', 133, 133, 1483, 1750, 'One Thousand Seven Hundred Fifty Rupees Only', 0, '', 'CLEARED', 1750, '', 0, '', 'CLOSED', '', 'Admin', '', '2018-08-11 10:28:32', '', 'ACTIVE'), (565, '2018-08-13', 'AADHYA DEVELOPERS ', 'JB-13082018/565', '#129 balaji nilaya 4th cross seegehalli main road kr Puram Bengaluru karnataka', '', 0, '29ABMFA5935FIZ6', '1', '[\"Website Develpoment\"]', '[\"998314\"]', '[\"6779\"]', '9%', '18%', 0, '', '', '9%', 610, 610, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-13 07:44:05', '2018-10-13', 'ACTIVE'), (566, '2018-08-13', 'Make my documents', 'JB-13082018/566', 'No 334 2nd Main Dattatreya Nagar Hosakerehalli Bsk 3rd Stage Bangalore Karnataka', '', 0, '', '1', '[\"Additional Requirement for Website\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 305, 305, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', 'Shri priya ', 'Admin', '2018-08-13 12:04:29', '2018-08-13', 'ACTIVE'), (567, '2018-08-14', 'JKH Global Solutions', 'JB-14082018/567', '214, 2nd Floor 1st Main Rd, behind Robert Bosch gate, 7th Block Koramangala, Bengaluru Bangalore Karnataka', '', 0, '29AANFJ4926B1Z9', '1', '[\"1) Email hosting server Renewal\\r\\n\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Admin', '2018-08-14 05:49:43', '2018-08-14', 'ACTIVE'), (568, '2018-08-14', 'JSS Hospital', 'JB-14082018/568', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '', 0, '', '1', '[\"carrer pages integrated according to the department and linked to the admin login .\"]', '[\"\"]', '[\"10000\"]', '9%', '', 0, '', '', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 0, '', 'EXPIRED', '', 'Admin', 'Admin', '2018-08-14 08:00:14', '2018-09-01', 'ACTIVE'), (569, '2018-08-14', 'G V IMPORTS & INFRA', 'JB-14082018/569', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-14 10:11:39', '', 'ACTIVE'), (570, '2018-08-14', 'Good rich pest control', 'JB-14082018/570', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala, Bangalore Karnataka', '', 76, '', '1', '[\"Additional changes for SMS Integration\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-14 11:05:40', '', 'ACTIVE'), (572, '2018-08-16', 'A&M Edu Solution', 'JB-16082018/571', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', '', 339, '29ABIFA3355MIZI', '2', '[\" Four new landing page design \\r\\n \",\" Increase of server bandwidth \"]', '[\"998314\",\"998314\"]', '[\"4000\",\"4000\"]', '9%', '', 0, '', '', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'CLOSED', '', 'Admin', 'Shri priya ', '2018-08-16 13:54:18', '2018-08-17', 'ACTIVE'), (574, '2018-08-17', 'Intercontinental Logistics', 'JB-17082018/573', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '', 0, '29BIIPS9092K3Z6', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-17 12:06:23', '2018-08-17', 'ACTIVE'), (575, '2018-08-20', 'Eco Travells', 'JB-20082018/575', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 493, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, '', '', '9%', 306, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-20 06:09:31', '2018-08-22', 'ACTIVE'), (576, '2018-08-22', 'Maanasa Dental Health Center', 'JB-22082018/576', ' Mysore ', '', 7, '', '1', '[\"Demo\"]', '[\"998314\"]', '[\"20000\"]', '9%', '', 0, '', '', '9%', 1800, 1800, 20000, 23600, 'Twenty Three Thousand Six Hundred Rupees Only', 0, '', 'PENDING', 23600, '', 0, '', 'WAITING', '', 'Admin', '', '2018-08-22 06:23:01', '', 'INACTIVE'), (577, '2018-08-22', 'Proveraxius', 'JB-22082018/577', 'Flat no 103 site no 03shravanthi reffle apartment.16th cross 6th phase JP nagara Bangalore karnataka', '', 485, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4872\"]', '9%', '', 0, '', '', '9%', 439, 439, 4872, 5750, 'Five Thousand Seven Hundred Fifty Rupees Only', 0, '', 'CLEARED', 5750, '', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-22 11:05:29', '', 'ACTIVE'), (578, '2018-08-23', 'Deco-Textil Pvt Ltd', 'JB-23082018/578', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server Renewal for 6 months for Deco textile Application .\"]', '[\"998314\"]', '[\"21500\"]', '9%', '', 0, '', '', '9%', 1935, 1935, 21500, 25370, 'Twenty Five Thousand Three Hundred Seventy Rupees Only', 0, '', 'CLEARED', 25370, 'No Difference', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-08-23 06:18:38', '', 'ACTIVE'), (579, '2018-08-23', 'Swansilk Pvt Ltd', 'JB-23082018/579', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server Renewal for Swan Silk (6 months duration )\"]', '[\"998314\"]', '[\"21500\"]', '9%', '', 0, '', '', '9%', 1935, 1935, 21500, 25370, 'Twenty Five Thousand Three Hundred Seventy Rupees Only', 0, '', 'CLEARED', 25370, 'Rounded Up', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-23 06:20:07', '', 'ACTIVE'), (580, '2018-08-27', 'UNISON4', 'JB-27082018/580', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore Bangalore Karnataka', '', 150, '29CABPP6393Q1ZO', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, 'No Difference', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-27 08:12:23', '', 'ACTIVE'), (581, '2016-05-31', 'Samarthanam trust for disabled', 'JB-310516/041', ' Bengaluru ', '', 0, '', '1', '[\"Application\"]', '[\"998314\"]', '[\"90042\"]', '9%', '', 0, '', '', '9%', 8104, 8104, 90042, 106250, 'One Lakhs Six Thousand Two Hundred Fifty Rupees Only', 0, '', 'CLEARED', 106250, 'Rounded Up', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-27 12:54:03', '2018-08-29', 'ACTIVE'), (582, '2016-06-01', 'Dr Sunil', 'JB-010616/043', 'Arkis Arcade, Tilak Nagar, Shimoga ', '', 0, '', '1', '[\" Website Development\"]', '[\"998314\"]', '[\"21186\"]', '9%', '', 0, '', '', '9%', 1907, 1907, 21186, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-27 12:57:39', '2018-08-29', 'ACTIVE'), (583, '2018-08-27', 'Dr Uttam Chand Kincha', 'JB-200616/046', ' Bengaluru ', '', 391, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"25423\"]', '9%', '', 0, '', '', '9%', 2288, 2288, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'PENDING', 30000, '', 0, '', 'WAITING', '', 'Shri priya ', '', '2018-08-27 13:19:53', '', 'INACTIVE'), (584, '2016-06-20', 'Trust Dental Corporation', 'JB-200616/047', '#5, Puttanna Cross, DVG Road, Basavanagudi, Bengaluru Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"16949\"]', '9%', '', 0, '', '', '9%', 1526, 1526, 16949, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, 'No Difference', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-27 13:29:49', '2018-08-29', 'ACTIVE'), (585, '2018-08-28', 'Matha Associates', 'JB-27082018/585', ' No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara Bangalore Karnataka', '', 151, '29AARFM9918N1Z3', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-28 05:50:34', '', 'INACTIVE'), (586, '2018-08-28', 'aswini agrotech', 'JB-28082018/587', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"SSL Certificate\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'aswini agrotech:358', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CANCELLED', 4130, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-08-28 06:22:29', '2018-11-21', 'ACTIVE'), (587, '2018-08-28', 'Swansilk Pvt Ltd', 'JB-28082018/586', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Changes to application\"]', '[\"998314\"]', '[\"45000\"]', '9%', '', 0, '', '', '9%', 4050, 4050, 45000, 53100, 'Fifty Three Thousand One Hundred Rupees Only', 0, '', 'CLEARED', 53100, 'Others', 0, 'TDS', 'EXPIRED', '', 'Admin', '', '2018-08-28 06:55:04', '', 'ACTIVE'), (588, '2018-08-27', 'Jaisri Leather Fashions', 'JB-27082018/588', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore Bangalore Karnataka', '', 0, '29AMAPB5212B1ZV', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', 'Shri priya ', '2018-08-28 06:56:06', '2018-08-28', 'ACTIVE'), (589, '2018-08-28', 'Matha Associates', 'JB-28082018/589', ' No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara Bangalore Karnataka', '', 151, '29AARFM9918N1Z3', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"2500\"]', '9%', '', 0, '', '', '9%', 225, 225, 2500, 2950, 'Two Thousand Nine Hundred Fifty Rupees Only', 0, '', 'CLEARED', 2950, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-08-28 06:59:32', '2018-09-01', 'ACTIVE'), (590, '2018-08-28', 'Ashirwad Dental Clinic', 'JB-28082018/590', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 129, '', '1', '[\"SMS pack for dentics- 5000 nos\"]', '[\"998314\"]', '[\"2800\"]', '9%', '', 0, '', '', '9%', 252, 252, 2800, 3304, 'Three Thousand Three Hundred Four Rupees Only', 0, '', 'CLEARED', 3304, 'Rounded Up', 0, '', 'EXPIRED', '', 'Admin', '', '2018-08-28 14:17:03', '', 'ACTIVE'), (591, '2018-08-29', 'Tanmay Traders', 'JB-29082018/591', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030. Bangalore Karnataka', '', 171, '29AIDPS5620B1ZF', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, '', '', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'CLOSED', '', 'Shri priya ', '', '2018-08-29 08:37:07', '', 'ACTIVE'), (595, '2018-08-30', 'JSS Hospital', 'JB-30082018/592', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '', 0, '', '1', '[\" Website Development\"]', '[\"998314\"]', '[\"31652\"]', '9%', '', 0, 'JSS Hospital', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '9%', 2849, 2849, 31652, 37350, 'Thirty Seven Thousand Three Hundred Fifty Rupees Only', 0, '', 'CLEARED', 37350, '', 0, '', 'WAITING', '', 'Shri priya ', 'Shri priya ', '2018-09-01 06:06:04', '2018-09-01', 'INACTIVE'), (596, '2018-09-01', 'Rajiv Dental Care Centre', 'JB-01092018/592', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '', 464, 'NO', '1', '[\" 5000 SMS Pack for Dentics software\"]', '[\"998314\"]', '[\"2500\"]', '9%', '', 0, 'Rajiv Dental Care Centre', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '9%', 225, 225, 2500, 2950, 'Two Thousand Nine Hundred Fifty Rupees Only', 0, '', 'CLEARED', 2950, '', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-01 07:36:39', '', 'ACTIVE'), (597, '2018-09-01', 'Salemaker', 'JB-01092018/593', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, '', '1', '[\"Changes for Existing Requirements\"]', '[\"998314\"]', '[\"2500\"]', '9%', '', 0, 'Salemaker', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '9%', 225, 225, 2500, 2950, 'Two Thousand Nine Hundred Fifty Rupees Only', 0, '', 'CLEARED', 2950, '', 46, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-01 10:21:56', '', 'ACTIVE'), (598, '2018-09-01', 'RP Printers', 'JB-01092018/594', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore Bangalore Karnataka', '', 482, '29CDCPG5643JIZD', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '', 0, 'RP Printers', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore Bangalore Karnataka', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PENDING', 9440, '', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-01 10:22:44', '', 'INACTIVE'), (599, '2018-09-04', 'Namma Foundation', 'JB-04092018/595', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka', '', 483, '29ANMPK3809N1ZC', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"11864\"]', '9%', '', 0, 'Namma Foundation', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka', '9%', 1068, 1068, 11864, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-04 04:06:54', '', 'ACTIVE'), (600, '2018-09-04', 'Eco Travells', 'cash', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 493, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2966\"]', '9%', '', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 267, 267, 2966, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-09-04 07:18:54', '', 'ACTIVE'), (601, '2018-09-04', 'Ess and Ess infrastructure pvt ltd', 'JB-04092018/596', ' Mysore #1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 0, 'NO', '1', '[\"Additional Requirement for ERP \"]', '[\"998314\"]', '[\"225000\"]', '9%', '18%', 0, 'Ess and Ess infrastructure pvt ltd', ' Mysore #1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '9%', 20250, 20250, 225000, 265500, 'Two Lakhs Sixty Five Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 265500, '', 0, '', 'EXPIRED', 'Normal', 'Admin', 'Ashwini', '2018-09-04 14:17:47', '2019-09-09', 'ACTIVE'), (602, '2018-09-05', 'Marrie\'s Food Factory', 'JB-05092018/597', '3rd Main Rd, Lakshminarayanapuram, Rajaji Nagar, Bengaluru, Karnataka 560021, India', '', 0, '29BZOPP3235L1ZO', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Marrie\'s Food Factory', 'Rajajinagar, bangalore Bangalore Karnataka', '9%', 382, 381, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-05 08:35:49', '2018-11-15', 'ACTIVE'), (603, '2018-09-08', 'Excel Diagnostics', 'JB-08092018/598', 'Sahukar Chennaiah Road, Kuvempunagara North, Gangothri Layout Mysore Karnataka', '', 58, '', '1', '[\"AMC amount for 6 months\"]', '[\"998314\"]', '[\"6000\"]', '9%', '', 0, 'Excel Diagnostics', 'Sahukar Chennaiah Road, Kuvempunagara North, Gangothri Layout Mysore Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-08 07:04:05', '', 'ACTIVE'), (604, '2018-09-08', 'Testing campus infotech', 'JB-08092018/599', '\"No. 6\" ,2nd Floor BTM Layout 2nd Stage Near Udupi Garden Signal Above Oriental Bank of Commerce Next to State Bank of Mysore Bangalore Karnataka', '', 507, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"21186\"]', '9%', '', 0, 'Testing campus infotech', '\"No. 6\" ,2nd Floor BTM Layout 2nd Stage Near Udupi Garden Signal Above Oriental Bank of Commerce Next to State Bank of Mysore Bangalore Karnataka', '9%', 1907, 1907, 21186, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'EXPIRED', '', 'Shri priya ', '', '2018-09-08 11:56:46', '', 'INACTIVE'), (605, '2018-09-12', 'Durvas trading inc', 'JB-12092018/600', 'Banglore', '', 0, '29AALFD3853BIZH', '1', '[\"E - commerce application\"]', '[\"998314\"]', '[\"26271\"]', '9%', '18%', 0, 'satish', 'Banglore', '9%', 2364, 2364, 26271, 30999, 'Thirty Thousand Nine Hundred and Ninety Nine Rupees Only', 0, '', 'PARTIAL', 30999, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-09-12 06:41:29', '2019-03-27', 'ACTIVE'), (606, '2018-09-14', 'Brigade Bar & Restaurant', 'JB-12092018/601', ' Bangalore karnataka', '', 511, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12711\"]', '9%', '', 0, 'Brigade Bar & Restaurant', ' Bangalore karnataka', '9%', 1144, 1144, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-09-14 04:26:51', '', 'INACTIVE'), (607, '2018-09-15', 'Vast business report pvt Ltd', 'JB-15092018/602', 'kormangala , 4th Block Bangalore Karnataka', '', 0, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, 'Vast business report pvt Ltd', 'kormangala , 4th Block Bangalore Karnataka', '9%', 306, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-17 06:24:47', '2018-09-28', 'ACTIVE'), (608, '2018-09-15', 'Police investigation Newspaper', 'JB-15092018/603', 'Rt nagar Bangalore karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"11864\"]', '9%', '', 0, 'Police investigation Newspaper', 'Rt nagar Bangalore karnataka', '9%', 1068, 1068, 11864, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-17 06:25:53', '2018-09-28', 'ACTIVE'), (609, '2018-09-15', 'Brigade Bar & Restaurant', 'JB-15092018/604', ' Bangalore karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12711\"]', '9%', '', 0, 'Brigade Bar & Restaurant', ' Bangalore karnataka', '9%', 1145, 1145, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-09-17 06:27:53', '2018-09-17', 'ACTIVE'), (610, '2018-09-17', 'AADHYA DEVELOPERS ', 'JB-17092018/605', '#129 balaji nilaya 4th cross seegehalli main road kr Puram Bengaluru karnataka', '', 0, '29ABMFA5935FIZ6', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2542\"]', '9%', '18%', 0, 'AADHYA DEVELOPERS ', '#129 balaji nilaya 4th cross seegehalli main road kr Puram Bengaluru karnataka', '9%', 229, 229, 2542, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-17 06:53:01', '2018-10-13', 'ACTIVE'), (611, '2018-09-18', 'S R Marble and Granite', 'JB-18092018/606', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 0, '', '1', '[\"Email ID creation\"]', '[\"998314\"]', '[\"3389\"]', '9%', '', 0, 'S R Marble and Granite', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 306, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-19 04:02:32', '2018-09-28', 'ACTIVE'), (612, '2018-09-20', 'Salemaker', 'JB-20092018/607', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, '', '1', '[\"Changes in Existing Website\"]', '[\"998314\"]', '[\"1000\"]', '9%', '', 0, 'Salemaker', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '9%', 90, 90, 1000, 1180, 'One Thousand One Hundred Eighty Rupees Only', 0, '', 'CLEARED', 1180, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-09-20 11:26:20', '', 'ACTIVE'), (613, '2018-09-24', 'Raghudeva phychic', 'JB-24092018/608', 'Near Coconut Juice Stall, 3rd Cross Rd, Sakshi Nagar, Pai Layout, Mahadevapura, Bangalore karnataka', '', 516, '', '1', '[\"changes in existing website and domain transfer\"]', '[\"998314\"]', '[\"1694\"]', '9%', '', 0, 'Raghudeva phychic', 'Near Coconut Juice Stall, 3rd Cross Rd, Sakshi Nagar, Pai Layout, Mahadevapura, Bangalore karnataka', '9%', 153, 153, 1694, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-09-24 06:25:17', '', 'ACTIVE'), (614, '2018-09-24', 'Success Edge Marine Services', 'JB-24092018/609', 'No 726, 6th cross KG layout, Banashankari 3rd stage, Bangalore-560085, Karnataka. Bangalore Karnataka', '', 166, 'NO', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '', 0, 'Success Edge Marine Services', 'No 726, 6th cross KG layout, Banashankari 3rd stage, Bangalore-560085, Karnataka. Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-09-24 10:08:40', '', 'ACTIVE'), (615, '2018-09-25', 'Vardhaman Textiles', 'JB-25092018/610', '#36, rajatha complex ,D.K Lane ,chickpate cross Bangalore Karnataka', '', 517, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"4661\"]', '9%', '', 0, 'Vardhaman Textiles', '#36, rajatha complex ,D.K Lane ,chickpate cross Bangalore Karnataka', '9%', 420, 419, 4661, 5500, 'Five Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-09-25 11:32:48', '', 'ACTIVE'), (616, '2018-09-27', 'Ess and Ess infrastructure pvt ltd', 'JB-27092018/611', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '', 297, 'NO', '1', '[\"AMC for application for 6 months\\r\\nDuration: Oct-2018 to March-2019\"]', '[\"998314\"]', '[\"150000\"]', '9%', '', 0, 'Ess and Ess infrastructure pvt ltd', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '9%', 13500, 13500, 150000, 177000, 'One Lakhs Seventy Seven Thousand Rupees Only', 0, '', 'PENDING', 177000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2018-09-27 08:10:47', '', 'INACTIVE'), (617, '2018-09-28', 'Mac Recharges', 'JB-28092018/612', 'sarswathipuram Mysore Karnataka', '', 0, '', '1', '[\"Google play store ID creation\"]', '[\"998314\"]', '[\"2118\"]', '9%', '', 0, 'Mac Reacharges', 'sarswathipuram Mysore Karnataka', '9%', 191, 191, 2118, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 2500, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-09-28 11:30:47', '2018-09-28', 'ACTIVE'), (618, '2018-09-29', 'Police investigation Newspaper', 'JB-29092018/613', 'Rt nagar Bangalore karnataka', '', 0, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"13135\"]', '9%', '18%', 0, 'Police investigation Newspaper', 'Rt nagar Bangalore karnataka', '9%', 1183, 1183, 13135, 15500, 'Fifteen Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 15500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-09-29 07:01:57', '2018-10-23', 'ACTIVE'), (619, '2018-10-01', 'Sidvin Elevators', 'JB-01102018/614', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore Karnataka', '', 0, '29ADDFS6507Q1ZC', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'Sidvin Elevators', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar Bangalore Karnataka', '9%', 180, 180, 2000, 2360, 'Two Thousand Three Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 2360, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Subramanya', '2018-10-01 07:41:15', '2018-10-09', 'ACTIVE'), (620, '2018-10-01', 'Intiprocure Private Limited', 'JB-01102018/615', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '', 519, '', '1', '[\"Advance towards online bidding application\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 0, 'Intiprocure Private Limited', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '9%', 3600, 3600, 40000, 47200, 'Forty Seven Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 47200, '', 0, '', 'EXPIRED', 'Normal', 'Admin', 'Ajay', '2018-10-01 09:04:39', '2019-10-10', 'ACTIVE'), (621, '2018-10-02', 'Yuva Sene', 'JB-02102018/616', 'Nagarbavi Bangalore karnataka', '', 520, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '', 0, 'Yuva Sene', 'Nagarbavi Bangalore karnataka', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-02 12:39:04', '', 'ACTIVE'), (622, '2018-10-04', 'Testing campus infotech', 'JB-04102018/617', ' Bangalore Karnataka', '', 0, '', '2', '[\"Website Development\",\"Logo Design\"]', '[\"998314\",\"998314\"]', '[\"33051\",\"0\"]', '9%', '18%', 0, 'Testing campus infotech', ' Bangalore Karnataka', '9%', 2975, 2975, 33051, 39001, 'Thirty Nine Thousand One Rupees Only', 0, '', 'CLEARED', 39001, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ashwini', '2018-10-04 10:34:15', '2019-09-09', 'ACTIVE'), (624, '2018-10-08', 'Vardhaman Textiles', 'JB-08102018/618', '#36, rajatha complex ,D.K Lane ,chickpate cross Bangalore Karnataka', '', 0, '29ADFPCO811M1ZQ', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4661\"]', '9%', '18%', 0, 'Vardhaman Textiles', '#36, rajatha complex ,D.K Lane ,chickpate cross Bangalore Karnataka', '9%', 420, 420, 4661, 5500, 'Five Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-10-08 09:32:25', '2019-04-05', 'ACTIVE'), (625, '2018-10-09', 'Marries Food Factory', 'JB-09102018/619', '3rd Main Rd, Lakshminarayanapuram, Rajaji Nagar, Bengaluru, Karnataka 560021, India', '', 0, '29BZOPP3235L1ZO', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Marries Food Factory', 'Rajajinagar, bangalore Bangalore Karnataka', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-10-09 11:50:35', '2018-11-15', 'ACTIVE'), (626, '2018-10-11', 'Aryan Investments', 'JB-11102018/620', 'Bidadi Bangalore karnataka', '', 521, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Aryan Investments', 'Bidadi Bangalore karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-11 06:06:23', '', 'ACTIVE'), (627, '2018-10-11', 'aswini agrotech', 'JB-11102018/621', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-10-11 11:52:08', '2018-11-21', 'ACTIVE'), (628, '2018-10-11', 'VISAVI FOOD VENTURES', 'JB-11102018/622', 'N0.372,university layout, ringroad, Mysore-570023 karnataka', '', 515, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'vasavi foods', 'No. 15, 9th block Madhuvana layout, near Brahamaramba choultry, Srirampura 2nd stage, Mysuru -570023 mysore karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-10-11 11:53:02', '2018-10-12', 'ACTIVE'), (629, '2018-10-15', 'Manasa Garden Service', 'JB-15102018/623', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore Bangalore Karnataka', '', 522, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Manasa Garden Service', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore Bangalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-15 06:24:19', '', 'ACTIVE'), (630, '2018-10-15', 'Imarc Pest Control', 'JB-15102018/624', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road, Bangalore Karnataka', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Imarc Pest Control', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-10-15 12:21:51', '2018-10-16', 'ACTIVE'), (631, '2018-10-15', 'Aryan Investments', 'JB-15102018/625', 'Biddi Bangalore karnataka', '', 521, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Aryan Investments', 'Biddi Bangalore karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-15 12:43:54', '', 'ACTIVE'), (632, '2018-10-16', 'khincha dental centre', 'JB-16102018/626', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'khincha dental centre', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-10-16 05:18:11', '2018-10-16', 'ACTIVE'), (633, '2018-10-16', 'Micro Energy India Limited', 'JB-16102018/627', 'No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalore Bangalore Karnataka', '', 0, '', '1', '[\"\\\"AMC for website with domain http:\\/\\/microenerygyindialimited.co.in\\\"\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Micro Energy India Limited', 'No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalore Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-10-16 06:25:57', '2018-10-17', 'ACTIVE'), (634, '2018-10-23', 'chickpetdonnebiryanihouse', 'JB-23102018/628', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara, Bangalore Karnataka', '', 523, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'chickpetdonnebiryanihouse', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara, Bangalore Karnataka', '9%', 0, 0, 0, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-23 07:40:29', '', 'ACTIVE'), (635, '2018-10-23', 'Swansilk Pvt Ltd', 'JB-23102018/629', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"Additional Requirements\"]', '[\"998314\"]', '[\"36610\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 3295, 3295, 36610, 43200, 'Forty Three Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 43200, 'Others', 0, 'TDS', 'EXPIRED', 'Normal', 'Shri priya ', 'Ashwini', '2018-10-23 09:03:45', '2019-09-09', 'ACTIVE'), (636, '2018-10-23', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-23102018/630', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 0, '29AAACG3912G1ZT', '1', '[\"SSL Hosting Configuration\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'GSS Infrastructure Pvt Ltd', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, 'Rounded Up', 0, '', 'EXPIRED', '', 'Shri priya ', 'Admin', '2018-10-23 09:04:50', '2018-10-25', 'ACTIVE'), (637, '2018-10-23', 'Indian Society of Professional Social Works', 'JB-23102018/631', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '', 235, '', '1', '[\"Additional Requirements\"]', '[\"998314\"]', '[\"1500\"]', '9%', '18%', 0, 'Indian Society of Professional Social Works', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '9%', 135, 135, 1500, 1770, 'One Thousand Seven Hundred Seventy Rupees Only', 0, '', 'PENDING', 1770, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-23 12:23:11', '', 'INACTIVE'), (638, '2018-10-24', 'Savadi Dental Care', 'JB-24102018/632', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '', 2, '', '2', '[\"AMC Renewal for Website\",\"AMC Renewal for Dentics\"]', '[\"998314\",\"998314\"]', '[\"5000\",\"4500\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '9%', 855, 855, 9500, 11210, 'Eleven Thousand Two Hundred Ten Rupees Only', 0, '', 'CLEARED', 11210, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-24 11:41:46', '', 'ACTIVE'), (639, '2018-10-26', 'BSS Facility Mangement', 'JB-26102018/633', 'Malleshwaram Bangalore Karnataka', '', 0, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'BSS Facility Mangement', 'Malleshwaram Bangalore Karnataka', '9%', 0, 0, 2000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, 'Others', 0, 'For miscellaneous item cash 2K cash collected by subbu sir', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2018-10-26 07:06:14', '2019-09-09', 'ACTIVE'), (640, '2018-10-26', 'Ravi Kumar', 'JB-26102018/634', 'KRSSDI , Mysore', '', 0, '', '3', '[\" Two Barcode scanner and printer\",\"Printing charges along with paper\",\"Two Resources along with two system\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"4000\",\"2000\",\"4000\"]', '9%', '18%', 0, 'KRSSDI', 'Mysore', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 11800, '', 0, '', 'WAITING', '', 'Shri priya ', 'Shri priya ', '2018-10-26 12:56:59', '2018-10-26', 'INACTIVE'), (641, '2018-10-26', 'Hiking Holidays', 'JB-26102018/635', 'TC palya main road, Varanasi, Bangalore Bangalore Karnataka', '', 163, '', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Hiking Holidays', 'TC palya main road, Varanasi, Bangalore Bangalore Karnataka', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-26 13:45:22', '', 'ACTIVE'), (642, '2018-10-26', 'Manasa Garden Service', 'JB-26102018/636', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore Bangalore Karnataka', '', 522, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'Manasa Garden Service', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore Bangalore Karnataka', '9%', 0, 0, 0, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-26 13:48:55', '', 'ACTIVE'), (643, '2018-10-29', 'Indian Society of Professional Social Works', 'JB-29102018/637', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '', 235, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Indian Society of Professional Social Works', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-29 12:56:47', '', 'ACTIVE'), (644, '2018-10-30', 'Yaskawa India Pvt Ltd', 'JB-30102018/638', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka\r\nState Code: KA', '', 0, '29AAACY4408P1ZR', '1', '[\"Two new pages in purchase order for special case and approval functionality to ABP PORTAL\"]', '[\"998314\"]', '[\"28221\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka\r\nState Code: KA', '9%', 2540, 2540, 28221, 33301, 'Thirty Three Thousand Three Hundred One Rupees Only', 0, '', 'PARTIAL', 33301, '', 8, '', 'EXPIRED', 'Normal', 'Admin', 'Ashwini', '2018-10-30 06:04:56', '2019-09-09', 'ACTIVE'), (645, '2018-10-30', 'Yuva Sene', 'JB-30102018/cash', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '', 520, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6800\"]', '9%', '18%', 0, 'Yuva Sene', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '9%', 0, 0, 0, 6800, 'Six Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 6800, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-10-30 12:08:05', '', 'ACTIVE'), (646, '2018-10-30', 'KOSMIK - Refrigeration & Air Conditioning', 'JB-30102018/cash', '#331/9C Raghavendra Layout, Hulimavu Main Road Bangalore 560076 Bangalore Karnataka', '', 525, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'KOSMIK - Refrigeration & Air Conditioning', '#331/9C Raghavendra Layout, Hulimavu Main Road Bangalore 560076 Bangalore Karnataka', '9%', 0, 0, 0, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-10-30 12:18:15', '', 'ACTIVE'), (647, '2018-10-31', 'Swansilk Pvt Ltd', 'JB-31102018/639', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"Server Upgradation till February-2019\\r\\n(Swansilk)\"]', '[\"998316\"]', '[\"11000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 990, 990, 11000, 12980, 'Twelve Thousand Nine Hundred Eighty Rupees Only', 0, '', 'CLEARED', 12980, 'Others', 0, 'TDS', 'EXPIRED', 'Normal', 'Admin', 'Admin', '2018-10-31 08:33:02', '2018-10-31', 'ACTIVE'), (648, '2018-10-31', 'Zepnur', 'JB-31102018/640', 'Level 8, Tower 1, Umiya Business Bay, Cessna Business Park, Kadubeesanahalli, Marathahalli, Bangalore, Bengaluru (Bangalore) Urban, Karnataka, 560103 Bangalore karnataka', '', 247, '29AABCZ1663J1ZY', '1', '[\"Additional Changes in website\"]', '[\"998314\"]', '[\"1500\"]', '9%', '18%', 0, 'Zepnur', 'Level 8, Tower 1, Umiya Business Bay, Cessna Business Park, Kadubeesanahalli, Marathahalli, Bangalore, Bengaluru (Bangalore) Urban, Karnataka, 560103 Bangalore karnataka', '9%', 135, 135, 1500, 1770, 'One Thousand Seven Hundred Seventy Rupees Only', 0, '', 'CLEARED', 1770, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-10-31 10:50:29', '', 'ACTIVE'), (649, '2018-10-31', 'Deco-Textil Pvt Ltd', 'JB-31102018/641', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"Server Up gradation till February-2019\\r\\n(Decotextil)\"]', '[\"998314\"]', '[\"9500\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 855, 855, 9500, 11210, 'Eleven Thousand Two Hundred Ten Rupees Only', 0, '', 'CLEARED', 11210, 'Others', 0, 'TDS', 'EXPIRED', 'Normal', 'Admin', 'Ashwini', '2018-10-31 11:03:42', '2019-09-09', 'ACTIVE'), (650, '2018-10-26', 'Ravikumar', 'JB-26102018/634', 'KRSSDI Mysore', '', 0, '', '4', '[\"Two Barcode scanner and printer\",\"Printing charges along with paper\",\"Two Resource along with two system\",\"Balance payment towards conference application\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"5000\",\"2000\",\"3000\",\"30000\"]', '9%', '', 0, 'Ravikumar', 'KRSSDI Mysore', '9%', 3600, 3600, 40000, 47200, 'Forty Seven Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 47200, '', 0, '', 'WAITING', '', 'Shri priya ', 'Shri priya ', '2018-11-02 06:55:34', '2018-11-02', 'INACTIVE'), (651, '2018-11-02', 'T.saifuddin & co', 'JB-02112018/641', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 0, '29AADFT8885H1ZF', '1', '[\"E- Commerce website development\"]', '[\"998314\"]', '[\"8474.58\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 763, 763, 8475, 10000, 'Ten thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-11-02 12:48:13', '2019-04-05', 'ACTIVE'), (652, '2018-10-26', 'Ravikumar', 'JB-26102018/634', 'KRSSDI Mysore', '', 0, '', '4', '[\"Two Barcode scanner and printer\",\"Printing charges along with paper\",\"Two Resource along with two system\",\"Balance payment towards conference application\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"5000\",\"2000\",\"3000\",\"28135\"]', '9%', '18%', 0, 'Ravikumar', 'KRSSDI Mysore', '9%', 3433, 3433, 38135, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'CLEARED', 45000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-11-05 05:33:35', '2018-11-05', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (653, '2018-11-05', 'P Square foods', 'JB-05112018/cash', 'Jaynagar Bangalore Karnataka', '', 0, '', '1', '[\"E - Commerce Website Development\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'P Square foods', 'Jaynagar Bangalore Karnataka', '9%', 0, 0, 20000, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2018-11-05 11:25:42', '2018-11-05', 'ACTIVE'), (654, '2018-11-05', 'Smile Dental Care', 'JB-05112018/642', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar Mysore Karnataka', '', 0, 'NO', '1', '[\"AMC for website for year 2018-19\"]', '[\"998314\"]', '[\"3300\"]', '9%', '18%', 0, 'Smile Dental Care', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar Mysore Karnataka', '9%', 297, 297, 3300, 3894, 'Three Thousand Eight Hundred and Ninety Four Rupees Only', 0, '', 'CLEARED', 3894, '', 0, '', 'EXPIRED', '', 'Admin', 'Shri priya ', '2018-11-05 11:46:04', '2018-11-15', 'ACTIVE'), (655, '2018-11-09', 'Ashirwad Dental Clinic', 'Cash', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 0, 'NO', '1', '[\"Email Campaign\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '9%', 405, 405, 4500, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2018-11-09 05:57:37', '2019-06-12', 'ACTIVE'), (656, '2018-11-20', 'Arjun Ventures', 'cash', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 182, '29AYPPA3816K1Z4', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Arjun Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'WAITING', 'Cash', 'Shri priya ', '', '2018-11-20 05:14:30', '', 'INACTIVE'), (657, '2018-11-20', 'My Hindustan Travells', 'cash', 'Magadi Road Bangalore Karnataka', '', 532, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'My Hindustan Travells', 'Magadi Road Bangalore Karnataka', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-11-20 05:15:51', '', 'ACTIVE'), (658, '2018-11-20', 'Sri Ganesha Ventures', 'JB-20112018/644', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 0, '29AYPPA3816K1Z4', '1', '[\"AMC Renewal for 2018-2019\"]', '[\"998314\"]', '[\"5000\"]', '9%', '', 0, 'Sri Ganesha Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-11-20 08:05:52', '2019-02-19', 'ACTIVE'), (659, '2018-11-20', 'INSTA BUCKS GOLD PVT KTD. ', 'JB-20112018/645', '#78, Sri Hari Towers, 4th Floor, Opposite to Vijaya Bank, Dinnur Main Road, RT Nagar, Bengaluru-560032', '', 0, '29AAECI9690R1ZD. ', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"16313\"]', '9%', '18%', 0, 'INSTA BUCKS GOLD PVT KTD. ', '#78, Sri Hari Towers, 4th Floor, Opposite to Vijaya Bank, Dinnur Main Road, RT Nagar, Bengaluru-560032', '9%', 1469, 1469, 16313, 19250, 'Nineteen Thousand Two Hundred Fifty Rupees Only', 0, '', 'CLEARED', 19250, 'No Difference', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-11-20 08:07:50', '2019-04-05', 'ACTIVE'), (660, '2018-11-20', 'JK Fashions', 'Cash', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '', 0, '', '1', '[\"E - Commerce Website\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'JK Fashions', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2018-11-20 08:25:43', '2018-11-20', 'ACTIVE'), (661, '2018-11-20', 'Eco Travells', 'cash', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 493, '', '1', '[\"E- Mail ID creation\"]', '[\"998314\"]', '[\"1700\"]', '9%', '18%', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 0, 0, 0, 1700, 'One Thousand Seven Hundred Rupees Only', 0, '', 'CLEARED', 1700, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-11-20 12:32:16', '', 'ACTIVE'), (662, '2018-11-22', 'My Hindustan Travells', 'Cash', 'Magadi Road Bangalore Karnataka', '', 532, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'My Hindustan Travells', 'Magadi Road Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-11-22 10:21:04', '', 'ACTIVE'), (663, '2018-11-22', 'T.saifuddin & co', 'JB-22112018/646', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 0, '29AADFT8885H1ZF', '1', '[\"E- commerce website\"]', '[\"998314\"]', '[\"13559.32\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 1220, 1220, 13559, 16000, 'Sixteen thousand Rupees Only', 0, '', 'CLEARED', 16000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-11-22 10:22:23', '2019-04-05', 'ACTIVE'), (664, '2018-11-22', 'JK Fashions', 'JB-22112018/647', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '', 533, '', '1', '[\"E - Commerce Website\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'JK Fashions', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '9%', 0, 0, 0, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'PENDING', 14000, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2018-11-22 13:31:36', '', 'INACTIVE'), (665, '2018-11-22', 'JK Fashions', 'Cash', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '', 0, '', '1', '[\"E - Commerce website\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'JK Fashions', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout Bangalore Karnataka', '9%', 0, 0, 14, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2018-11-22 13:32:46', '2018-11-23', 'ACTIVE'), (666, '2018-11-26', 'Space Design', 'JB-26112018/647', ' New Bel Road Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5508\"]', '9%', '18%', 0, 'Space Design', ' New Bel Road Bangalore Karnataka', '9%', 496, 496, 5508, 6500, 'Six Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 6500, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-11-23 05:14:11', '2018-11-28', 'ACTIVE'), (667, '2018-11-26', 'Marrie\'s Food Factory', 'JB-26112018/648', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '', 216, '29BZOPP3235L1ZO', '1', '[\"AMC Renewal 2018-2019\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Marrie\'s Food Factory', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-11-26 11:09:56', '', 'ACTIVE'), (668, '2018-11-26', 'Smile Dental Care', 'JB-26112018/649', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar Mysore Karnataka', '', 383, '', '1', '[\"Amc Renewal for 2 years\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Smile Dental Care', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar Mysore Karnataka', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-11-26 12:24:14', '', 'ACTIVE'), (669, '2018-11-27', 'Jyesta Constructions', 'JB-27112018/650', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '', 237, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jyesta Constructions', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-11-27 11:41:18', '', 'ACTIVE'), (670, '2018-11-28', 'INSTA BUCKS GOLD PVT KTD. ', 'cash', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'INSTA BUCKS GOLD PVT KTD. ', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'WAITING', 'Cash', 'Shri priya ', 'Shri priya ', '2018-11-28 06:59:06', '2018-11-29', 'INACTIVE'), (671, '2018-11-30', 'Surya Woods', 'Cash', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023 Mysore Karnataka', '', 0, '29ABOPE5514E1ZQ', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3389.83\"]', '9%', '18%', 0, 'Surya Woods', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023 Mysore Karnataka', '9%', 305, 305, 3390, 4000, 'Four thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2018-11-30 04:18:02', '2019-04-05', 'ACTIVE'), (672, '2018-12-04', 'Spectrum Medical Publishers & Distributors ', 'JB-04122018/651', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076 Bangalore Karnataka', '', 535, '', '1', '[\"E - Commerce Website\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'Spectrum Medical Publishers & Distributors ', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076 Bangalore Karnataka', '9%', 0, 0, 0, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-04 08:35:27', '', 'ACTIVE'), (673, '2018-12-04', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-04122018/652', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 0, '', '1', '[\"AMC Renewal for the year 2018 - 2019\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-04 10:11:11', '2018-12-19', 'ACTIVE'), (674, '2018-12-04', 'Yashas Dental Health Care', 'JB-04122018/653', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '', 445, '', '1', '[\"AMC for DentICS application\\r\\n(Sri Krishna Sevashrama Hospital)\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Yashas Dental Health Care', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2018-12-04 13:20:27', '', 'INACTIVE'), (675, '2018-12-05', 'Biosite India Pvt Ltd', 'JB-05122018/654', '#740, Second Floor, 14th Main, Police Station Road, Kumarswamy Layout, Stage 1, Bengaluru - 560078. (Karnataka) INDIA', '', 260, '06AAGCB15921ZQ', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Biosite India Pvt Ltd', '#740, Second Floor, 14th Main, Police Station Road, Kumarswamy Layout, Stage 1, Bengaluru - 560078. (Karnataka) INDIA', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-05 05:58:06', '', 'ACTIVE'), (676, '2018-12-06', 'Celestain', 'JB-06122018/655', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '', 160, '29BFCPR6408F3Z9', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-06 06:49:35', '', 'ACTIVE'), (677, '2018-12-07', 'Cosmos Clean System', 'JB-07122018/656', ' White Filed', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '18%', 0, 'Cosmos Clean System', ' Whitefield', '9%', 306, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-07 05:17:10', '2018-12-07', 'INACTIVE'), (678, '2018-12-07', 'Cosmos Clean System', 'JB-07122018/656', ' White Filed', '', 537, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Cosmos Clean System', ' Whitefield', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'PENDING', 4000, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2018-12-07 05:17:10', '', 'INACTIVE'), (679, '2018-11-28', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-28112018/657', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 0, '29AAACG3912G1ZT', '1', '[\"Additional Requirements\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, 'Rounded Up', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-08 06:35:59', '2018-12-08', 'ACTIVE'), (680, '2018-12-11', 'Elite Residencies', 'JB-11122018/658', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka', '', 0, '29APMPJ0355A1Z5', '1', '[\"AMC Renewal and SSL Certificate\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Elite Residencies', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-11 12:40:49', '2018-12-11', 'ACTIVE'), (681, '2018-12-13', 'Space Designs', 'JB-13122018/659', ' New Bel Road Bangalore Karnataka', '', 534, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5508\"]', '9%', '18%', 0, 'Space Designs', ' New Bel Road Bangalore Karnataka', '9%', 496, 496, 5508, 6500, 'Six Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 6500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-13 05:03:49', '', 'ACTIVE'), (682, '2018-12-13', 'SkyDreamzee', 'JB-13122018/660', 'Muddinapalya, Near Suman driving school Bangalore Karnataka', '', 538, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SkyDreamzee', 'Muddinapalya, Near Suman driving school Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-13 05:59:26', '', 'ACTIVE'), (683, '2018-12-13', 'Indigo Plastics', 'CASH', 'Flat No- 23, Survey No- 68, Sheegehalli, Magadi Main Road. Bangalore Karnataka', '', 539, '', '1', '[\"Logo Design and Brochure\"]', '[\"998314\"]', '[\"2200\"]', '9%', '18%', 0, 'Indigo Plastics', 'Flat No- 23, Survey No- 68, Sheegehalli, Magadi Main Road. Bangalore Karnataka', '9%', 0, 0, 0, 2200, 'Two Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 2200, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-12-13 08:05:42', '', 'ACTIVE'), (684, '2018-12-14', 'Yashas Dental Health Care', 'JB-14122018/661', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '', 445, '', '1', '[\"Dentics AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Yashas Dental Health Care', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2018-12-14 05:55:12', '', 'INACTIVE'), (685, '2018-12-14', 'BSS Facility Mangement', 'JB-14122018/662', 'Malleshwaram Bangalore Karnataka', '', 524, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4500\"]', '9%', '18%', 0, 'BSS Facility Mangement', 'Malleshwaram Bangalore Karnataka', '9%', 0, 0, 0, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-14 08:10:56', '', 'ACTIVE'), (686, '2018-12-17', 'Sri Venu Glass', 'JB-17122018/663', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank,Bangalore - 560043.', '', 0, '29AUGPB1501R1ZK', '1', '[\"advanced - 6520 paid\\r\\nBalance - 11,180 \"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Sri Venu Glass', ' Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank,Bangalore - 560043.', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'CLEARED', 17700, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-17 10:32:48', '2019-02-08', 'ACTIVE'), (687, '2018-12-18', 'T.saifuddin & co', 'JB-18122018/664', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 0, '29AADFT8885H1ZF', '1', '[\"E - Commerce Website Development\"]', '[\"998314\"]', '[\"21050\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 1895, 1895, 21050, 24840, 'Twenty Four Thousand Eight Hundred Forty Rupees Only', 0, '', 'CLEARED', 24840, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-18 04:30:13', '2018-12-18', 'ACTIVE'), (688, '2018-12-18', 'T.saifuddin & co', 'JB-18122018/664', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 526, '29AADFT8885H1ZF', '1', '[\"E- Commerce Website Development\"]', '[\"998314\"]', '[\"38000\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 3420, 3420, 38000, 44840, 'Forty Four Thousand Eight Hundred Forty Rupees Only', 0, '', 'PENDING', 44840, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2018-12-18 11:10:23', '', 'INACTIVE'), (689, '2018-12-19', 'Radion Equipments Pvt Ltd', 'JB-19122018/665', 'No#23,1st Floor,\r\nMunneswara layout,Laggere,\r\nBangalore-560058', '', 0, '29AAICR0267P1ZP', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Radion Equipments Pvt Ltd', 'No#23,1st Floor,\r\nMunneswara layout,Laggere,\r\nBangalore-560058', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-19 06:01:04', '2018-12-21', 'ACTIVE'), (690, '2018-12-19', 'FDOT', 'JB-19122018/666', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA', '', 0, '29AAEFF0091N1Z5', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6355\"]', '9%', '18%', 0, 'FDOT', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA', '9%', 573, 573, 6355, 7500, 'Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 7500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-19 11:45:13', '2019-04-05', 'ACTIVE'), (691, '2018-12-20', 'Cosmos Clean System', 'JB-20122018/667', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Karnataka', '', 537, '29AAGFC6323E1ZM', '1', '[\"Amount paid : Rs.4,000 dated on 7\\/12\\/2018\\r\\nBalance amount is Rs.12,520 to be paid on 24\\/12\\/2018\\r\\n\\r\\n\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'Cosmos Clean System', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Karnataka', '9%', 1260, 1260, 14000, 16520, 'Sixteen Thousand Five Hundred Twenty Rupees Only', 0, '', 'CLEARED', 16520, 'No Difference', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-20 07:45:08', '', 'ACTIVE'), (692, '2018-12-21', 'Blitzkrieg Audio Video Pvt Ltd', 'JB-21122018/668', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"22033\"]', '9%', '18%', 0, 'Blitzkrieg Audio Video Pvt Ltd', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage Bangalore Karnataka', '9%', 1984, 1984, 22033, 26000, 'Twenty Six Thousand Rupees Only', 0, '', 'CLEARED', 26000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-21 10:55:13', '2019-04-05', 'ACTIVE'), (693, '2018-12-22', 'Alert Global Security Service', 'JB-22122018/669', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237.29\"]', '9%', '18%', 0, 'Alert Global Security Service', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '9%', 381, 381, 4237, 5000, 'Five thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-22 06:02:44', '2019-04-05', 'ACTIVE'), (694, '2018-12-22', 'Guardian Care Taker', 'JB-22122018/670', 'Xavier Layout-Gaurd mall Bangalore Karnataka', '', 545, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Guardian Care Taker', 'Xavier Layout-Gaurd mall Bangalore Karnataka', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-22 06:35:14', '', 'ACTIVE'), (695, '2018-12-22', 'Jyesta Constructions', 'CASH', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '', 237, 'NO', '1', '[\"Adwords Configuration\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jyesta Constructions', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2018-12-22 07:42:32', '', 'ACTIVE'), (696, '2018-12-26', 'Jazz Anitique Metals', 'JB-26122018/671', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '', 0, '62FGJZH2162Z1GH', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237.29\"]', '9%', '18%', 0, 'Jazz Anitique Metals', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '9%', 381, 381, 4237, 5000, 'Five thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-26 10:51:44', '2019-04-05', 'ACTIVE'), (697, '2018-12-27', 'Indigo Plastics', 'JB-27122018/672', 'Plot No- 23, Survey No- 68, Sheegehalli, Magadi Main Road. Bangalore Karnataka', '', 539, '', '1', '[\"Logo Design and Visiting Card\"]', '[\"998314\"]', '[\"1200\"]', '9%', '18%', 0, 'Indigo Plastics', 'Plot No- 23, Survey No- 68, Sheegehalli, Magadi Main Road. Bangalore Karnataka', '9%', 0, 0, 0, 1200, 'One Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 1200, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2018-12-27 13:02:29', '', 'ACTIVE'), (698, '2018-12-28', 'Guardian Care Taker', 'JB-28122018/673', 'Xavier Layout-Gaurd mall Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Guardian Care Taker', 'Xavier Layout-Gaurd mall Bangalore Karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-28 12:10:33', '2018-12-28', 'ACTIVE'), (699, '2018-12-29', 'mahadevappa', 'JB-29122018/674', 'Bangalore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'mahadevappa', 'Bangalore', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2018-12-29 10:54:19', '2019-01-02', 'ACTIVE'), (700, '2018-12-29', 'Navakruthi Enterprises', 'JB-29122018/675', ' NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE BANGALORE', '', 0, '29AJJPD3161H1ZA', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'Navakruthi Enterprises', ' NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE BANGALORE', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2018-12-29 10:59:39', '2019-04-05', 'ACTIVE'), (701, '2019-01-02', 'Celestain', 'JB-01012019/676', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '', 160, '29BFCPR6408F3Z9', '1', '[\"AMC Renewal for 2018-2019\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'PENDING', 3540, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2019-01-02 05:18:50', '', 'INACTIVE'), (702, '2019-01-03', 'Veshma Infratech', 'JB-03012019/676', ' ', '', 548, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"13200\"]', '9%', '18%', 0, 'Veshma Infratech', ' ', '9%', 0, 0, 0, 13200, 'Thirteen Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 13200, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-03 06:37:49', '', 'ACTIVE'), (703, '2019-01-03', 'Alert Global Security Service', 'JB-03012019/677', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '', 544, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Alert Global Security Service', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-03 13:58:50', '', 'ACTIVE'), (704, '2019-01-04', 'Sri Ganesha Ventures', 'JB-04012019/678', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 0, '29AYPPA3816K1Z4', '4', '[\" for Hosting \",\"visiting card\",\"letter head and envelope\",\"Invoice,Quotation,Receipts generation\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"3000\",\"600\",\"500\",\"15000\"]', '9%', '18%', 0, 'Sri Ganesha Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 0, 0, 19100, 19100, 'Twenty Two Thousand Five Hundred and Thirty Eight Rupees Only', 0, '', 'CLEARED', 19100, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-04 05:35:11', '2019-01-14', 'ACTIVE'), (705, '2019-01-04', 'SkyDreamzee', 'JB-04012019/679', 'Near KA 41 Rto office Near upkar layout Jnanabharathi Bangalore Karnataka', '', 538, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SkyDreamzee', 'Near KA 41 Rto office Near upkar layout Jnanabharathi Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-04 08:40:14', '', 'ACTIVE'), (706, '2019-01-04', 'Guardian Care Taker', 'CASH', '48/A Xavier Layout 3rd Cross, Austin Town, Bangalore Karnataka', '', 545, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Guardian Care Taker', '48/A Xavier Layout 3rd Cross, Austin Town, Bangalore Karnataka', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-01-04 12:30:04', '', 'ACTIVE'), (707, '2019-01-07', 'Navakruthee Enterprises', 'JB-02012019/680', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '', 0, '29AJJPD3161H1ZA', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'Navakruthee Enterprises', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-07 13:24:52', '2019-04-05', 'ACTIVE'), (708, '2019-01-09', 'Steel Man Security Force', 'JB-09012019/681', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli. Bangalore Karnataka', '', 0, '29ATEPA4430H2ZZ', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1694.92\"]', '9%', '18%', 0, 'Steel Man Security Force', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli. Bangalore Karnataka', '9%', 153, 153, 1695, 2000, 'Two thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-09 06:16:15', '2019-04-05', 'ACTIVE'), (709, '2019-01-10', 'Jus Prudens Advocates & Solicitors', 'CASH', '#5, Attimabbe Road,30th main, Next to Sri hari Kalyana mantappa,Banashankari 3rd Stage. Bangalore Karnataka', '', 551, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12000\"]', '9%', '18%', 0, 'Jus Prudens Advocates & Solicitors', '#5, Attimabbe Road,30th main, Next to Sri hari Kalyana mantappa,Banashankari 3rd Stage. Bangalore Karnataka', '9%', 0, 0, 0, 12000, 'Twelve Thousand Rupees Only', 0, '', 'CLEARED', 12000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-01-10 06:59:32', '', 'ACTIVE'), (710, '2019-01-11', 'Smart geo civil engineering', 'JB-11012019/682', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040', '', 0, '29CMYPB9950LIZZ', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4661.02\"]', '9%', '18%', 0, 'Smart geo civil engineering', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040', '9%', 419, 419, 4661, 5500, 'Five thousand five hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-11 06:13:35', '2019-04-05', 'ACTIVE'), (711, '2019-01-11', 'Optimetz', 'JB-11012019/683', 'Seshadripuram Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Optimetz', 'Seshadripuram Bangalore Karnataka', '9%', 0, 0, 0, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-11 07:41:48', '2019-01-11', 'ACTIVE'), (712, '2019-01-11', 'Kou-Chan Knowledge Convergence Pvt Ltd', 'JB-11012019/684', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001 Bangalore Karnataka', '', 557, '29AAACE7439E1ZL', '1', '[\"Advance towards website development\"]', '[\"998314\"]', '[\"7500\"]', '9%', '18%', 0, 'Kou-Chan Knowledge Convergence Pvt Ltd', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001 Bangalore Karnataka', '9%', 675, 675, 7500, 7500, 'Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 7500, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-01-11 08:51:39', '', 'ACTIVE'), (713, '2019-01-11', 'Branils Enterprises', 'JB-10012019/685', '62/1, 2nd Floor, 21st \'A\' Main, JP Nagar, 2nd Phase, Next to Marenahalli Kalabhavana, Bengaluru-560078', '', 0, '29AAMFB4789M1ZI', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Branils Enterprises', '62/1, 2nd Floor, 21st \'A\' Main, JP Nagar, 2nd Phase, Next to Marenahalli Kalabhavana, Bengaluru-560078', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-11 14:06:06', '2019-01-16', 'ACTIVE'), (714, '2019-01-12', 'The giz shop pvt ltd ', 'JB-12012019/686', 'H b r layout 3rd block Bangalore Karnataka', '', 0, '', '1', '[\"E-commerce Website Development\"]', '[\"998314\"]', '[\"10500\"]', '9%', '18%', 0, 'The giz shop pvt ltd ', 'H b r layout 3rd block Bangalore Karnataka', '9%', 0, 0, 0, 10500, 'Ten Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 10500, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Subramanya', '2019-01-12 13:01:08', '2019-01-30', 'ACTIVE'), (715, '2019-01-14', 'Nuagefarm ', 'JB-14012019/687', ' ', '', 559, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Nuagefarm ', ' ', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-14 13:25:34', '', 'ACTIVE'), (716, '2019-01-18', 'Healing Power', 'JB-18012019/688', 'Kalayan Nagar Bangalore Karnataka', '', 560, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Healing Power', 'Kalayan Nagar Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-18 13:24:52', '', 'ACTIVE'), (717, '2019-01-21', 'Jazz Anitique Metals', 'JB-21012019/689', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '', 0, '62FGJZH2162Z1GH', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932.20\"]', '9%', '18%', 0, 'Jazz Anitique Metals', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-21 07:11:33', '2019-04-05', 'ACTIVE'), (718, '2019-01-21', 'Advaith Motors', 'JB-21012019/690', 'No. 1021, Maruthi nagar, near railway bridge munnekolala, Marathalli, p.o Bangalore-560037', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389.83\"]', '9%', '18%', 0, 'Advaith Motors', 'No. 1021, Maruthi nagar, near railway bridge munnekolala, Marathalli, p.o Bangalore-560037', '9%', 305, 305, 3390, 4000, 'Four thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-21 07:24:12', '2019-04-05', 'ACTIVE'), (719, '2019-01-21', 'Actovive', 'JB-21012019/691', '10th Main 6th Cross Gururaja Layout Banashankari 2nd Stage Bangalore Bangalore Karnataka', '', 0, '29CIEPS1924B1ZD', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'Actovive', '10th Main 6th Cross Gururaja Layout Banashankari 2nd Stage Bangalore Bangalore Karnataka', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-21 10:19:59', '2019-04-05', 'ACTIVE'), (720, '2019-01-22', 'Salemaker', 'JB-22012019/692', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '', 105, 'NO', '1', '[\"Old name server \"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Salemaker', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-22 08:16:02', '', 'ACTIVE'), (721, '2019-01-22', 'Land Mark', 'JB-22012019/693', ' St Marks Road Bangalore Karnataka', '', 561, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Land Mark', ' St Marks Road Bangalore Karnataka', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Admin', '', '2019-01-22 08:24:57', '', 'ACTIVE'), (722, '2019-01-22', 'Skill Tree Academy', 'JB-22012019/694', 'Sahakar Nagar Banagalore Karnataka', '', 564, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Skill Tree Academy', 'Sahakar Nagar Banagalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-22 12:45:10', '', 'ACTIVE'), (723, '2019-01-23', 'Victory Vivin', 'JB-23012019/695', 'Uthralli Bangalore Karnataka', '', 0, '29AVNPV2799K1ZB', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4661.02\"]', '9%', '18%', 0, 'Victory Vivin', 'Uthralli Bangalore Karnataka', '9%', 419, 419, 4661, 5500, 'Five thousand five hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-01-23 06:51:02', '2019-04-05', 'ACTIVE'), (724, '2019-01-24', 'Smart geo engineering services', 'JB-24012019/696', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040 Bangalore Karnataka', '', 554, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5500\"]', '9%', '18%', 0, 'Smart geo engineering services', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040 Bangalore Karnataka', '9%', 0, 0, 0, 5500, 'Five Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2019-01-24 04:46:48', '', 'INACTIVE'), (725, '2019-01-24', 'Broadfield HR Soloutions Pvt Ltd', 'JB-24012019/697', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte Bangalore Karnataka', '', 203, '29AAFCB8099Q1ZK', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'Broadfield HR Soloutions Pvt Ltd', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte Bangalore Karnataka', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-24 12:22:53', '', 'ACTIVE'), (726, '2019-01-25', 'Healing Touch', 'JB-24012019/698', 'Kalayan Nagar Bangalore Karnataka', '', 560, '', '1', '[\"Website Development\"]', '[\"4000\"]', '[\"4000\"]', '9%', '18%', 0, 'Healing Touch', 'Kalayan Nagar Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-01-25 08:14:55', '', 'ACTIVE'), (727, '2019-01-30', 'Vedic Vedant', 'CASH', 'Gurgaon ', '', 566, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"37500\"]', '9%', '18%', 0, 'Vedic Vedant', 'Gurgaon ', '9%', 0, 0, 0, 37500, 'Thirty Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 37500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-01-30 08:18:48', '', 'ACTIVE'), (728, '2019-02-01', 'Nuagefarm ', 'JB-01022019/699', ' ', '', 0, 'No', '2', '[\"Website Development\",\"Domain\"]', '[\"998314\",\"998314\"]', '[\"2000\",\"1200\"]', '9%', '18%', 0, 'Nuagefarm ', ' ', '9%', 0, 0, 0, 3200, 'Three Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 3200, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-01 06:53:30', '2019-03-05', 'ACTIVE'), (729, '2019-02-01', 'JSH Facility Solutions', 'JB-01022019/700', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '', 265, '', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'JSH Facility Solutions', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-01 11:25:37', '', 'ACTIVE'), (730, '2019-02-01', 'St.Anns Public School', 'JB-01022019/701', 'No. 143/144/87, 100, ft ring road, Veerabhadranagar, BSK 3rd stage Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"9322\"]', '9%', '18%', 0, 'St.Anns Public School', 'No. 143/144/87, 100, ft ring road, Veerabhadranagar, BSK 3rd stage Bangalore Karnataka', '9%', 839, 839, 9322, 11000, 'Eleven Thousand Rupees Only', 0, '', 'CLEARED', 11000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-01 13:02:25', '2019-03-05', 'ACTIVE'), (731, '2019-02-04', 'Anamiivaa', 'JB-04022019/702', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '', 0, 'NO', '1', '[\"Additional Requirements in Existing Website\"]', '[\"998314\"]', '[\"9898\"]', '9%', '18%', 0, 'Anamiivaa', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '9%', 891, 891, 9898, 11680, 'Eleven Thousand Six Hundred Eighty Rupees Only', 0, '', 'PARTIAL', 11680, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-04 08:07:29', '2019-03-27', 'ACTIVE'), (732, '2019-02-04', 'Aanya INC', 'JB-04022019/703', 'Chamrajpet Bangalore Karnataka', '', 0, '', '1', '[\"E-commerce Website\"]', '[\"998314\"]', '[\"16949.15\"]', '9%', '18%', 0, 'Aanya INC', 'Chamrajpet Bangalore Karnataka', '9%', 1525, 1525, 16949, 20000, 'Twenty thousand rupees only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2019-02-04 08:49:40', '2019-04-05', 'ACTIVE'), (733, '2019-02-04', 'Vision Tutorials', 'CASH', 'Mathikere Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2400\"]', '9%', '18%', 0, 'Vision Tutorials', 'Mathikere Bangalore Karnataka', '9%', 0, 0, 0, 2400, 'Two Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 2400, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-04 08:50:51', '2019-02-05', 'ACTIVE'), (734, '2019-02-04', 'Thapasia Enterprises', 'JB-04022019/704', 'Bangalore, Karnataka', '', 0, '', '1', '[\"Application Development\"]', '[\"998314\"]', '[\"8474\"]', '9%', '18%', 0, 'Thapasia Enterprises', 'Bangalore, Karnataka', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-04 08:55:19', '', 'ACTIVE'), (735, '2019-02-04', 'Snoring and sleep annea clinic.', 'JB-04022019/705', ' Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12711\"]', '9%', '18%', 0, 'Snoring and sleep annea clinic.', ' Bangalore Karnataka', '9%', 1145, 1145, 12711, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-04 10:28:20', '2019-02-04', 'ACTIVE'), (736, '2019-02-05', 'Shree Chowdeshwari Travels', 'CASH', ' Hebbal Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Shree Chowdeshwari Travels', ' Hebbal Bangalore Karnataka', '9%', 0, 0, 0, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-05 05:24:40', '2019-02-05', 'ACTIVE'), (737, '2019-02-05', 'SK Infrastructures', 'CASH', 'Malleshwaram Bangalore Karnataka', '', 574, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'SK Infrastructures', 'Malleshwaram Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-05 11:07:09', '', 'ACTIVE'), (738, '2019-02-06', 'Manukula Charitable and Educational Trust', 'JB-06022019/706', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka', '', 328, 'NO', '1', '[\"Payment gateway Integration\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Manukula Charitable and Educational Trust', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-06 08:05:19', '', 'ACTIVE'), (739, '2019-02-06', 'Cracker Jack', 'CASH', 'Bannergatta Bangalore Karnataka', '', 575, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'Cracker Jack', 'Bannergatta Bangalore Karnataka', '9%', 0, 0, 0, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 2500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-06 10:50:20', '', 'ACTIVE'), (740, '2019-02-06', 'Sunlight Cloth drying ceiling hangers industries bangalore', 'JB-06022019/707', 'No. S-9, PSR Pavilion,Halleguddadahalli Main road, Hebbal, Bangalore - 560024 Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Sunlight Cloth drying ceiling hangers industries bangalore', 'No. S-9, PSR Pavilion,Halleguddadahalli Main road, Hebbal, Bangalore - 560024 Bangalore Karnataka', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-06 13:17:43', '2019-04-05', 'ACTIVE'), (741, '2019-02-07', 'Victory Vivin', 'CASH', 'Uthralli Bangalore Karnataka', '', 0, '29AVNPV2799K1ZB', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4661.02\"]', '9%', '18%', 0, 'Victory Vivin', 'Uthralli Bangalore Karnataka', '9%', 419, 419, 4661, 5500, ' Five thousand five hundred Rupees Only', 0, '', 'CLEARED', 5500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-07 05:08:41', '2019-04-05', 'ACTIVE'), (742, '2019-02-07', 'Veshma Infratech', 'JB-07022019/708', '#130, 6th cross, 4th main road, BHCS Layout, Padmanabha nagar, bangalore-560061 Bangalore KARNATAKA', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12313\"]', '9%', '18%', 0, 'Veshma Infratech', '#130, 6th cross, 4th main road, BHCS Layout, Padmanabha nagar, bangalore-560061 Bangalore KARNATAKA', '9%', 1109, 1109, 12313, 14530, 'Fourteen Thousand Five Hundred Thirty Rupees Only', 0, '', 'CLEARED', 14530, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-07 06:11:54', '2019-04-05', 'ACTIVE'), (743, '2019-02-07', 'Kooldair Systems Pvt Ltd', 'JB-07022019/709', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '', 267, '29AAGCK9901R1ZN', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-07 07:01:56', '', 'ACTIVE'), (744, '2019-02-08', 'National Human Rights', 'CASH', 'Indranagar Bangalore Karnataka', '', 576, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'National Human Rights', 'Indranagar Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-08 12:30:18', '', 'ACTIVE'), (745, '2019-02-09', 'Sri Manjunatha civil Constructions', 'CASH', 'Electronic City Bangalore Karnataka', '', 577, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Sri Manjunatha civil Constructions', 'Electronic City Bangalore Karnataka', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-09 08:29:16', '', 'ACTIVE'), (746, '2019-02-11', 'AB Square', 'JB-09022019/710', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India.', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237.29\"]', '9%', '18%', 0, 'AB Square', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India.', '9%', 381, 381, 4237, 5000, 'Five thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-11 06:50:27', '2019-04-05', 'ACTIVE'), (747, '2019-02-13', 'Mia Casa', 'JB-12022019/711', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '', 263, '', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Mia Casa', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-13 06:25:41', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (748, '2019-02-14', 'Steel Man Security Force', 'JB-14022019/712', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli. Bangalore Karnataka', '', 0, '29ATEPA4430H2ZZ', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3305.08\"]', '9%', '18%', 0, 'Steel Man Security Force', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli. Bangalore Karnataka', '9%', 297, 297, 3305, 3900, 'Three Thousand nine hundred Rupees Only', 0, '', 'CLEARED', 3900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-14 12:00:36', '2019-04-05', 'ACTIVE'), (749, '2019-02-15', 'Corbelo Group', 'JB-15022019/713', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '', 256, '', '1', '[\"Domain Transfer \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Corbelo Group', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-15 08:33:15', '', 'ACTIVE'), (750, '2019-02-15', 'Optimetz', 'JB-15022019/714', 'Seshadripuram Bangalore Karnataka', '', 556, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Optimetz', 'Seshadripuram Bangalore Karnataka', '9%', 0, 0, 0, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-15 10:26:31', '', 'ACTIVE'), (751, '2019-02-15', 'Vstaarplus', 'CASH', ' Chikmagalur Karnataka', '', 67, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'Vstaarplus', ' Chikmagalur Karnataka', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-15 10:28:04', '', 'ACTIVE'), (752, '2019-02-18', 'Koncept Kreation', 'JB-18022019/715', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '18%', 0, 'Koncept Kreation', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka', '9%', 306, 306, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-18 06:48:11', '2019-03-01', 'ACTIVE'), (753, '2019-02-18', 'American Smiles', 'JB-16022019/716', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '', 0, '29ABHSM0708R1ZP', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'American Smiles', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Rekha', '2019-02-18 07:38:19', '2020-02-26', 'ACTIVE'), (754, '2019-02-18', 'Super shine car wash', 'CASH', ' Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'Super shine car wash', ' Bangalore Karnataka', '9%', 0, 0, 0, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-18 10:58:41', '2019-02-26', 'ACTIVE'), (755, '2019-02-19', 'Sri Manjunatha civil Constructions', 'JB-19022019/717', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru Bangalore Karnataka#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '', 0, '29ESBPS5141D1ZP', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2458\"]', '9%', '18%', 0, 'Sri Manjunatha civil Constructions', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru Bangalore Karnataka#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '9%', 221, 221, 2458, 2900, 'Two Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 2900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-20 12:13:03', '2019-02-20', 'ACTIVE'), (756, '2019-02-20', 'Swansilk Pvt Ltd', 'JB-20022019/718', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, 'Others', 0, 'TDS Deducted', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-20 12:21:22', '', 'ACTIVE'), (757, '2019-02-20', 'Deco-Textil Pvt Ltd', 'JB-20022019/719', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, 'Others', 0, 'TDS Deducted', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-20 12:21:59', '', 'ACTIVE'), (758, '2019-02-20', 'The giz shop pvt ltd ', 'JB-20022019/720', 'H b r layout 3rd block Bangalore Karnataka', '', 558, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10600\"]', '9%', '18%', 0, 'The giz shop pvt ltd ', 'H b r layout 3rd block Bangalore Karnataka', '9%', 0, 0, 0, 10600, 'Ten Thousand Six Hundred Rupees Only', 0, '', 'CLEARED', 10600, 'Others', 0, 'the client paid through payumoney so, the commission is 2% ', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-20 12:27:49', '', 'ACTIVE'), (759, '2019-02-20', 'Trupthi dental care', 'JB-20022019/721', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '', 298, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-20 12:34:29', '', 'ACTIVE'), (760, '2019-02-20', 'Kracker Jack', 'CASH', '#34 ,2nd floor ,jp Nagar 9th phase Bangalore 83 Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'Kracker Jack', '#34 ,2nd floor ,jp Nagar 9th phase Bangalore 83 Bangalore Karnataka', '9%', 0, 0, 0, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 2500, 'No Difference', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-20 13:40:37', '2019-02-27', 'ACTIVE'), (761, '2019-02-20', 'Kempegowda Build mart', 'CASH', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore Karnataka', '', 269, '29AARFK1722G1Z6', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Kempegowda Build mart', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'PARTIAL', 3540, '', 0, '', 'WAITING', 'Cash', 'Shri priya ', '', '2019-02-20 13:46:33', '', 'INACTIVE'), (762, '2019-02-20', 'Kempegowda Build mart', 'JB-20022019/722', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore Karnataka', '', 269, '29AARFK1722G1Z6', '1', '[\"AMC RENEWAL\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Kempegowda Build mart', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, 'Rounded Up', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-20 13:58:28', '', 'ACTIVE'), (763, '2019-02-21', 'AB Square', 'JB-21022019/723', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '', 0, '29AAOCA7919F1Z8', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'AB Square', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-21 06:22:49', '2019-04-05', 'ACTIVE'), (764, '2019-02-21', 'Calieo Properties Care Taker', 'CASH', ' Banashankari 6th Stage Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Calieo Properties Care Taker', ' Banashankari 6th Stage Bangalore Karnataka', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-21 06:53:08', '2019-02-21', 'ACTIVE'), (765, '2019-02-21', 'Excel Technologies', 'CASH', '\"Excel House\', No.463, 14th main, Bank Colony, Srinivas Nagar, B.S.K. 1st stage, Bangalore - 560050', '', 584, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Excel Technologies', '\"Excel House\', No.463, 14th main, Bank Colony, Srinivas Nagar, B.S.K. 1st stage, Bangalore - 560050', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-21 07:21:50', '', 'ACTIVE'), (766, '2019-02-22', 'Pujacom', 'CASH', 'Rajarajeshwari Nagar Bangalore Karnataka', '', 585, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Pujacom', 'Rajarajeshwari Nagar Bangalore Karnataka', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-22 10:49:01', '', 'ACTIVE'), (767, '2019-02-22', 'Durga Steels Corporation', 'JB-22022019/724', 'DURGA Steel Corporation Bangalore Karnataka', '', 0, '', '1', '[\"AMC Renewal with a redemption fee\"]', '[\"998314\"]', '[\"9595\"]', '9%', '18%', 0, 'Durga Steels Corporation', 'DURGA Steel Corporation Bangalore Karnataka', '9%', 864, 864, 9595, 11323, 'Eleven Thousand Three Hundred and Twenty Three Rupees Only', 0, '', 'CLEARED', 11323, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-22 10:58:21', '2019-02-22', 'ACTIVE'), (768, '2019-02-23', 'Sai Charan ', 'CASH', 'UB City', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Sai Charan ', 'UB City', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'PENDING', 1000, '', 0, '', 'WAITING', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-23 09:33:24', '2019-02-23', 'INACTIVE'), (769, '2019-02-23', 'Sai Charan', 'CASH', 'UB City', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Sai Charan', 'UB City', '9%', 77, 77, 847, 1000, 'One Thousand Rupees Only', 0, '', 'PENDING', 1000, '', 0, '', 'WAITING', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-23 09:36:02', '2019-02-23', 'INACTIVE'), (770, '2019-02-23', 'Sai Charan', 'CASH', 'UB City Bangalore', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Sai Charan', 'UB City Bangalore', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-23 09:38:23', '2019-02-23', 'ACTIVE'), (771, '2019-02-25', 'Lifsys', 'CASH', ' Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"22500\"]', '9%', '18%', 0, 'Lifsys', ' Bangalore Karnataka', '9%', 0, 0, 0, 22500, 'Twenty Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 22500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-02-25 05:31:37', '2019-02-25', 'ACTIVE'), (772, '2019-02-25', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-25022019/725', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 0, '29AAACG3912G1ZT', '1', '[\"Changes in ERP\"]', '[\"998314\"]', '[\"17847\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 1607, 1607, 17847, 21060, 'Twenty One Thousand Sixty Rupees Only', 0, '', 'CLEARED', 21060, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2019-02-25 10:06:29', '2019-04-05', 'ACTIVE'), (773, '2019-02-25', 'Century pools', 'CASH', ' Bangalore Karnataka', '', 591, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Century pools', ' Bangalore Karnataka', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-25 11:45:33', '', 'ACTIVE'), (774, '2019-02-26', 'Super shine car wash', 'CASH', ' Bangalore Karnataka', '', 581, 'No', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Super shine car wash', ' Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-26 05:52:33', '', 'ACTIVE'), (775, '2019-02-26', 'Pragathi Polymers', 'JB-21022019/726', ' Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Pragathi Polymers', ' Bangalore Karnataka', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-26 06:15:53', '2019-04-05', 'ACTIVE'), (776, '2019-02-26', 'Siddi Coaching', 'CASH', ' ', '', 593, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1000\"]', '9%', '18%', 0, 'Siddi Coaching', ' ', '9%', 0, 0, 0, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-02-26 12:09:01', '', 'ACTIVE'), (777, '2019-02-28', 'vsugrappa KPCC', 'JB-28022019/727', ' Bangalore Karnataka', '', 594, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"25000\"]', '9%', '18%', 0, 'vsugrappa KPCC', 'Bangalore Karnataka', '9%', 0, 0, 0, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-28 04:33:37', '2019-03-12', 'ACTIVE'), (778, '2019-02-28', 'pankajsiracademy', 'JB-22022019/728', 'Krishna Reddy Arcade, 2nd floor Above Wok with Chung, Opp Aayug Hospital, Next To Biryani Hydrabad, Varthur Main Road, Near Spice Garden, Munnekolala, Marathahalli Bangalore Karnataka', '', 0, '', '1', '[\"Additional Requirments in Website Development\"]', '[\"998314\"]', '[\"25423\"]', '9%', '18%', 0, 'pankajsiracademy', 'Krishna Reddy Arcade, 2nd floor Above Wok with Chung, Opp Aayug Hospital, Next To Biryani Hydrabad, Varthur Main Road, Near Spice Garden, Munnekolala, Marathahalli Bangalore Karnataka', '9%', 2289, 2289, 25423, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-02-28 06:37:56', '2019-04-05', 'ACTIVE'), (779, '2019-02-28', 'Koncept Kreation', 'JB-25022019/729', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka', '', 580, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4694\"]', '9%', '18%', 0, 'Koncept Kreation', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka', '9%', 423, 423, 4694, 5540, 'Five Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 5540, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-28 06:40:29', '', 'ACTIVE'), (780, '2019-02-28', 'Turbmax', 'JB-25022019/730', 'Batrahalli near ICiC bank Bangalore Karnataka', '', 588, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7500\"]', '9%', '18%', 0, 'Turbmax', 'Batrahalli near ICiC bank Bangalore Karnataka', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'CLEARED', 8850, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-28 06:44:02', '', 'ACTIVE'), (781, '2019-02-28', 'Avyukt Pharmaceuticals', 'JB-25022019/731', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka', '', 587, '29AJDPC699INIZK', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8474\"]', '9%', '18%', 0, 'Avyukt Pharmaceuticals', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-28 06:45:37', '', 'ACTIVE'), (782, '2019-02-28', 'Unity Strength Associates', 'JB-28022019/732', 'Hinkal Mysore Karnataka ', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1500\"]', '9%', '18%', 0, 'Unity Strength Associates', 'Hinkal Mysore Karnataka ', '9%', 0, 0, 0, 1500, 'One Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 1500, '', 157, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-02-28 11:47:41', '', 'ACTIVE'), (783, '2019-03-01', 'Unity Strength Associates', 'CASH', 'Hinkal Mysore Karnataka ', '', 0, '', '1', '[\"Logo design\"]', '[\"998314\"]', '[\"1500\"]', '9%', '18%', 0, 'Unity Strength Associates', 'Hinkal Mysore Karnataka ', '9%', 0, 0, 0, 1500, 'One Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 1500, '', 157, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-01 13:43:16', '', 'ACTIVE'), (784, '2019-03-01', 'Blitzkrieg Audio Video Pvt Ltd', 'JB-01032019/733', '', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"13559.32 \"]', '9%', '18%', 0, 'Blitzkrieg Audio Video Pvt Ltd', '', '9%', 1220, 1220, 13559, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-05 10:33:02', '2019-04-05', 'ACTIVE'), (785, '2019-03-06', 'Vision Tutorials', 'CASH', 'VISION TUTORIALS @ VIDYA VAIBHAV PUBLIC SCHOOL NEAR SBI BANK, MATHIKERE, BANGALORE-560054', '', 570, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'Vision Tutorials', 'VISION TUTORIALS @ VIDYA VAIBHAV PUBLIC SCHOOL NEAR SBI BANK, MATHIKERE, BANGALORE-560054', '9%', 0, 0, 0, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 2500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-06 05:51:24', '', 'ACTIVE'), (786, '2019-03-06', 'Thapasia Enterprises', 'JB-06032019/734', '', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12711.86\"]', '9%', '18%', 0, 'Thapasia Enterprises', '', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-06 06:27:13', '2019-04-05', 'ACTIVE'), (787, '2019-03-07', 'Veena Group', 'JB-07032019/735', 'basaveshwara Nagar Bangalore Karnataka ', '', 0, '', '1', '[\"E - comm Website Development\"]', '[\"998314\"]', '[\"12711.86\"]', '9%', '18%', 0, 'Veena Group', 'basaveshwara Nagar Bangalore Karnataka ', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 163, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-07 07:51:37', '2019-04-05', 'ACTIVE'), (788, '2019-03-07', 'Redstone Retreat', 'JB-07032019/736', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. ', '', 0, '', '1', '[\"Payment gateway Integration\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 630, 'Redstone Retreat', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. ', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, '', 162, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-07 11:07:46', '2019-03-21', 'ACTIVE'), (789, '2019-03-07', 'Land Marq', 'CASH', 'No: 14, 4th floor,Krishna Complex, Museum Road,Off St. Marks Road, (opp. SBI Headoffice),', '', 0, '29AAECH3760K1Z9', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'Land Marq', 'No: 14, 4th floor,Krishna Complex, Museum Road,Off St. Marks Road, (opp. SBI Headoffice),', '9%', 458, 458, 5085, 6000, 'Six thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-03-07 11:13:24', '2019-04-05', 'ACTIVE'), (790, '2019-03-08', 'Rajiv Dental Care Centre', 'JB-08032019/737', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar,Bangalore', '', 464, '', '1', '[\"Dentics AMC\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar,Bangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-08 06:11:04', '', 'ACTIVE'), (791, '2019-03-08', 'Unity Strength Associates', 'CASH', 'Hinkal Mysore Karnataka ', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Unity Strength Associates', 'Hinkal Mysore Karnataka ', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 157, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-08 12:29:52', '', 'ACTIVE'), (792, '2019-03-11', 'Laveera Technologies Pvt Ltd', 'JB-11032019/738', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase,Bangalore', '', 0, '', '1', '[\"Hosting for 2018 - 2019\\r\\n( 6\\/5\\/2018 - 5\\/5\\/2019)\"]', '[\"99834\"]', '[\"3108\"]', '9%', '18%', 0, 'Laveera Technologies Pvt Ltd', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase,Bangalore', '9%', 280, 280, 3108, 3668, 'Three Thousand Six Hundred and Sixty Eight Rupees Only', 0, '', 'CLEARED', 3668, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-11 07:41:11', '2019-03-18', 'ACTIVE'), (793, '2019-03-11', 'Dental Diagnostic Centre', 'JB-11032019/739', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102', '', 0, '', '1', '[\"2 website hosting for year 2019-20\"]', '[\"998314\"]', '[\"7000\"]', '9%', '', 0, 'Dental Diagnostic Centre', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102', '9%', 630, 630, 7000, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', '', 'Shri priya ', 'Shri priya ', '2019-03-11 08:24:02', '2019-03-21', 'ACTIVE'), (794, '2019-03-11', 'Snoring and sleep annea clinic.', 'JB-11032019/740', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035', '', 571, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"16288\"]', '9%', '18%', 0, 'Snoring and sleep annea clinic.', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035', '9%', 1466, 1466, 16288, 19220, 'Nineteen Thousand Two Hundred Twenty Rupees Only', 0, '', 'CLEARED', 19220, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-11 11:29:18', '', 'ACTIVE'), (795, '2019-03-11', 'Yashas Dental Health Care', 'JB-11032019/741', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041.', '', 0, '', '1', '[\"AMC for DentICS application\\r\\n(Sri Krishna Sevashrama Hospital)\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Yashas Dental Health Care', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041.', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Shri priya ', '2019-03-11 13:25:35', '2019-03-19', 'ACTIVE'), (796, '2019-03-12', 'vsugrappa KPCC', 'cash', '', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'vsugrappa KPCC', '', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-03-12 10:29:27', '2019-03-12', 'ACTIVE'), (797, '2019-03-12', 'BN Chandrappa KPCC', 'CASH', '', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'BN Chandrappa KPCC', '', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-03-12 10:59:20', '2019-03-13', 'ACTIVE'), (798, '2019-03-13', 'Indo Swiss Anti - Shock Limited', 'JB-12032019/742', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', '', 0, '29AAACI5889G1Z3', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"7627\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', '9%', 687, 687, 7627, 9000, 'Nine Thousand Rupees Only', 0, '', 'CLEARED', 9000, '', 172, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-13 05:03:12', '2019-03-28', 'ACTIVE'), (799, '2019-03-13', 'Vedic Vedant', 'CASH', '', '', 566, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'Vedic Vedant', '', '9%', 0, 0, 0, 22000, 'Twenty Two Thousand Rupees Only', 0, '', 'CLEARED', 22000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-13 06:42:53', '', 'INACTIVE'), (800, '2019-03-14', 'Savadi Dental Care', 'JB-14032019/743', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar,Bangalore', '', 2, '', '1', '[\"SMS Pack Renewal\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar,Bangalore', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-14 05:08:03', '', 'ACTIVE'), (801, '2019-03-14', 'Krishnapriya Handlooms', 'JB-14032019/744', '# 104/B, Ground Floor, 38th Cross, 26th Main, 9th Block Jayanagar, Bangalore -560069 ', '', 0, '29ACKPN8890R1Z7', '1', '[\"AMC Renewal 2019 - 2020\\r\\nwww.krishnapriya.co\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Krishnapriya Handlooms', '# 104/B, Ground Floor, 38th Cross, 26th Main, 9th Block Jayanagar, Bangalore -560069 ', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 173, '', 'EXPIRED', 'Normal', 'Admin', 'Subramanya', '2019-03-14 06:33:30', '2019-04-09', 'ACTIVE'), (802, '2019-03-14', 'Sadhguru puja', 'CASH', 'Rajarajeshwari Nagar', '', 585, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Sadhguru puja', 'Rajarajeshwari Nagar', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-14 09:59:24', '', 'ACTIVE'), (803, '2019-03-18', 'A&M Edu Solution', 'JB-18032019/745', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', '', 0, '', '1', '[\"Additional Requirements\"]', '[\"998314\"]', '[\"10169\"]', '9%', '18%', 0, 'A&M Edu Solution', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', '9%', 916, 916, 10169, 12000, 'Twelve Thousand Rupees Only', 0, '', 'CLEARED', 12000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-18 05:29:04', '2019-04-05', 'ACTIVE'), (804, '2019-03-18', 'Uninox', 'JB-18032019/746', 'Bangalore, Karnataka', '', 0, '', '1', '[\"ERP Application\"]', '[\"998314\"]', '[\"8474.58\"]', '9%', '18%', 0, 'Uninox', 'Bangalore, Karnataka', '9%', 763, 763, 8475, 10000, ' Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2019-03-18 05:41:19', '2019-03-22', 'ACTIVE'), (805, '2019-03-18', 'Shashidhar Hebbal KPCC', 'CASH', 'Bangalore, Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Shashidhar Hebbal KPCC', 'Bangalore, Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-03-18 07:02:19', '2019-03-18', 'ACTIVE'), (806, '2019-03-18', 'Principal', 'JB-18032019/747', 'Govt Pre University College\r\nBH Road, Tumkur', '', 0, '', '4', '[\"Domain & Privacy registration (5 years)\",\"Web designing and Development\",\"Hosting service(3 years)\",\"Web security-SSL Cetificate(1 year)\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"41916\",\"41916\",\"41916\",\"41916\"]', '9%', '18%', 0, 'Principal', 'Govt Pre University College\r\nBH Road, Tumkur', '9%', 3772.5, 3772.5, 41916, 49461, 'Forty Nine Thousand Four Hundred and Sixty One Rupees Only', 0, '', 'PENDING', 49461, '', 0, '', 'WAITING', 'Profomo', 'Shri priya ', '', '2019-03-18 10:33:27', '', 'INACTIVE'), (807, '2019-03-18', 'BN Chandrappa KPCC', 'CASH', 'Bangalore, Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'BN Chandrappa KPCC', 'Bangalore, Karnataka', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-18 12:00:13', '', 'ACTIVE'), (808, '2019-03-19', 'Orangecountyspa', 'CASH', 'Vijaynagar Bangalore Karnataka ', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Orangecountyspa', 'Vijaynagar Bangalore Karnataka ', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 176, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-19 13:09:54', '', 'ACTIVE'), (809, '2019-03-20', 'Kou-Chan technologies Pvt Ltd', 'JB-20032019/748', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001', '', 557, '29AAACE7439E1ZL', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kou-Chan technologies Pvt Ltd', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'CLEARED', 17700, 'Paid in other invoice', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-20 06:26:01', '', 'ACTIVE'), (810, '2019-03-20', 'Dsign experts', 'JB-20032019/749', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore', '', 256, '', '1', '[\"ZOHO mail( 5 )\"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'Dsign experts', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore', '9%', 225, 225, 2500, 2950, 'Two Thousand Nine Hundred Fifty Rupees Only', 0, '', 'CLEARED', 2950, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-20 07:15:26', '', 'ACTIVE'), (811, '2019-03-20', 'Kou-Chan technologies Pvt Ltd', 'JB-20032019/748', 'Kou - Chan Knowledge Convergence PVT Ltd 205 Brigade Gardens Chruch Street Bangalore - 560001', '', 557, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kou-Chan technologies Pvt Ltd', 'Kou - Chan Knowledge Convergence PVT Ltd 205 Brigade Gardens Chruch Street Bangalore - 560001', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2019-03-20 07:30:34', '', 'INACTIVE'), (812, '2019-03-20', 'National Human Rights', 'CASH', 'Indranagar bangalore', '', 576, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'National Human Rights', 'Indranagar bangalore', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-20 12:52:49', '', 'ACTIVE'), (813, '2019-03-20', 'Educate Overseas', 'JB-20032019/750', '#60, 18th Main Road, 22nd cross, HSR Layout, Sector-3, Bengaluru, Karnataka 560102', '', 288, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Educate Overseas', '#60, 18th Main Road, 22nd cross, HSR Layout, Sector-3, Bengaluru, Karnataka 560102', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-20 13:09:33', '', 'ACTIVE'), (814, '2019-03-21', 'Unity Strength Associates', 'JB-21032019/751', '#04, M.N Tower Hinkal Signal above Savi Ruchi Hotel Hinkal Mysore - 570017', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"1694.92\"]', '9%', '18%', 0, 'Unity Strength Associates', '#04, M.N Tower Hinkal Signal above Savi Ruchi Hotel Hinkal Mysore - 570017', '9%', 153, 153, 1695, 2000, 'One Thousand Six Hundred and Ninety Four Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-21 11:38:41', '2019-04-05', 'ACTIVE'), (815, '2019-03-21', 'RangaNayaki Food Products', 'JB-21032019/752', 'Bangalore Karnataka', '', 606, '', '1', '[\"Logo Design\"]', '[\"998314\"]', '[\"2118\"]', '9%', '18%', 0, 'RangaNayaki Food Products', 'Bangalore Karnataka', '9%', 191, 191, 2118, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 2500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-21 13:10:10', '', 'ACTIVE'), (816, '2019-03-22', 'Intiprocure Private Limited', 'JB-22032019/753', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '', 519, '', '1', '[\"Website Devleopment\"]', '[\"998314\"]', '[\"48642.38\"]', '9%', '18%', 0, 'Intiprocure Private Limited', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '9%', 4378, 4378, 48642, 57398, 'Fifty Seven Thousand Three Hundred and Ninety Eight Rupees Only', 0, '', 'CLEARED', 57398, 'No Difference', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2019-03-22 06:34:50', '2019-10-10', 'ACTIVE'), (817, '2019-03-25', 'Think of Green', 'JB-23032019/754', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka 0', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Think of Green', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'PARTIAL', 7000, '', 178, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-25 06:21:53', '', 'ACTIVE'), (818, '2019-03-25', 'Principal', 'JB-25032019/755', 'Govt pre - university college\r\nBH Road, Tumkur- 572102\r\n0816-2272776', '', 608, '', '4', '[\"Domain & Privacy registration(5 Years)\",\"Web designing and development\",\"Hosting Service(3 Years)\",\"web security - SSL certificate(1 year)\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"5416\",\"27000\",\"7500\",\"2000\"]', '9%', '18%', 0, 'Principal', 'Govt pre - university college\r\nBH Road, Tumkur- 572102\r\n0816-2272776', '9%', 3772, 3772, 41916, 49460, 'Forty Nine Thousand Four Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 49460, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-03-25 08:31:00', '', 'ACTIVE'), (819, '2019-03-25', 'Spectrum Medical Publishers & Distributors ', 'JB-25032019/756', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"11864\"]', '9%', '18%', 0, 'Spectrum Medical Publishers & Distributors ', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076', '9%', 1068, 1068, 11864, 14000, 'Fourteen Thousand Rupees Only', 0, '', 'CLEARED', 14000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-25 08:57:28', '2019-03-25', 'ACTIVE'), (820, '2019-03-25', 'Caremycar', 'JB-25032019/757', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', '', 0, '', '1', '[\"Poster Design\"]', '[\"998314\"]', '[\"1271\"]', '9%', '18%', 0, 'Caremycar', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', '9%', 115, 115, 1271, 1500, 'One Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 1500, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-25 08:59:14', '2019-03-25', 'ACTIVE'), (821, '2019-04-03', 'Indus Valley Ayurvedic Centre', 'JB-03042019/787', 'Talavane Farm, Lalitadripura Rd, Chamundi Hill, Mysuru, Karnataka 570028', '', 0, '', '1', '[\"Android training and internship for Agvin\"]', '[\"998314\"]', '[\"42372.88\"]', '9%', '18%', 0, 'Indus Valley Ayurvedic Centre', 'Talavane Farm, Lalitadripura Rd, Chamundi Hill, Mysuru, Karnataka 570028', '9%', 3813, 3813, 42373, 50000, 'Fifty Thousand Rupees Only', 0, '', 'PARTIAL', 50000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Ajay', '2019-03-26 06:04:57', '2019-05-17', 'ACTIVE'), (822, '2019-03-26', 'Charunya Design Tech', 'JB-26032019/758', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage, Bangalore,karnataka', '', 308, '', '1', '[\"AMC Renewal for 2018-2019\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Charunya Design Tech', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage, Bangalore,karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-26 08:26:31', '', 'INACTIVE'), (823, '2019-03-26', 'FDOT', 'CASH', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027', '', 0, '29AAEFF0091N1Z5', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6644\"]', '9%', '18%', 0, 'FDOT', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027', '9%', 598, 598, 6644, 7840, 'Seven Thousand Eight Hundred Forty Rupees Only', 0, '', 'CLEARED', 7840, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-03-26 09:57:11', '2019-03-26', 'ACTIVE'), (824, '2019-03-27', 'Trupthi dental care', 'JB-27032019/759', 'NO.29,1st Floor,3rd Stage,Next to SBM,\r\nVinayaka Layout, Vijayanagar,\r\nBengaluru-560040.', '', 298, '', '1', '[\"Dentics AMC \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,\r\nVinayaka Layout, Vijayanagar,\r\nBengaluru-560040.', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-27 06:34:12', '', 'ACTIVE'), (825, '2019-03-27', 'Celestain', 'JB-27032019/760', '', '', 160, '', '1', '[\"AMC charges\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Celestain', '', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-27 08:47:28', '', 'ACTIVE'), (826, '2019-03-27', 'Durvas Trading inc ', 'JB-27032019/761', '', '', 512, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3389\"]', '9%', '18%', 0, 'Durvas Trading inc ', '', '9%', 305.5, 305.5, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'PENDING', 4000, '', 0, '', 'WAITING', 'Normal', 'Shri priya ', '', '2019-03-27 09:01:27', '', 'INACTIVE'), (827, '2019-03-27', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-27032019/761', 'Mysore Karnataka', '', 169, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"22262\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'Mysore Karnataka', '9%', 2004, 2004, 22262, 26270, 'Twenty Six Thousand Two Hundred Seventy Rupees Only', 0, '', 'CLEARED', 26270, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-27 10:06:07', '', 'ACTIVE'), (828, '2019-03-27', 'Dr karthik Shetty', 'JB-27032019/762', 'Bangalore', '', 397, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3800\"]', '9%', '18%', 0, 'Dr karthik Shetty', 'Bangalore', '9%', 342, 342, 3800, 4484, 'Four Thousand Four Hundred and Eighty Four Rupees Only', 0, '', 'CLEARED', 4484, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', '', '2019-03-27 10:22:04', '', 'ACTIVE'), (829, '2019-03-27', 'T.saifuddin & co', 'JB-27032019/763', 'Bangalore, Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"13559\"]', '9%', '18%', 0, 'T.saifuddin & co', 'Bangalore, Karnataka', '9%', 1221, 1221, 13559, 16000, 'Sixteen Thousand Rupees Only', 0, '', 'CLEARED', 16000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-27 10:40:54', '2019-04-05', 'ACTIVE'), (830, '2019-03-27', 'xyramsoft', 'JB-05062018/395', 'bangalore, karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"77627\"]', '9%', '18%', 0, 'xyramsoft', 'bangalore, karnataka', '9%', 6987, 6987, 77627, 91600, 'Ninety One Thousand Six Hundred Rupees Only', 0, '', 'CLEARED', 91600, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-27 10:46:41', '2019-04-05', 'ACTIVE'), (831, '2019-03-27', 'xyramsoft', 'JB-27032019/764', 'Bangalore, Karnataka', '', 0, '', '1', '[\"website Development\"]', '[\"998314\"]', '[\"22881\"]', '9%', '18%', 0, 'xyramsoft', 'Bangalore, Karnataka', '9%', 2060, 2060, 22881, 27000, 'Twenty Seven Thousand Rupees Only', 0, '', 'CLEARED', 27000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-27 10:50:08', '2019-04-05', 'ACTIVE'), (832, '2019-03-27', 'Krishnapriya Handlooms', 'JB-27032019/765', 'Bangalore, Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"10748\"]', '9%', '18%', 0, 'Krishnapriya Handlooms', 'Bangalore, Karnataka', '9%', 968, 968, 10748, 12683, 'Twelve Thousand Six Hundred and Eighty Three Rupees Only', 0, '', 'CLEARED', 12683, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-27 11:16:40', '2019-04-05', 'ACTIVE'), (833, '2019-03-28', 'Caremycar', 'JB-28032019/766', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Caremycar', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', '9%', 382, 382, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-28 05:40:15', '2019-04-05', 'ACTIVE'), (834, '2019-03-28', 'Shashidhar Hebbal KPCC', 'CASH', 'Bangalore, Karnataka', '', 603, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Shashidhar Hebbal KPCC', 'Bangalore, Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', '', '2019-03-28 11:15:34', '', 'ACTIVE'), (835, '2019-03-29', 'KISA', 'JB-29032019/767', 'St. Francis School\r\nPost Box No.3417, 3rd Block, 8th Main, \r\nKoramangala, Bengaluru – 560034', '', 0, '', '1', '[\"AMC Renewal 2019-20\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'KISA', 'St. Francis School\r\nPost Box No.3417, 3rd Block, 8th Main, \r\nKoramangala, Bengaluru – 560034', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Subramanya', '2019-03-29 05:52:22', '2019-04-01', 'ACTIVE'), (836, '2019-03-29', 'Intiprocure Private Limited', 'CASH', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '', 519, '', '1', '[\"Online Biddiong Application\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 0, 'Intiprocure Private Limited', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '9%', 0, 0, 0, 40000, 'Forty Thousand Rupees Only', 0, '', 'CLEARED', 40000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Ajay', '2019-03-29 06:11:28', '2019-10-10', 'ACTIVE'), (837, '2019-03-29', 'ALT training college', 'JB-29032019/768', '‘ALT Tower’,Kaikondanahalli,Sarjapur Road, Near Bellandur Gate,Carmelram Post\r\nBangalore – 560035', '', 0, '29AAWFA3597J1ZJ', '1', '[\"www.alttrainingcollege.in\\r\\nAMC Renewal 2018 -19\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'ALT training college', '‘ALT Tower’,Kaikondanahalli,Sarjapur Road, Near Bellandur Gate,Carmelram Post\r\nBangalore – 560035', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-03-29 08:55:14', '2019-03-29', 'ACTIVE'), (838, '2019-04-04', 'Yume Tools', 'JB-04042019/769', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area, Bengaluru - 560058', '', 609, '', '2', '[\"Website Development\",\"Hosting with SSL\"]', '[\"998314\",\"998314\"]', '[\"14000\",\"3500\"]', '9%', '18%', 0, 'Yume Tools', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area, Bengaluru - 560058', '9%', 1575, 1575, 17500, 20650, 'Twenty Thousand Six Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 20650, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-04-04 12:50:37', '', 'ACTIVE'), (839, '2019-04-15', 'Theorangecountyspa', 'CASH', 'SN 13/16 &17, 2nd Floor,intermediate ring road, Egipura, Koramangala, near Sony world signal, Bangalore 560095. Karnataka.India', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Theorangecountyspa', 'SN 13/16 &17, 2nd Floor,intermediate ring road, Egipura, Koramangala, near Sony world signal, Bangalore 560095. Karnataka.India', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-04-15 05:23:26', '2019-04-15', 'ACTIVE'), (840, '2019-04-15', 'Shashidhar Hebbal KPCC', 'CASH', 'Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Shashidhar Hebbal KPCC', 'Bangalore Karnataka', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-04-15 05:37:49', '2019-04-15', 'ACTIVE'), (841, '2019-04-04', 'Hanuman Astrologer', 'JB-04042019/772', 'Kengeri, karnataka, India', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Hanuman Astrologer', 'Kengeri, karnataka, India', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 05:44:46', '2019-04-15', 'ACTIVE'), (842, '2019-04-09', 'Indo Swiss Anti - Shock Limited', 'JB-09042019/773', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"6372\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', '9%', 574, 574, 6372, 7520, 'Seven Thousand Five Hundred Twenty Rupees Only', 0, '', 'CLEARED', 7520, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 06:14:21', '2019-04-15', 'ACTIVE'), (843, '2019-04-10', 'Century pools', 'CASH', 'Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Century pools', 'Bangalore Karnataka', '9%', 0, 0, 0, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'EXPIRED', 'Cash', 'Shri priya ', 'Shri priya ', '2019-04-15 07:03:34', '2019-04-15', 'ACTIVE'), (844, '2019-04-11', 'Royal Stitches', 'JB-11042019/774', 'Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"17796\"]', '9%', '18%', 0, 'Royal Stitches', 'Bangalore Karnataka', '9%', 1602, 1602, 17796, 21000, 'Twenty One Thousand Rupees Only', 0, '', 'CLEARED', 21000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 07:12:53', '2019-04-15', 'INACTIVE'), (845, '2019-04-11', 'S R Marble and Granite', 'JB-11042019/775', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"8423\"]', '9%', '18%', 0, 'S R Marble and Granite', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk', '9%', 759, 759, 8423, 9940, 'Nine Thousand Nine Hundred Forty Rupees Only', 0, '', 'PARTIAL', 9940, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 07:19:26', '2019-04-15', 'ACTIVE'), (846, '2019-04-12', 'Truecon Enterprises', 'JB-12042019/776', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '', 0, '', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 07:23:10', '2019-04-15', 'ACTIVE'), (847, '2019-04-13', 'NIRVANBODHI Yoga', 'JB-13042019/777', 'Bangalore Karnataka', '', 0, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, 'NIRVANBODHI Yoga', 'Bangalore Karnataka', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Shri priya ', 'Shri priya ', '2019-04-15 07:39:23', '2019-04-15', 'ACTIVE'), (848, '2019-04-30', 'Excel Diagnostics', 'JB-30042019/778', 'Mysore ', '', 58, '', '1', '[\"Server and Domine charges . Backup of complete data will be given in excel and sql format \"]', '[\"\"]', '[\"10000\"]', '9%', '18%', 0, 'Excel Diagnostics', 'Mysore ', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-04-30 08:44:52', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (849, '2019-04-19', 'BlueIndia', 'Cash', 'Bangalore', '', 0, '', '1', '[\"Application development advance at 120000\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'BlueIndia', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-05-08 12:17:38', '2019-05-08', 'ACTIVE'), (850, '2019-04-22', 'S R Marble and Granite', 'JB-22042019/779', 'Bangalore', '', 0, '', '1', '[\"AMC for website and email 2019-20\"]', '[\"998314\"]', '[\"11122\"]', '9%', '18%', 0, 'S R Marble and Granite', 'Bangalore', '9%', 1001, 1001, 11122, 13124, 'Thirteen Thousand One Hundred and Twenty Four Rupees Only', 0, '', 'CLEARED', 13124, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-05-08 12:21:39', '2019-05-08', 'ACTIVE'), (851, '2019-05-08', 'Astrologer Gururaj', 'Cash', 'Bangalore', '', 613, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Astrologer Gururaj', 'Bangalore', '9%', 0, 0, 0, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-08 12:30:08', '', 'ACTIVE'), (852, '2019-05-08', 'Poornaprajna International School', 'JB-30042019/780', 'Bangalore', '', 279, '', '1', '[\"AMC with penalty for website\"]', '[\"998314\"]', '[\"9500\"]', '9%', '18%', 0, 'Poornaprajna International School', 'Bangalore', '9%', 855, 855, 9500, 11210, 'Eleven Thousand Two Hundred Ten Rupees Only', 0, '', 'CLEARED', 11210, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-08 12:39:57', '', 'ACTIVE'), (853, '2019-05-01', 'Caremycar', 'Cash', 'Bangalore', '', 0, '', '1', '[\"Website development- Balance payment\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Caremycar', 'Bangalore', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-05-08 12:50:20', '2019-05-08', 'ACTIVE'), (854, '2019-05-02', 'SAP CECC', 'Cash', 'Bangalore', '', 0, '', '1', '[\"Advance towards MLM application\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'SAP CECC', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-05-08 12:57:03', '2019-05-08', 'ACTIVE'), (855, '2019-05-03', 'Vedic Vedant', 'Cash', 'Gurgaon', '', 0, '', '1', '[\"Final payment for application\"]', '[\"998314\"]', '[\"72000\"]', '9%', '18%', 0, 'Vedic Vedant', 'Gurgaon', '9%', 0, 0, 0, 72000, 'Seventy Two Thousand Rupees Only', 0, '', 'CLEARED', 72000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-05-08 12:58:01', '2019-05-08', 'INACTIVE'), (856, '2019-05-11', 'Pandit Rm Rao Guruji', 'Cash', 'Bangalore', '', 617, '', '1', '[\"Advance for website\"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'Pandit Rm Rao Guruji', 'Bangalore', '9%', 0, 0, 0, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 2500, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 05:59:56', '', 'ACTIVE'), (857, '2019-05-11', 'Nadiger Cabs', 'Cash', 'Bangalore', '', 614, '', '1', '[\"Advance for website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Nadiger Cabs', 'Bangalore', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 06:00:49', '', 'ACTIVE'), (858, '2019-05-11', 'Hanuman Astrologer', 'JB-11052019/781', 'Bangalore', '', 610, '', '1', '[\"Final payment for website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Hanuman Astrologer', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-11 06:02:02', '', 'ACTIVE'), (859, '2019-05-11', 'Sterling events', 'JB-11052019/782', 'Bangalore', '', 62, '', '1', '[\"AMC for year 2019-20\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Sterling events', 'Bangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-11 06:02:58', '', 'ACTIVE'), (860, '2019-05-11', 'SAP CECC', 'Cash', 'Bangalore', '', 568, '', '1', '[\"Advance for MLM application\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'SAP CECC', 'Bangalore', '9%', 0, 0, 0, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 06:10:03', '', 'ACTIVE'), (861, '2019-05-11', 'SAP CECC', 'Cash', 'Bangalore', '', 568, '', '1', '[\"Advance for MLM application\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'SAP CECC', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 06:10:59', '', 'ACTIVE'), (862, '2019-05-11', 'Lifesys', 'Cash', 'Bangalore', '', 590, '', '1', '[\"Advance for Application\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 0, 'Lifesys', 'Bangalore', '9%', 0, 0, 0, 40000, 'Forty Thousand Rupees Only', 0, '', 'CLEARED', 40000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 06:13:44', '', 'ACTIVE'), (863, '2019-05-11', 'BlueIndia', 'Cash', 'Bangalore', '', 615, '', '1', '[\"Advance for application development\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 0, 'BlueIndia', 'Bangalore', '9%', 0, 0, 0, 40000, 'Forty Thousand Rupees Only', 0, '', 'CLEARED', 40000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-11 06:17:01', '', 'ACTIVE'), (864, '2019-04-22', 'Aruna Cadd printers', 'JB-22042019/783', 'Bangalore', '', 0, '29ABLFA0922B1ZU', '1', '[\"Website AMC for 2019-2024\\r\\nIncludes: Domain & Hosting renewal\"]', '[\"998314\"]', '[\"17996\"]', '9%', '18%', 0, 'Aruna Cadd printers', 'Bangalore', '9%', 1620, 1620, 17996, 21236, 'Twenty One Thousand Two Hundred and Thirty Six Rupees Only', 0, '', 'CLEARED', 21236, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-05-13 14:37:08', '2019-05-13', 'ACTIVE'), (865, '2019-05-14', 'Pragathi Polymers', 'JB-14052019/784', 'Bangalore', '', 582, '29AAXPV7858E1ZJ', '1', '[\"Balance of website development\"]', '[\"999314\"]', '[\"7762\"]', '9%', '18%', 0, 'Pragathi Polymers', 'Bangalore', '9%', 699, 699, 7762, 9160, 'Nine Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 9160, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-14 06:12:21', '', 'ACTIVE'), (866, '2019-05-14', 'Tanuja', 'JB-14052019/785', 'Mpowering skills\r\nBangalore', '', 128, '', '1', '[\"AMC for year 2019-20\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Tanuja', 'Mpowering skills\r\nBangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-14 06:14:41', '', 'ACTIVE'), (867, '2019-05-14', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-14052019/786', 'Mysore', '', 169, '29AAACG3912G1ZT', '1', '[\"AMC and changes to ERP\"]', '[\"998314\"]', '[\"33898\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'Mysore', '9%', 3051, 3051, 33898, 40000, 'Forty Thousand Rupees Only', 0, '', 'CLEARED', 40000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-14 06:39:53', '', 'ACTIVE'), (868, '2019-05-23', 'Sphoorthi Jyothi Foundation', 'Cash', 'Bangalore', '', 616, '', '1', '[\"Balance website payment\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Sphoorthi Jyothi Foundation', 'Bangalore', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-23 06:16:36', '', 'ACTIVE'), (869, '2019-05-23', 'Elite Canals Dental Clinic', 'JB-20052019/787', 'Bangalore', '', 618, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'Elite Canals Dental Clinic', 'Bangalore', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 25960, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-23 06:25:13', '', 'ACTIVE'), (870, '2019-05-23', 'Elite Canals Dental Clinic', 'JB-20052019/787', 'Bangalore', '', 618, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'Elite Canals Dental Clinic', 'Bangalore', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'PENDING', 25960, '', 0, '', 'WAITING', 'Normal', 'Subramanya', '', '2019-05-23 06:25:13', '', 'INACTIVE'), (871, '2019-05-23', 'Rajeev', 'Cash', 'Bagalkot', '', 0, '', '1', '[\"ERP Application\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Rajeev', 'Bagalkot', '9%', 27000, 27000, 300000, 50000, 'Fifty Thousand Rupees Only', 0, '', 'PARTIAL', 50000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-05-23 06:32:36', '2019-05-28', 'ACTIVE'), (872, '2019-05-23', 'Calieo Properties Care Taker', 'Cash', 'Bangalore', '', 583, '', '1', '[\"Balance payment for website\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Calieo Properties Care Taker', 'Bangalore', '9%', 720, 720, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-23 08:09:40', '', 'ACTIVE'), (873, '2019-05-23', 'UPJ Infotech Pvt Ltd', 'JB-23052019/788', '1st floor, No47, Savandappa, Magadi main road, Agrahara Dasarahalli, Bangalore-560079', '', 620, '29AACCU3188N1ZM', '3', '[\"Website Hosting\",\"5 Email id Configuration (Yandex)\",\"Service Charge\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"1700\",\"3500\",\"1500\"]', '9%', '18%', 0, 'UPJ Infotech Pvt Ltd', '1st floor, No47, Savandappa, Magadi main road, Agrahara Dasarahalli, Bangalore-560079', '9%', 603, 603, 6700, 7906, 'Seven Thousand Nine Hundred Six Rupees Only', 0, '', 'CLEARED', 7906, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-23 08:21:45', '', 'ACTIVE'), (874, '2019-05-24', 'Favorito', 'Cash', '', '', 621, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"26000\"]', '9%', '18%', 4680, 'Favorito', '', '9%', 0, 0, 26000, 30680, 'Thirty Thousand Six Hundred Eighty Rupees Only', 0, '', 'PARTIAL', 30680, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-24 08:46:37', '', 'INACTIVE'), (875, '2019-05-25', 'Aditi Consultancy', 'JB-25052019/789', 'JP Nagar\r\nBangalore', '', 0, '29AAJPR7984D1Z0', '3', '[\"Hosting\",\"SSL\",\"AMC for year 2019-20\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"2500\",\"3500\",\"1000\"]', '9%', '18%', 0, 'Aditi Consultancy', 'JP Nagar\r\nBangalore', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-05-25 07:07:37', '2019-06-04', 'ACTIVE'), (876, '2019-05-25', 'Laveera Technologies Pvt Ltd', 'JB-25052019/790', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', '', 40, '29AADCL2628R1ZV', '1', '[\"Hosting renewal for 2019-20\"]', '[\"998314\"]', '[\"3108\"]', '9%', '18%', 0, 'Laveera Technologies Pvt Ltd', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore', '9%', 280, 280, 3108, 3668, 'Three Thousand Six Hundred and Sixty Eight Rupees Only', 0, '', 'CLEARED', 3668, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-05-25 08:16:37', '', 'ACTIVE'), (877, '2019-05-29', 'VidyaJyothi Foundation', 'Cash', 'Bangalore', '', 332, '', '1', '[\"AMC for year 2019-20\"]', '[\"998314\"]', '[\"4500\"]', '9%', '18%', 0, 'VidyaJyothi Foundation', 'Bangalore', '9%', 414, 414, 4599, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-05-29 12:52:57', '', 'ACTIVE'), (878, '2019-06-04', 'BlueIndia', 'Cash', 'Bangalore', '', 615, '', '1', '[\"Advance payment-3\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'BlueIndia', 'Bangalore', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-04 07:53:12', '', 'ACTIVE'), (879, '2019-06-04', 'BlueIndia', 'Cash', 'Bangalore', '', 615, '', '1', '[\"Advance payment-4\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 0, 'BlueIndia', 'Bangalore', '9%', 0, 0, 0, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-04 07:57:37', '', 'ACTIVE'), (880, '2019-06-04', 'Favorito', 'Cash', 'Bangalore', '', 621, '', '1', '[\"Advance payment-2\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Favorito', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'WAITING', 'Cash', 'Subramanya', '', '2019-06-04 12:41:56', '', 'INACTIVE'), (881, '2019-06-04', 'Yantrik Machine Tools', 'Cash', 'Bangalore', '', 623, '', '1', '[\"Advance payment\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Yantrik Machine Tools', 'Bangalore', '9%', 0, 0, 0, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-04 12:47:40', '', 'ACTIVE'), (882, '2019-06-05', 'Yume Tools', 'JB-05062019/791', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area, Bangalore', '', 609, '29AAAFY2529C1ZA', '1', '[\"Dynamic website, Hosting and SSL for 1 year\"]', '[\"998314\"]', '[\"17500\"]', '9%', '18%', 0, 'Yume Tools', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area, Bangalore', '9%', 1575, 1575, 17500, 20650, 'Twenty Thousand Six Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 20650, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-05 09:46:15', '', 'ACTIVE'), (883, '2019-06-06', 'Lifesys', 'Cash', 'Bangalore', '', 590, '', '1', '[\"Advance for application\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Lifesys', 'Bangalore', '9%', 0, 0, 0, 30000, 'Thirty Thousand Rupees Only', 0, '', 'CLEARED', 30000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-06 10:54:54', '', 'ACTIVE'), (884, '2019-06-06', 'Nelivigi Dental Clinic', 'JB-06062019/792', 'Bangalore', '', 292, '', '1', '[\"AMC for DentICS\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Nelivigi Dental Clinic', 'Bangalore', '9%', 0, 0, 0, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-06 10:55:36', '', 'ACTIVE'), (885, '2019-06-06', 'Siddhi Coaching', 'Cash', '', '', 593, '', '1', '[\"Website advance payment\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Siddhi Coaching', '', '9%', 0, 0, 0, 7500, 'Seven Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 7500, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-06 10:56:38', '', 'ACTIVE'), (886, '2019-06-10', 'Deco-Textil Pvt Ltd', 'JB-10062019/793', 'Bangalore', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC for 1 year for ERP\\r\\n(1-5-2019 to 31-04-2020)\\r\\n\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Bangalore', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'PARTIAL', 118000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-06-10 07:01:14', '2019-06-10', 'ACTIVE'), (887, '2019-06-10', 'Swansilk Pvt Ltd', 'JB-10062019/794', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"AMC for 1 year for ERP\\r\\n(1-05-2019 to 31-04-2020)\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', 'Bangalore', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'PARTIAL', 118000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-06-10 07:02:55', '2019-06-10', 'ACTIVE'), (888, '2019-06-11', 'Ashirwad Dental Clinic', 'Cash', '#680, 17th cross, 26th main, JP Nagar 6th phase, Near Nandini Hotel, Bangalore', '', 0, '', '2', '[\"DentICS AMC for 2019-20\",\"Website AMC for 2019-20\"]', '[\"998314\",\"998314\"]', '[\"4000\",\"6000\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th cross, 26th main, JP Nagar 6th phase, Near Nandini Hotel, Bangalore', '9%', 810, 810, 9000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', 'Subramanya', '2019-06-11 13:45:56', '2019-06-12', 'ACTIVE'), (889, '2019-06-21', 'Rajiv Dental Care Centre', 'JB-21062019/795', 'Hanumanthnagar, Bangalore', '', 464, '', '1', '[\"SMS Pack- 5000\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'Hanumanthnagar, Bangalore', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-21 05:28:09', '', 'ACTIVE'), (890, '2019-06-21', 'aswini agrotech', 'JB-21062019/796', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '2', '[\"AMC for year 2019-20\\r\\nwww.visavifoods.com\",\"Renewals for year 2019-2020\\r\\nwww.happygarden.in\"]', '[\"998314\",\"998314\"]', '[\"6000\",\"4000\"]', '9%', '18%', 0, 'Aswini Agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-06-21 05:31:35', '2019-06-21', 'ACTIVE'), (891, '2019-06-24', 'Creative Networks', 'JB-24062019/797', 'Bangalore', '', 89, '29AAMTE8611C1Z3', '1', '[\"AMC for year 2019-20\\r\\nwww.creativenetworks.net.in\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Creative Networks', 'Bangalore', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-24 07:35:03', '', 'ACTIVE'), (892, '2019-06-25', 'LASO ', 'JB-25062019/798', 'C/O Mr. Vigneshwar\r\nBangalore', '', 624, '', '1', '[\"Website development\\r\\nwww.laso.world\"]', '[\"998314\"]', '[\"25000\"]', '9%', '18%', 0, 'LASO ', 'C/O Mr. Vigneshwar\r\nBangalore', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 29500, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-25 12:27:54', '', 'ACTIVE'), (893, '2019-06-26', 'Excellence Dental Health Care', 'JB-26062019/799', 'Mangalore', '', 70, '', '1', '[\"AMC for DentICS\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Excellence Dental Health Care', 'Mangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-26 07:15:03', '', 'ACTIVE'), (894, '2019-06-26', 'Redstone Retreat', 'JB-26062019/800', 'Bangalore', '', 318, '', '1', '[\"AMC for website 2019-20\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Redstone Retreat', 'Bangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-26 07:17:01', '', 'ACTIVE'), (895, '2019-06-26', 'Avyukt Pharmaceuticals', 'JB-26062019/801', 'Bangalore', '', 587, '29AJDPC699INIZK', '1', '[\"Balance payment for website development\\r\\n\"]', '[\"98314\"]', '[\"8826\"]', '9%', '18%', 0, 'Avyukt Pharmaceuticals', 'Bangalore', '9%', 794, 794, 8826, 10414, 'Ten Thousand Four Hundred Fourteen Rupees Only', 0, '', 'CLEARED', 10414, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-26 07:20:48', '', 'ACTIVE'), (896, '2019-06-26', 'NIRVANBODHI Yoga', 'JB-26062019/802', 'Bangalore', '', 612, '', '1', '[\"Balance payment for website\"]', '[\"998314\"]', '[\"4916\"]', '9%', '18%', 0, 'NIRVANBODHI Yoga', 'Bangalore', '9%', 442, 442, 4916, 5800, 'Five Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 5800, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-26 07:24:30', '', 'ACTIVE'), (897, '2019-06-26', 'Leenik Biotech', 'Cash', 'Hyderabad', '', 628, '', '1', '[\"Advance for website\\r\\nleenikbiotech.com\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Leenik Biotech', 'Hyderabad', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'PARTIAL', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:16:39', '', 'ACTIVE'), (898, '2019-06-26', 'Lifesys', 'Cash', 'Bangalore', '', 590, '', '1', '[\"Advance payment\"]', '[\"998314\"]', '[\"25000\"]', '9%', '18%', 0, 'Lifesys', 'Bangalore', '9%', 0, 0, 0, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:20:27', '', 'ACTIVE'), (899, '2019-06-26', 'Build Wick Ventures', 'Cash', 'Bangalore', '', 629, '', '1', '[\"Advance for website development\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Build Wick Ventures', 'Bangalore', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:23:06', '', 'ACTIVE'), (900, '2019-06-26', 'SIRI Global Services', 'Cash', 'Bangalore', '', 630, '', '1', '[\"Advance towards website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'SIRI Global Services', 'Bangalore', '9%', 0, 0, 0, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:39:29', '', 'ACTIVE'), (901, '2019-06-26', 'Sky Autoparts', 'Cash', 'Bangalore', '', 631, '', '1', '[\"Advance for website development\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Sky Autoparts', 'Bangalore', '9%', 0, 0, 0, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:41:13', '', 'ACTIVE'), (902, '2019-06-26', 'Olive Money', 'Cash', 'Bangalore', '', 632, '', '1', '[\"Advance for website\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'Olive Money', 'Bangalore', '9%', 0, 0, 0, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:46:49', '', 'ACTIVE'), (903, '2019-06-26', 'Black Leaf', 'JB-26062019/803', 'Bangalore', '', 0, '', '1', '[\"Advance for website, brochure & visiting card\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Black Leaf', 'Bangalore', '9%', 0, 0, 3500, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ajay', '2019-06-26 08:51:09', '2020-01-08', 'ACTIVE'), (904, '2019-06-26', 'Lifesys', 'Cash', 'Bangalore', '', 590, '', '1', '[\"Advance for application\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Lifesys', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 08:53:29', '', 'ACTIVE'), (905, '2019-06-26', 'Favorito', 'JB-26062019/804', 'Bangalore', '', 0, '', '1', '[\"Website development\"]', '[\"998314\"]', '[\"26000\"]', '9%', '18%', 0, 'Favorito', 'Bangalore', '9%', 2340, 2340, 26000, 30680, 'Thirty Thousand Six Hundred Eighty Rupees Only', 0, '', 'CLEARED', 30680, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-06-26 08:55:06', '2019-06-26', 'ACTIVE'), (906, '2019-06-26', 'Zurie Developers', 'JB-26062019/805', 'Bangalore', '', 634, '', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"9000\"]', '9%', '18%', 0, 'Zurie Developers', 'Bangalore', '9%', 810, 810, 9000, 10620, 'Ten Thousand Six Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 10620, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-06-26 08:58:46', '', 'ACTIVE'), (907, '2019-06-26', 'Skytek', 'Cash', 'Bangalore', '', 636, '', '1', '[\"Advance for website and AMC\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Skytek', 'Bangalore', '9%', 0, 0, 0, 25000, 'Twenty Five Thousand Rupees Only', 0, '', 'CLEARED', 25000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 09:00:33', '', 'ACTIVE'), (908, '2019-06-26', 'Pandit Rm Rao Guruji', 'Cash', 'Bangalore', '', 617, '', '1', '[\"Advance payment 2\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Pandit Rm Rao Guruji', 'Bangalore', '9%', 0, 0, 0, 3000, 'Three Thousand Rupees Only', 0, '', 'CLEARED', 3000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-06-26 09:02:39', '', 'ACTIVE'), (909, '2019-07-13', 'Livsys Devices India Pvt Ltd', 'JB-13072019/806', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township, Bangalore', '', 590, '29AADCL7404P1ZZ', '1', '[\"Application Development\"]', '[\"998314\"]', '[\"150000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township, Bangalore', '9%', 13500, 13500, 150000, 177000, 'One Lakhs Seventy Seven Thousand Rupees Only', 0, '', 'PARTIAL', 177000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-07-13 08:11:55', '', 'ACTIVE'), (910, '2019-07-30', 'Account Bazaar', 'Cash', 'Bangalore', '', 651, '', '1', '[\"Advance for application\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Account Bazaar', 'Bangalore', '9%', 0, 0, 0, 100000, 'One Lakhs Rupees Only', 0, '', 'CLEARED', 100000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-30 12:11:28', '', 'ACTIVE'), (911, '2019-07-30', 'Nyshamedia Pvt Ltd', 'Cash', 'Bangalore', '', 635, '', '1', '[\"Website balance\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'Nyshamedia Pvt Ltd', 'Bangalore', '9%', 0, 0, 0, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-30 12:14:44', '', 'ACTIVE'), (912, '2019-07-30', 'Rajiv Dental Care Centre', 'JB-30072019/807', 'Bangalore', '', 464, '', '1', '[\"5000 SMS for DentICS application\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'Bangalore', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-30 12:17:40', '', 'ACTIVE'), (913, '2019-07-30', 'SIRI Global Services', 'Cash', 'bangalore', '', 630, '', '1', '[\"Balance Payment-2\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'SIRI Global Services', 'bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-30 12:19:59', '', 'ACTIVE'), (914, '2019-07-30', 'Kshathriya royal food and The Creams Corner', 'JB-30072019/808', 'Bangalore', '', 638, '', '1', '[\"Balance payment\"]', '[\"998314\"]', '[\"7458\"]', '9%', '18%', 0, 'Kshathriya royal food and The Creams Corner', 'Bangalore', '9%', 671, 671, 7458, 8800, 'Eight Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 8800, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-30 12:26:21', '', 'ACTIVE'), (915, '2019-07-30', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-30072019/809', 'Mysore', '', 169, '', '1', '[\"AMC and Changes to application\"]', '[\"998314\"]', '[\"90000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'Mysore', '9%', 8100, 8100, 90000, 106200, 'One Lakhs Six Thousand Two Hundred Rupees Only', 0, '', 'PARTIAL', 106200, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-30 12:35:09', '', 'ACTIVE'), (916, '2019-07-31', 'B4B Data Solutions', 'JB-31072019/810', 'Bangalore', '', 637, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'B4B Data Solutions', 'Bangalore', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PARTIAL', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-31 05:25:11', '', 'ACTIVE'), (917, '2019-07-31', 'Trishul Builders & Developers', 'JB-31072019/811', 'Bangalore', '', 642, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"9000\"]', '9%', '18%', 0, 'Trishul Builders & Developers', 'Bangalore', '9%', 810, 810, 9000, 10620, 'Ten Thousand Six Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 10620, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-31 06:06:09', '', 'ACTIVE'), (918, '2019-07-31', 'Pearl Wedding and Events', 'JB-31072019/812', 'Bangalore', '', 644, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Pearl Wedding and Events', 'Bangalore', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-31 06:56:59', '', 'ACTIVE'), (919, '2019-07-31', 'Visista', 'JB-31072019/813', 'Bangalore', '', 645, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"35000\"]', '9%', '18%', 0, 'Visista', 'Bangalore', '9%', 3150, 3150, 35000, 41300, 'Forty One Thousand Three Hundred Rupees Only', 0, '', 'PARTIAL', 41300, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-31 07:05:30', '', 'ACTIVE'), (920, '2019-07-31', 'Shreenidhi Tours and Travels', 'Cash', '', '', 646, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"9000\"]', '9%', '18%', 0, 'Shreenidhi Tours and Travels', '', '9%', 0, 0, 0, 9000, 'Nine Thousand Rupees Only', 0, '', 'CLEARED', 9000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-31 07:25:17', '', 'ACTIVE'), (921, '2019-07-31', 'silicon Education', 'Cash', 'Bangalore', '', 647, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'silicon Education', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-31 07:48:35', '', 'ACTIVE'), (922, '2019-07-31', 'Skytek', 'Cash', 'Bangalore', '', 636, '', '1', '[\"website application\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'Skytek', 'Bangalore', '9%', 0, 0, 0, 20000, 'Twenty Thousand Rupees Only', 0, '', 'CLEARED', 20000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-07-31 08:12:56', '', 'ACTIVE'), (923, '2019-07-31', 'Manju Design Build', 'JB-31072019/814', 'Bangalore', '', 123, '', '1', '[\"Website AMC\"]', '[\"998314\"]', '[\"3814\"]', '9%', '18%', 0, 'Manju Design Build', 'Bangalore', '9%', 343, 343, 3814, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-07-31 08:33:34', '', 'ACTIVE'), (924, '2019-07-29', 'Royal Electricals', 'JB-01082019/815', 'Bangalore', '', 0, '29AJKPJ5251H1Z0', '1', '[\"Static website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Royal Electricals', 'Bangalore', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'PARTIAL', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-01 06:00:54', '2019-08-01', 'ACTIVE'), (925, '2019-08-02', 'Brindavan hospital', 'JB-02082019/816', 'Mysore', '', 0, '', '1', '[\"Website development\\r\\n(www.apimysore.org)\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'Brindavan hospital', 'Mysore', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'PENDING', 25960, '', 0, '', 'WAITING', 'Normal', 'Subramanya', 'Subramanya', '2019-08-02 07:27:36', '2019-08-02', 'INACTIVE'), (926, '2019-08-02', 'Brindavan hospital', 'JB-02082019/817', 'Mysore', '', 653, '', '1', '[\"API mysore website for doctor association.\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'Brindavan hospital', 'Mysore', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 25960, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-08-02 08:16:21', '', 'ACTIVE'), (927, '2019-08-02', 'SAP CECC', 'JB-02082019/818', 'Bangalore', '', 0, '29BEMPB5380R2ZO', '1', '[\"Application Development Advance\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'SAP CECC', 'Bangalore', '9%', 0, 0, 0, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Subramanya', '2019-08-02 11:52:19', '2019-10-02', 'INACTIVE'), (928, '2019-08-05', 'SLV Scientific Supplies', 'JB-05082019/819', 'Mysore', '', 654, '', '1', '[\"Static website\"]', '[\"998314\"]', '[\"8500\"]', '9%', '18%', 0, 'SLV Scientific Supplies', 'Mysore', '9%', 765, 765, 8500, 10030, 'Ten Thousand Thirty Rupees Only', 0, '', 'PARTIAL', 10030, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-08-05 08:36:48', '', 'ACTIVE'), (929, '2019-08-06', 'Indo Swiss Anti - Shock Limited', 'JB-06082019/820', 'Bangalore', '', 600, '29AAACI5889G1Z3', '1', '[\"Website development\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', 'Bangalore', '9%', 1260, 1260, 14000, 16520, 'Sixteen Thousand Five Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 16520, '', 0, '', 'WAITING', 'Normal', 'Ashwini', '', '2019-08-06 08:33:42', '', 'INACTIVE'), (930, '2019-08-06', 'Indo Swiss Anti - Shock Limited', 'JB-06082019/820', 'Bangalore', '', 600, '29AAACI5889G1Z3', '1', '[\"Website development\"]', '[\"998314\"]', '[\"14000\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', 'Bangalore', '9%', 1260, 1260, 14000, 16520, 'Sixteen Thousand Five Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 16520, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-08-06 08:33:42', '', 'ACTIVE'), (931, '2019-08-06', 'Vedic Vedant India Private Limited', 'JB-06082019/821', 'Gurgaon, Haryana', '', 0, '06AAGCV7081D1ZA', '1', '[\"website development\"]', '[\"998314\"]', '[\"87500\"]', '9%', '18%', 15750, 'Vedic Vedant India Private Limited', 'Gurgaon, Haryana', '9%', 0, 0, 87500, 103250, 'One Lakhs Three Thousand Two Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 103250, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ajay', '2019-08-06 11:02:25', '2020-01-20', 'ACTIVE'), (932, '2019-08-10', 'Charan Kumar', 'JB-CASH/10082019/1', ' Bangalore', '', 655, '', '1', '[\"Application Development\"]', '[\"998314\"]', '[\"200000\"]', '9%', '18%', 0, 'Charan Kumar', ' Bangalore', '9%', 0, 0, 200000, 200000, '', 0, '', 'PARTIAL', 200000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-08-10 05:58:05', '', 'ACTIVE'), (933, '2019-08-19', 'Krishnan NS', 'JB-PROFORMA/19082019/819', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka', '', 656, '', '1', '[\"Web Application\"]', '[\"998314\"]', '[\"100000\"]', '9%', '18%', 0, 'Krishnan NS', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'PARTIAL', 118000, '', 0, '', 'EXPIRED', 'Profomo', 'Ashwini', '', '2019-08-19 08:13:49', '', 'ACTIVE'), (934, '2019-08-20', 'Royal Stitches', 'JB-PROFORMA/20082019/820', ' Bangalore', '', 611, '', '1', '[\"Web development\"]', '[\"998314\"]', '[\"42000\"]', '9%', '18%', 0, 'Royal Stitches', ' Bangalore', '9%', 3780, 3780, 42000, 49560, 'Forty Nine Thousand Five Hundred Sixty Rupees Only', 0, '', 'PENDING', 49560, '', 0, '', 'WAITING', 'Profomo', 'Ashwini', '', '2019-08-20 06:57:21', '', 'INACTIVE'), (935, '2019-04-11', 'AADI QUIPO STYLE PRIVATE LTD', 'JB-PROFORMA/20082019/820', 'Bangalore', '', 611, '', '1', '[\"Web development\"]', '[\"998314\"]', '[\"42000\"]', '9%', '18%', 0, 'AADI QUIPO STYLE PRIVATE LTD:611', ' Bangalore', '9%', 3780, 3780, 42000, 49560, 'Forty Nine Thousand Five Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 49560, '', 0, '', 'EXPIRED', 'Profomo', 'Ashwini', 'Ashwini', '2019-08-20 06:57:21', '2019-08-22', 'INACTIVE'), (936, '2019-08-20', 'Bhaskar', 'JB-PROFORMA/20082019/821', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka', '', 657, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"12712\"]', '9%', '18%', 0, 'Bhaskar', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'WAITING', 'Profomo', 'Ashwini', '', '2019-08-20 12:43:06', '', 'INACTIVE'), (937, '2019-08-22', 'AADI QUIPO STYLE PRIVATE LTD', 'JB-22082019/822', ' Bangalore', '', 0, '29AASCA3321K1ZD', '1', '[\"web application\"]', '[\"998314\"]', '[\"42000\"]', '9%', '18%', 0, 'AADI QUIPO STYLE PRIVATE LTD', ' Bangalore', '9%', 3780, 3780, 42000, 49560, 'Forty Nine Thousand Five Hundred Sixty Rupees Only', 0, '', 'PENDING', 49560, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-22 08:21:42', '2019-09-20', 'ACTIVE'), (938, '2019-08-24', 'Naveen ', 'JB-24082019/830', 'Electronic city Bangalore Karnataka', '', 658, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"17000\"]', '9%', '18%', 0, 'Naveen ', 'Electronic city Bangalore Karnataka', '9%', 1530, 1530, 17000, 20060, 'Twenty Thousand Sixty Rupees Only', 0, '', 'PARTIAL', 20060, '', 0, '', 'WAITING', 'Normal', 'Ashwini', '', '2019-08-24 06:09:32', '', 'INACTIVE'), (939, '2019-08-24', 'Naveen ', 'JB-24082019/823', 'Electronic city Bangalore Karnataka', '', 0, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"17000\"]', '9%', '18%', 0, 'Naveen ', 'Electronic city Bangalore Karnataka', '9%', 1530, 1530, 17000, 20060, 'Twenty Thousand Sixty Rupees Only', 0, '', 'PARTIAL', 20060, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-24 06:24:30', '2019-09-20', 'ACTIVE'), (940, '2019-08-24', 'Bhaskar', 'JB-24082019/824', ' Bangalore ', '', 0, '', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"12712\"]', '9%', '18%', 0, 'Bhaskar', ' Bangalore ', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-24 06:30:13', '2019-09-20', 'ACTIVE'), (941, '2019-08-24', 'Vlight Services Private Limited', 'JB-24082019/825', 'K R Puram Bangalore Karnataka', '', 0, '', '1', '[\"static website\"]', '[\"998314\"]', '[\"8800\"]', '9%', '18%', 0, 'Vlight Services Private Limited', 'K R Puram Bangalore Karnataka', '9%', 792, 792, 8800, 10384, 'Ten Thousand Three Hundred and Eighty Four Rupees Only', 0, '', 'PARTIAL', 10384, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-24 06:34:42', '2019-09-20', 'ACTIVE'), (942, '2019-08-26', 'BHARATHIYA BELAKU PARTY ', 'JB-CASH/26082019/2', 'Jayanagar Bangalore Karnataka', '', 661, '0', '1', '[\"Static website\"]', '[\"\"]', '[\"11500\"]', '0', '18%', 0, 'BHARATHIYA BELAKU PARTY ', 'Jayanagar Bangalore Karnataka', '9%', 0, 0, 11500, 11500, 'Eleven Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 11500, '', 0, '', 'EXPIRED', 'Cash', 'Admin', '', '2019-08-26 10:29:03', '', 'ACTIVE'), (943, '2019-08-26', 'SLN Tours & Travels ', 'JB-CASH/26082019/3', 'Muddinapalya Bangalore Karnataka', '', 659, '0', '1', '[\"E-commerce\"]', '[\"998314\"]', '[\"15000\"]', '0', '18%', 0, 'SLN Tours & Travels ', 'Muddinapalya Bangalore Karnataka', '9%', 0, 0, 15000, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-08-26 10:31:02', '', 'ACTIVE'), (944, '2019-08-27', 'CMS Bike Service', 'JB-CASH/27082019/4', '100 Feet Road,Indranagar Bangalore Karnataka', '', 662, '0', '1', '[\"static website\"]', '[\"998314\"]', '[\"13300\"]', '0', '18%', 0, 'CMS Bike Service', '100 Feet Road,Indranagar Bangalore Karnataka', '9%', 0, 0, 13300, 13300, 'Thirteen Thousand Three Hundred Rupees Only', 0, '', 'PARTIAL', 13300, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-08-27 12:00:29', '', 'ACTIVE'), (945, '2019-08-29', 'Think of Green', 'JB-29082019/826', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka', '', 0, '29ADSPD8422E2ZD', '1', '[\"Balance payment of website development\"]', '[\"998314\"]', '[\"6068\"]', '9%', '18%', 0, 'Think of Green', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka', '9%', 546, 546, 6068, 7160, 'Seven Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 7160, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ashwini', '2019-08-29 06:31:14', '2019-09-20', 'ACTIVE'), (946, '2019-08-30', 'J P Constructions ', 'JB-30082019/827', 'Kathriguppe Bangalore Karnataka', '', 0, '0', '1', '[\"website and company profile\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'J P Constructions ', 'Kathriguppe Bangalore Karnataka', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PARTIAL', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2019-08-30 06:11:53', '2019-09-20', 'ACTIVE'), (947, '2019-08-31', 'Think of Green', 'JB-31082019/828', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka', '', 0, '29ADSPD8422E2ZD', '1', '[\"Changes to website(www.thinkofgreen.co)\"]', '[\"998314\"]', '[\"4500\"]', '9%', '18%', 0, 'Think of Green', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'PENDING', 5310, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ashwini', '2019-08-31 13:41:06', '2019-09-20', 'ACTIVE'), (948, '2019-08-31', 'TOG Services', 'JB-31082019/829', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka', '', 0, '29ADSPD8422E2ZD', '2', '[\"Website Development with 2 domains\",\"Email id-1nos\"]', '[\"998314\",\"998314\"]', '[\"14000\",\"1500\"]', '9%', '18%', 0, 'TOG Services', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka', '9%', 1395, 1395, 15500, 18290, 'Eighteen Thousand Two Hundred Ninety Rupees Only', 0, '', 'PARTIAL', 18290, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ashwini', '2019-08-31 13:43:43', '2019-09-20', 'ACTIVE'), (949, '2019-09-03', 'Eszero project private limited ', 'JB-03092019/832/CASH', 'Bangalore', '', 0, '0', '1', '[\"Static website\"]', '[\"998314\"]', '[\"15000\"]', '0', '18%', 0, 'Eszero project private limited ', 'Bangalore', '9%', 0, 0, 15000, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-09-03 05:15:34', '', 'ACTIVE'), (950, '2019-09-03', 'POVI Events ', 'JB-03092019/833/CASH', 'Bangalore', '', 0, '0', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"16000\"]', '0', '18%', 0, 'POVI Events ', 'Bangalore', '9%', 0, 0, 16000, 16000, 'Sixteen Thousand Rupees Only', 0, '', 'PARTIAL', 16000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-09-03 05:19:19', '', 'ACTIVE'), (951, '2018-06-06', 'Aruna Cadd printers', 'JB-06062018/397', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '', 0, '29ABLFA0922B1ZU', '1', '[\"\"]', '[\"\"]', '[\"8050\"]', '9%', '18%', 0, 'Aruna Cadd printers', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '9%', 725, 725, 8050, 9500, 'Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 9500, '', 0, '', 'EXPIRED', 'Normal', 'Admin', 'Admin', '2019-09-03 11:07:47', '2019-09-03', 'ACTIVE'), (952, '2019-09-03', 'Aruna Cadd printers', 'JB-06062018/397', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '', 314, '29ABLFA0922B1ZU', '1', '[\"Web\"]', '[\"\"]', '[\"8050\"]', '9%', '18%', 0, 'Aruna Cadd printers', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka', '9%', 725, 725, 8050, 9500, 'Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 9500, '', 0, '', 'EXPIRED', 'Normal', 'Admin', '', '2019-09-03 11:09:24', '', 'ACTIVE'), (953, '2019-09-04', 'Scientific Thought Publications', 'JB-04092019/834', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka', '', 0, '0', '1', '[\"E-commerce webste\"]', '[\"998314\"]', '[\"12712\"]', '9%', '18%', 0, 'Scientific Thought Publications', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Subramanya', '2019-09-04 06:08:23', '2019-10-02', 'ACTIVE'), (954, '2019-09-04', 'CAM India', 'JB-04092019/835/CASH', '#029,2nd cross,Ramamurthy nagar Bangalore` Karnataka', '', 667, '0', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"10000\"]', '0', '18%', 0, 'CAM India', '#029,2nd cross,Ramamurthy nagar Bangalore` Karnataka', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'PARTIAL', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-09-04 06:12:01', '', 'ACTIVE'), (955, '2019-08-31', 'SIRI Global Services', 'Cash', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka', '', 0, '0', '1', '[\"Website development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'SIRI Global Services', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', 'Ashwini', '2019-09-06 09:48:26', '2019-09-06', 'ACTIVE'), (956, '2019-09-09', '', 'JB14042018/368', '', '', 0, '0', '1', '[\"\"]', '[\"\"]', '[\"7000\"]', '9%', '18%', 0, '', '', '9%', 743, 743, 7000, 8260, '', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', 'Profomo', 'Ashwini', '', '2019-09-09 13:06:01', '', 'INACTIVE'), (957, '2019-09-09', 'Rika inn', 'JB-09092019/836', '', '', 0, '0', '1', '[\" \\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n\\r\\n SEO Application\"]', '[\"\"]', '[\"23600\"]', '9%', '18%', 0, '', '', '9%', 2124, 2124, 23600, 27848, 'Twenty Seven Thousand Eight Hundred and Forty Eight Rupees Only', 0, '', 'PENDING', 27848, '', 0, '', 'WAITING', 'Normal', 'Ashwini', '', '2019-09-09 13:07:06', '', 'INACTIVE'), (958, '2019-09-10', 'A J Sports Enterprises', 'JB-10092019/842', '#6/20,2nd cross,St.Thomas town,Lingarajpuram Bangalore Karnataka', '', 0, '0', '1', '[\"Static website\"]', '[\"998314\"]', '[\"4238\"]', '9%', '18%', 0, 'A J Sports Enterprises', '#6/20,2nd cross,St.Thomas town,Lingarajpuram Bangalore Karnataka', '9%', 381, 381, 4238, 5000, 'Five Thousand Rupees Only', 0, '', 'PARTIAL', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Admin', '2019-09-10 10:07:40', '2019-10-02', 'ACTIVE'), (959, '2019-09-10', 'SAP CECC', 'JB-10092019/370/CASH', ' ', '', 568, '0', '1', '[\"Advance\"]', '[\"998314\"]', '[\"10000\"]', '0', '18%', 0, 'SAP CECC', ' ', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'PENDING', 10000, '', 0, '', 'WAITING', 'Cash', 'Ashwini', '', '2019-09-10 10:13:59', '', 'INACTIVE'), (960, '2019-09-10', 'SAMOURK IMPORTS & EXPORTS', 'JB-CASH/10092019/5', 'BTM layout Bangalore karnataka', '', 670, '0', '1', '[\"Static website\"]', '[\"998314\"]', '[\"8000\"]', '0', '18%', 0, 'SAMOURK IMPORTS & EXPORTS', 'BTM layout Bangalore karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-09-10 12:35:01', '', 'ACTIVE'), (961, '2019-09-12', 'Dsign experts', 'JB-12092019/831', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '', 256, '0', '1', '[\"Dynamic website\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Dsign experts', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-09-12 12:47:15', '', 'ACTIVE'), (962, '2019-09-17', 'Yaskawa India Pvt Ltd', 'JB-PROFORMA/17092019/371', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"Advance towards application enhancement\"]', '[\"998314\"]', '[\"84000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 7560, 7560, 84000, 99120, 'Ninety Nine Thousand One Hundred Twenty Rupees Only', 0, '', 'CLEARED', 99120, '', 0, '', 'EXPIRED', 'Profomo', 'Subramanya', '', '2019-09-17 06:20:42', '', 'ACTIVE'), (963, '2019-09-17', 'Charan Kumar', 'JB-17092019/836', 'Mysore', '', 655, '0', '1', '[\"web develop\"]', '[\"998314\"]', '[\"12712\"]', '9%', '18%', 0, 'Charan Kumar', 'Mysore', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-09-17 07:48:10', '', 'ACTIVE'), (964, '2019-09-19', 'IN-FIN solutions', 'JB-19092019/837', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli Bangalore Karnataka', '', 672, '0', '1', '[\"static website\"]', '[\"998314\"]', '[\"7000\"]', '0', '18%', 0, 'IN-FIN solutions', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli Bangalore Karnataka', '9%', 0, 0, 7000, 7000, 'Seven Thousand Rupees Only', 0, '', 'PARTIAL', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2019-09-19 05:59:22', '', 'ACTIVE'), (965, '2019-09-19', 'Prakruthi Yatri Nivas', 'JB-19092019/838', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 125, '0', '1', '[\"AMC for website(2019-20)\\r\\nwww.prakruthiyatrinivas.in\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Prakruthi Yatri Nivas', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-09-19 12:09:18', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (966, '2019-09-19', 'Ashirwad Dental Clinic', 'JB-19092019/820', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 0, 'NO', '1', '[\"5000 SMS for DentICS\\r\\n(previous balance 2411 SMS)\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Admin', '2019-09-19 12:13:07', '2019-10-12', 'ACTIVE'), (967, '2019-09-25', 'Zepnur', 'JB-25092019/840', 'Level 4, No. 305, Anand Onyx 5th Cross, 100 Feet Ring Rd, ter Ring Road, 5th Phase, J. P. Nagar, Bangalore karnataka', '', 247, '29AABCZ1663J1ZY', '1', '[\"Additional changes to website\"]', '[\"998314\"]', '[\"1500\"]', '9%', '18%', 0, 'Zepnur', 'Level 4, No. 305, Anand Onyx 5th Cross, 100 Feet Ring Rd, ter Ring Road, 5th Phase, J. P. Nagar, Bangalore karnataka', '9%', 135, 135, 1500, 1770, 'One Thousand Seven Hundred Seventy Rupees Only', 0, '', 'CLEARED', 1770, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-09-25 05:40:37', '', 'ACTIVE'), (968, '2019-09-26', 'Narayani Holidays and Conferences Pvt Ltd', 'JB-26092019/841', '#24,\'Balaji Plaza\', 2nd floor, 2nd cross, Kirloskar HBCS, 2nd stage, Basaveshvarnagar, Bangalore-560079', '', 0, '29BCLPK8908B1ZE', '1', '[\"Travel packages website with enquiry and management of packages-Advance\"]', '[\"998314\"]', '[\"37500\"]', '9%', '18%', 0, 'Narayani Holidays and Conferences Pvt Ltd', '#24,\'Balaji Plaza\', 2nd floor, 2nd cross, Kirloskar HBCS, 2nd stage, Basaveshvarnagar, Bangalore-560079', '9%', 3375, 3375, 37500, 44250, 'Forty Four Thousand Two Hundred Fifty Rupees Only', 0, '', 'CLEARED', 44250, '', 282, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-09-26 07:38:30', '2019-09-26', 'ACTIVE'), (969, '2019-09-26', 'SCP INFRA ', 'JB-CASH/26092019/6', '#32/2,Bilwaradahalli,Bannerghatta road Bangalore Karnataka', '', 673, '0', '1', '[\"5 page of Static website Converted with Logo,Visiting Card & Letter head \"]', '[\"998314\"]', '[\"17000\"]', '0', '18%', 0, 'SCP INFRA ', '#32/2,Bilwaradahalli,Bannerghatta road Bangalore Karnataka', '9%', 0, 0, 17000, 17000, 'Seventeen Thousand Rupees Only', 0, '', 'PARTIAL', 17000, '', 0, '', 'EXPIRED', 'Cash', 'Ashwini', '', '2019-09-26 12:29:22', '', 'ACTIVE'), (970, '2019-09-27', 'Demo', 'JB-27092019/7', 'Development', '', 0, 'xyz', '2', '[\"D1\",\"D2\"]', '[\"98889\",\"98889\"]', '[\"30000\",\"20000\"]', '9%', '18%', 0, 'Demo', 'Development', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PARTIAL', 59000, '', 0, '', 'WAITING', 'Normal', 'Ajay', 'Ajay', '2019-09-27 07:04:22', '2019-09-27', 'INACTIVE'), (971, '2019-10-01', 'SLV Scientific Supplies', 'JB-01102019/843', ' Bogadi Mysore Karnataka.', '', 654, '29ALVBM9461F2Z9', '1', '[\"Website Development\"]', '[\"\"]', '[\"4200\"]', '9%', '18%', 0, 'Manjunath', 'Bogadi Mysore Karnataka.', '9%', 378, 378, 4200, 4956, 'Four Thousand Nine Hundred and Fifty Six Rupees Only', 0, '', 'CLEARED', 4956, '', 235, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2019-10-01 07:54:12', '2019-10-01', 'ACTIVE'), (972, '2019-10-01', 'Kids Zone', 'JB-01102019/375/PROFORMA', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '', 94, '0', '1', '[\"bulk sms\"]', '[\"998314\"]', '[\"8260\"]', '0', '18%', 0, 'Kids Zone', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '9%', 0, 0, 8260, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 0, '', 'WAITING', 'Profomo', 'Ashwini', '', '2019-10-01 11:43:17', '', 'INACTIVE'), (973, '2019-10-01', 'Shree Mahalakshmi Enterprises', 'JB-01102019/844', '#237/8,2nd floor , Bidadi,Ramanagar Karnataka', '', 0, '29AIFPN2914H1Z7', '1', '[\"5 page static website, logo, 1 visiting card, letterhead, envelope and 4 page brochure\"]', '[\"998314\"]', '[\"5084.75\"]', '9%', '18%', 0, 'Shree Mahalakshmi Enterprises', '#237/8,2nd floor , Bidadi,Ramanagar Karnataka', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Rekha', '2019-10-01 11:52:27', '2019-11-28', 'ACTIVE'), (974, '2019-10-02', 'Feel Good Moments', 'JB-02102019/845', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka', '', 656, '29AAECJ6225D1ZO', '1', '[\"Application Development Charges\"]', '[\"998314\"]', '[\"150000\"]', '9%', '18%', 0, 'Feel Good Moments', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka', '9%', 13500, 13500, 150000, 177000, 'One Lakhs Seventy Seven Thousand Rupees Only', 0, '', 'CLEARED', 177000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-10-02 07:00:06', '', 'ACTIVE'), (975, '2019-10-02', 'SAP CECC', 'JB-02102019/846', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '', 568, '29BEMPB5380R2ZO', '2', '[\"Application Development\",\"5000 OTP SMS\"]', '[\"998314\",\"998314\"]', '[\"54526\",\"5000\"]', '9%', '18%', 0, 'SAP CECC', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '9%', 5357, 5357, 59526, 70240, 'Seventy Thousand Two Hundred Forty Rupees Only', 0, '', 'PENDING', 70240, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-10-02 09:57:42', '', 'ACTIVE'), (976, '2019-10-03', 'Intiprocure Private Limited', 'JB-03102019/847', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '', 519, '0', '1', '[\"Additional Charges for bidding application\"]', '[\"998314\"]', '[\"31358\"]', '9%', '18%', 0, 'Intiprocure', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India. Bangalore Karnataka', '9%', 2822, 2822, 31358, 37002, 'Thirty Seven Thousand Two Rupees Only', 0, '', 'PARTIAL', 37002, '', 287, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2019-10-03 13:42:50', '2019-10-10', 'ACTIVE'), (977, '2019-10-03', 'SAP CECC', 'JB-02082019/818', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '', 568, '29BEMPB5380R2ZO', '1', '[\"mlm software part payment for development\"]', '[\"998314\"]', '[\"8474.58\"]', '9%', '18%', 0, 'SAP CECC', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'PENDING', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Admin', '', '2019-10-03 14:01:36', '', 'ACTIVE'), (978, '2019-10-09', 'Smile Studio India', 'JB-09102019/819', 'Frazer town Bangalore', '', 0, '0', '3', '[\"Digital Marketing(October 2019)\",\"Google Ad-words\",\"Website Renewal Charges smilestudioindia.com (Till 9-oct-2020)\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"35000\",\"15000\",\"5000\"]', '9%', '18%', 0, 'Smile Studio India', 'Frazer town Bangalore', '9%', 4950, 4950, 55000, 64900, 'Sixty Four Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 64900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-10-09 18:58:40', '', 'ACTIVE'), (979, '2019-10-09', 'POVI Events ', 'JB-09102019/7/CASH', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi Bangalore karnataka', '', 664, '0', '1', '[\"Website Development Payment\"]', '[\"998314\"]', '[\"3500\"]', '0', '18%', 0, 'POVI Events ', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi Bangalore karnataka', '9%', 0, 0, 3500, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 3500, '', 0, '', 'EXPIRED', 'Cash', 'Ajay', '', '2019-10-09 19:06:07', '', 'ACTIVE'), (980, '2019-10-11', 'Eco Travells', 'JB-11102019/1', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 493, '0', '1', '[\"Renewal Charges of website and hosting\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 0, 0, 9999, 9999, 'Nine Thousand Nine Hundred and Ninety Nine Rupees Only', 0, '', 'PENDING', 9999, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2019-10-11 11:58:15', '', 'INACTIVE'), (981, '2019-10-11', 'Eco Travells', 'JB-11102019/839', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 493, '0', '1', '[\"Renewal for domine and hosting\"]', '[\"998314\"]', '[\"8473\"]', '9%', '18%', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 763, 763, 8473, 9999, 'Nine Thousand Nine Hundred and Ninety Nine Rupees Only', 0, '', 'CLEARED', 9999, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-10-11 12:00:37', '', 'ACTIVE'), (982, '2019-10-11', 'Vivek Tours and Travels', 'JB-11102019/1/CASH', 'Malleshwaram Bangalore Karnataka 0', '', 0, '0', '1', '[\"Static website\"]', '[\"\"]', '[\"3500\"]', '9%', '18%', 0, 'Vivek Tours and Travels', 'Malleshwaram Bangalore Karnataka 0', '9%', 0, 0, 3500, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 291, '', 'EXPIRED', 'Cash', 'Ajay', '', '2019-10-11 16:10:59', '', 'ACTIVE'), (983, '2019-10-17', 'Shri Hari ', 'JB-17102019/848', 'K R Puram Bangalore Karnataka', '', 678, '0', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Shri Hari ', 'K R Puram Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-10-17 15:52:21', '', 'ACTIVE'), (984, '2019-10-17', 'Nalini ', 'JB-17102019/849', 'K R Puram Bangalore Karnataka 0', '', 0, '0', '1', '[\"static Website development\"]', '[\"998314\"]', '[\"5058\"]', '9%', '18%', 0, 'Nalini ', 'K R Puram Bangalore Karnataka 0', '9%', 455, 455, 5058, 5968, 'Five Thousand Nine Hundred and Sixty Eight Rupees Only', 0, '', 'CLEARED', 5968, '', 300, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-10-17 16:06:40', '', 'ACTIVE'), (985, '2019-10-18', 'Paneetha Consulting Engineering ', 'JB-18102019/850', 'Nagarabhavi,Bangalore-Karnataka,India', '', 0, '29AMXPA178B1ZX', '1', '[\"5-6 Pages of Dynamic website\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, 'Paneetha Consulting Engineering ', 'Nagarabhavi,Bangalore-Karnataka,India', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'PENDING', 6000, '', 301, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-10-18 12:06:52', '2019-10-18', 'ACTIVE'), (986, '2019-10-19', 'Dental Diagnostic Centre', 'JB-19102019/836/CASH', '#6, Bangalore Karnataka', '', 264, 'NO', '1', '[\"Website changes and chatbot\"]', '[\"998314\"]', '[\"11000\"]', '0', '18%', 0, 'Dental Diagnostic Centre', '#6, Bangalore Karnataka', '9%', 0, 0, 11000, 11000, 'Eleven Thousand Rupees Only', 0, '', 'CLEARED', 11000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-10-19 12:46:19', '', 'ACTIVE'), (987, '2019-10-21', 'SUKRUTA', 'JB-21102019/851', '347,3rd Floor,MN Complex,Puttenahalli Main Road, J P Nagar 7th Phase Bangalore Karnataka', '', 682, '29BRCPK2594M1Z7', '1', '[\"Digital Marketing for 1 month\"]', '[\"998314\"]', '[\"27118\"]', '9%', '18%', 0, 'SUKRUTA', '347,3rd Floor,MN Complex,Puttenahalli Main Road, J P Nagar 7th Phase Bangalore Karnataka', '9%', 2441, 2441, 27118, 32000, 'Thirty Two Thousand Rupees Only', 0, '', 'CLEARED', 32000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-10-21 15:12:58', '', 'ACTIVE'), (988, '2019-09-18', 'Yaskawa India Pvt Ltd', 'JB-22102019/852', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"Additional Changes towards ABP portal\"]', '[\"998314\"]', '[\"84000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 7560, 7560, 84000, 99120, 'Ninety Nine Thousand One Hundred Twenty Rupees Only', 0, '', 'CLEARED', 99120, '', 289, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2019-10-22 14:10:23', '2019-10-22', 'ACTIVE'), (989, '2019-10-22', 'Sri Maruthi Enterprises', 'JB-22102019/853', 'Nayandahalli Bangalore Karnataka 0', '', 0, '29EBBPK7876J1ZX', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Sri Maruthi Enterprises', 'Nayandahalli Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 306, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-22 18:43:46', '', 'ACTIVE'), (990, '2019-10-22', 'chickpetdonnebiryanihouse', 'JB-22102019/854', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara, Bangalore Karnataka', '', 523, '0', '1', '[\"Domain Renewal \"]', '[\"998314\"]', '[\"2500\"]', '9%', '18%', 0, 'chickpetdonnebiryanihouse', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara, Bangalore Karnataka', '9%', 225, 225, 2500, 2950, 'Two Thousand Nine Hundred Fifty Rupees Only', 0, '', 'PENDING', 2950, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-22 18:46:58', '', 'ACTIVE'), (991, '2019-10-23', 'Karthik Enterprises', 'JB-23102019/855', 'Banasawadi,Bangalore-Karnataka,', '', 0, '29AXUPK7575R1ZX', '1', '[\"Static website with google adwords\"]', '[\"998314\"]', '[\"6780\"]', '9%', '18%', 0, 'Karthik Enterprises', 'Banasawadi,Bangalore-Karnataka,', '9%', 610, 610, 6780, 8000, 'Eight Thousand Rupees Only', 0, '', 'PENDING', 8000, '', 307, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-23 12:23:38', '', 'ACTIVE'), (992, '2019-10-23', 'The Chief Traders ', 'JB-23102019/856', 'Electronic city,Bangalore-Karnataka,India', '', 0, '29AJSPT6167A1ZN', '1', '[\"25 E-mail Id\\r\\n(Per E-mail Id 5 GB Storage)\"]', '[\"998314\"]', '[\"5500\"]', '9%', '18%', 0, 'The Chief Traders ', 'Electronic city,Bangalore-Karnataka,India', '9%', 495, 495, 5500, 6490, 'Six Thousand Four Hundred Ninety Rupees Only', 0, '', 'PENDING', 6490, '', 297, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-23 17:39:48', '', 'ACTIVE'), (993, '2019-10-25', ' Megha Welfare Association ', 'JB-25102019/857', 'Kathriguppe Bangalore Karnataka 0', '', 0, '0', '1', '[\"5 Pages of Static website with Domain for 1 Year \\r\\nHosting for 1 year\\r\\n\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, ' Megha Welfare Association ', 'Kathriguppe Bangalore Karnataka 0', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 296, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-25 15:21:38', '', 'ACTIVE'), (994, '2019-10-29', 'SAP CECC', 'JB-30102019/858', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '', 0, '29BEMPB5380R2ZO', '1', '[\"Additional Development Charge\"]', '[\"998314\"]', '[\"4238\"]', '9%', '18%', 0, 'SAP CECC', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli Bangalore Karnataka', '9%', 381, 381, 4238, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-10-30 16:57:02', '2019-10-30', 'ACTIVE'), (995, '2019-10-31', 'Radion Dental Equipments Pvt Ltd', 'JB-31102019/859', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka', '', 218, '0', '1', '[\"AMC Renewal of website\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Radion Dental Equipments Pvt Ltd', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'PENDING', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-31 15:12:45', '', 'ACTIVE'), (996, '2019-10-31', 'Savadi Dental Care', 'JB-31102019/860', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '', 2, '0', '2', '[\"Website renewals\\r\\n\\r\\n\",\"DentICS renewal \"]', '[\"998314\",\"998314\"]', '[\"5000\",\"4000\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '9%', 810, 810, 9000, 10620, 'Ten Thousand Six Hundred Twenty Rupees Only', 0, '', 'PENDING', 10620, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-31 15:37:51', '', 'ACTIVE'), (997, '2019-10-31', 'Happy Garden', 'JB-31102019/861', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '', 0, '29ACIPS8466L1ZK', '1', '[\"Re-designing of the website\\r\\n(Happy Garden) Advance payment\"]', '[\"998314\"]', '[\"8474\"]', '9%', '18%', 0, 'Happy Garden', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'PENDING', 10000, '', 311, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-10-31 16:08:10', '2019-11-15', 'ACTIVE'), (998, '2019-10-31', 'VISAVI FOOD VENTURES', 'JB-31102019/862', 'N0.372,university layout, ringroad, Mysore-570023 mysore karnataka', '', 515, '29AAOFV4850D1ZT', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'VISAVI FOOD VENTURES', 'N0.372,university layout, ringroad, Mysore-570023 mysore karnataka', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'PENDING', 4130, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-10-31 16:20:01', '', 'ACTIVE'), (999, '2019-11-01', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-01112019/863', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-01 10:47:49', '', 'ACTIVE'), (1000, '2019-11-01', 'Shri Hari ', 'JB-04112019/864', 'K R Puram Bangalore Karnataka', '', 0, '0', '1', '[\"Website development final payment\"]', '[\"998314\"]', '[\"3034\"]', '9%', '18%', 0, 'Shri Hari ', 'K R Puram Bangalore Karnataka', '9%', 273, 273, 3034, 3580, 'Three Thousand Five Hundred Eighty Rupees Only', 0, '', 'PENDING', 3580, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-11-04 11:30:16', '2019-11-04', 'ACTIVE'), (1001, '2019-11-02', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-04112019/865', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '0', '1', '[\"ERP Enhancement- Payment 1\"]', '[\"998314\"]', '[\"33898\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 3051, 3051, 33898, 40000, 'Forty Thousand Rupees Only', 0, '', 'CLEARED', 40000, '', 309, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-11-04 15:33:36', '2019-11-04', 'ACTIVE'), (1002, '2019-11-04', 'TOBIK LIFELINE NIG.LTD', 'JB-04112019/837/CASH', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '', 0, '0', '1', '[\"Dynamic website with logo-advance payment\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'TOBIK LIFELINE NIG.LTD', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'PENDING', 10000, '', 312, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-11-04 15:39:44', '', 'ACTIVE'), (1003, '2019-11-05', 'Charan Kumar', 'JB-05112019/838/CASH', ' ', '', 655, '0', '1', '[\"Application advance\\r\\nTotal: 200000\\r\\nBalance: 120000\"]', '[\"998314\"]', '[\"15000\"]', '0', '18%', 0, 'Charan Kumar', ' ', '9%', 0, 0, 15000, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-11-05 14:17:22', '', 'ACTIVE'), (1004, '2019-11-05', 'Yaskawa India Pvt Ltd', 'JB-05112019/866', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"Additional Changes towards ABP portal\"]', '[\"998314\"]', '[\"140000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 12600, 12600, 140000, 165200, 'One Lakhs Sixty Five Thousand Two Hundred Rupees Only', 0, '', 'PARTIAL', 165200, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ajay', '2019-11-05 14:22:17', '2019-12-06', 'ACTIVE'), (1005, '2019-11-07', 'Swansilk Pvt Ltd', 'JB-07112019/867', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server Renewal- 6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 249, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-11-07 17:06:12', '', 'ACTIVE'), (1006, '2019-11-07', 'Deco-Textil Pvt Ltd', 'JB-07112019/868', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal from 29-8-2019 to 28-2-2020\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2019-11-07 17:07:17', '', 'ACTIVE'), (1007, '2019-11-14', 'Narayani Holidays and Conferences Pvt Ltd', 'JB-14112019/869', '#24, Bangalore Karnataka 560079', '', 0, '29BCLPK8908B1ZE', '2', '[\"Linux Hosting for 1 year\",\"SSL Certificate for 1 year\"]', '[\"998314\",\"998314\"]', '[\"3500\",\"2000\"]', '9%', '18%', 0, 'Narayani Holidays and Conferences Pvt Ltd', '#24, Bangalore Karnataka 560079', '9%', 495, 495, 5500, 6490, 'Six Thousand Four Hundred Ninety Rupees Only', 0, '', 'CLEARED', 6490, '', 316, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-11-14 11:06:02', '2019-11-14', 'ACTIVE'), (1008, '2019-11-14', 'Narayani Holidays and Conferences Pvt Ltd', 'JB-14112019/870', '#24, Bangalore Karnataka 560079', '', 0, '29BCLPK8908B1ZE', '1', '[\"Final Payment towards website\"]', '[\"998314\"]', '[\"37500\"]', '9%', '18%', 0, 'Narayani Holidays and Conferences Pvt Ltd', '#24, Bangalore Karnataka 560079', '9%', 3375, 3375, 37500, 44250, 'Forty Four Thousand Two Hundred Fifty Rupees Only', 0, '', 'PENDING', 44250, '', 318, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-14 14:09:55', '', 'ACTIVE'), (1009, '2019-11-14', 'Essence Home Decor Pvt Ltd', 'JB-14112019/5/PROFORMA', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '', 0, '29AAECE7048P1ZX', '1', '[\"J-fiber soft product\"]', '[\"998314\"]', '[\"127000\"]', '9%', '18%', 0, 'Essence Home Decor Pvt Ltd', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '9%', 11430, 11430, 127000, 149860, 'One Lakhs Forty Nine Thousand Eight Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 149860, '', 320, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2019-11-14 17:05:50', '', 'ACTIVE'), (1010, '2019-11-15', 'Happy Garden', 'JB-15112019/871', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '', 0, '29ACIPS8466L1ZK', '1', '[\"Re-designing of the website\\r\\n(Happy Garden)\"]', '[\"998314\"]', '[\"7526\"]', '9%', '18%', 0, 'Happy Garden', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '9%', 677, 677, 7526, 8880, 'Eight Thousand Eight Hundred Eighty Rupees Only', 0, '', 'CLEARED', 8880, '', 311, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-11-15 13:26:22', '2019-11-15', 'ACTIVE'), (1011, '2019-11-15', 'Karthik Enterprises', 'JB-15112019/872', 'Banasawadi,Bangalore-Karnataka,', '', 0, '29AXUPK7575R1ZX', '1', '[\"Static website with google adwords final payment\"]', '[\"998314\"]', '[\"7220\"]', '9%', '18%', 0, 'Karthik Enterprises', 'Banasawadi,Bangalore-Karnataka,', '9%', 650, 650, 7220, 8520, 'Eight Thousand Five Hundred Twenty Rupees Only', 0, '', 'PENDING', 8520, '', 307, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-15 13:42:46', '', 'ACTIVE'), (1012, '2019-11-15', 'Imarc Pest Control', 'JB-15112019/873', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road, Bangalore Karnataka', '', 214, '0', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Imarc Pest Control', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-15 13:49:31', '', 'ACTIVE'), (1013, '2019-11-18', 'Indian Society of Professional Social Works', 'JB-18112019/874', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '', 235, '0', '3', '[\"Domain renewal\",\"Hosting renewal\",\"Service charges\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"1200\",\"2800\",\"1000\"]', '9%', '18%', 0, 'Indian Society of Professional Social Works', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-18 12:03:46', '', 'ACTIVE'), (1014, '2019-11-19', 'Dental Diagnostic Centre', 'JB-19112019/839/CASH', '#6, Bangalore Karnataka', '', 264, 'NO', '1', '[\"SEO payment 2\"]', '[\"\"]', '[\"10000\"]', '0', '18%', 0, 'Dental Diagnostic Centre', '#6, Bangalore Karnataka', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Ajay', '', '2019-11-19 12:43:08', '', 'ACTIVE'), (1015, '2019-11-19', 'Scientific Thought Publications', 'JB-19112019/875', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka', '', 0, '0', '1', '[\"Customised e-commerce application\"]', '[\"998314\"]', '[\"000\"]', '9%', '18%', 0, 'Scientific Thought Publications', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka', '9%', 0, 0, 0, 0, 'Rupees Only', 0, '', 'PENDING', 0, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Rekha', '2019-11-19 13:14:54', '2019-12-24', 'ACTIVE'), (1016, '2019-11-19', 'Account Bazaar', 'JB-19112019/840/CASH', ' Bangalore ', '', 651, '0', '1', '[\"Additonal requirements to website\"]', '[\"998314\"]', '[\"30000\"]', '0', '18%', 0, 'Account Bazaar', ' Bangalore ', '9%', 0, 0, 30000, 30000, 'Thirty Thousand Rupees Only', 0, '', 'PARTIAL', 30000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2019-11-19 14:41:16', '', 'ACTIVE'), (1017, '2019-11-20', 'Koncept Kreation', 'JB-20112019/876', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka 560043', '', 0, '0', '1', '[\"Banner design\"]', '[\"998314\"]', '[\"600\"]', '9%', '18%', 0, 'Koncept Kreation', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka 560043', '9%', 54, 54, 600, 708, 'Seven Hundred Eight Rupees Only', 0, '', 'PENDING', 708, '', 321, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-20 13:29:40', '', 'ACTIVE'), (1018, '2019-11-26', 'Shree Mahalakshmi Enterprises', 'JB-26112019/877', '#237/8,2nd floor , Bidadi,Ramanagar Karnataka', '', 0, '29AIFPN2914H1Z7', '1', '[\"Website development - Final Payment\"]', '[\"998314\"]', '[\"6916\"]', '9%', '18%', 0, 'Shree Mahalakshmi Enterprises', '#237/8,2nd floor , Bidadi,Ramanagar Karnataka', '9%', 622, 622, 6916, 8160, 'Eight Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8160, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-11-26 12:58:48', '2019-11-28', 'ACTIVE'), (1019, '2019-11-26', 'Sri Maruthi Enterprises', 'JB-26112019/878', 'Nayandahalli Bangalore Karnataka 0', '', 0, '29EBBPK7876J1ZX', '1', '[\"Website Development- Final Payment\"]', '[\"998314\"]', '[\"6068\"]', '9%', '18%', 0, 'Sri Maruthi Enterprises', 'Nayandahalli Bangalore Karnataka 0', '9%', 546, 546, 6068, 7160, 'Seven Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 7160, '', 306, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-26 13:04:06', '', 'ACTIVE'), (1020, '2019-11-26', 'INFO CARE INDIA GLOBAL SOLUTIONS', 'JB-26112019/879', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka 0', '', 0, '0', '1', '[\"Website changes(Siri global solutions as Info care india global solutions)\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'INFO CARE INDIA GLOBAL SOLUTIONS', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka 0', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'PENDING', 2000, '', 326, '', 'WAITING', 'Normal', 'Rekha', '', '2019-11-26 16:12:03', '', 'INACTIVE'), (1021, '2019-11-26', 'INFO CARE INDIA GLOBAL SOLUTIONS', 'JB-26112019/841/CASH', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka 0', '', 0, '0', '1', '[\"Website changes(Siri global solutions as Info care india global solutions)\"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'INFO CARE INDIA GLOBAL SOLUTIONS', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka 0', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 326, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-11-26 16:16:13', '', 'ACTIVE'), (1022, '2019-11-26', 'Ararat Group', 'JB-26112019/880', 'Madanayakanahalli Bangalore Karnataka 0', '', 0, '0', '1', '[\"Website design Domain Creation & E-mail Id advance\"]', '[\"998314\"]', '[\"4238\"]', '9%', '18%', 0, 'Ararat Group', 'Madanayakanahalli Bangalore Karnataka 0', '9%', 381, 381, 4238, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 327, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-11-26 18:22:58', '', 'ACTIVE'), (1023, '2019-11-26', 'Dr Madhusudhan(Smile Studio)', 'JB-26112019/881', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '', 0, '0', '1', '[\"SEO for one month\"]', '[\"\"]', '[\"45000\"]', '9%', '18%', 0, 'Dr Madhusudhan(Smile Studio)', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '9%', 4050, 4050, 45000, 53100, 'Fifty Three Thousand One Hundred Rupees Only', 0, '', 'CLEARED', 53100, '', 328, '', 'EXPIRED', 'Normal', 'Ajay', '', '2019-11-26 18:25:56', '', 'ACTIVE'), (1024, '2019-11-27', 'Jyesta Constructions', 'JB-27112019/842/CASH', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '', 237, 'NO', '1', '[\"AMC Renewal of 2 Domains\\r\\njyeshtaconstructions.in & .com\"]', '[\"998314\"]', '[\"5000\"]', '0', '18%', 0, 'Jyesta Constructions', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-11-27 17:20:59', '', 'ACTIVE'), (1025, '2019-11-30', 'Surya Woods', 'JB-30112019/843/CASH', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023 Mysore Karnataka', '', 436, '0', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"4000\"]', '0', '18%', 0, 'Surya Woods', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023 Mysore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-11-30 13:11:34', '', 'ACTIVE'), (1026, '2019-12-02', 'Caremycar', 'JB-02122019/882', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008 Bangalore Karnataka', '', 602, '0', '1', '[\"SSL Certificate \"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Caremycar', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008 Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-02 16:09:32', '', 'ACTIVE'), (1027, '2019-12-02', 'Marries Food Factory', 'JB-02122019/883', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '', 216, '29BZOPP3235L1ZO', '1', '[\"AMC Renewal 2019-2020\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Marries Food Factory', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-02 16:21:22', '', 'ACTIVE'), (1028, '2019-12-02', 'Pragathi Polymers', 'JB-02122019/884', '342/15, opp to satellite bus stand, bapuji nagar, mysore road Bangalore Karnataka', '', 0, '29AAXPV7858E1ZJ', '1', '[\"AMC Renewal 01.12.2019 to 01.12.2020\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Pragathi Polymers', '342/15, opp to satellite bus stand, bapuji nagar, mysore road Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2019-12-02 17:36:30', '2019-12-02', 'ACTIVE'), (1029, '2019-12-03', 'Charan Kumar', 'JB-03122019/6/PROFORMA', 'K R Puram Bangalore Karnataka', '', 655, '0', '1', '[\"Application development advance\"]', '[\"998314\"]', '[\"60000\"]', '0', '18%', 0, 'Charan Kumar', 'K R Puram Bangalore Karnataka', '9%', 0, 0, 60000, 60000, 'Sixty Thousand Rupees Only', 0, '', 'CLEARED', 60000, '', 0, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2019-12-03 11:52:48', '', 'ACTIVE'), (1030, '2019-12-05', 'JSS Hospital', 'JB-05122019/885', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '', 0, '0', '1', '[\"AMC for website for year 2019-20\\r\\n\\r\\nAMC Period: 1-06-2019 to 31-05-2020\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'JSS Hospital', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'CLEARED', 25960, '', 201, '', 'EXPIRED', 'Normal', 'Rekha', 'Ajay', '2019-12-05 13:09:01', '2019-12-06', 'ACTIVE'), (1031, '2019-12-05', 'Nalini ', 'JB-05122019/844/CASH', 'K R Puram Bangalore Karnataka 0', '', 0, '0', '1', '[\"static Website development\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, 'Nalini ', 'K R Puram Bangalore Karnataka 0', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 300, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-12-05 16:56:19', '', 'ACTIVE'), (1032, '2019-12-06', 'Celestain', 'JB-06122019/886', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '', 160, '29BFCPR6408F3Z9', '1', '[\"AMC Renewal\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Celestain', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-06 11:19:01', '', 'ACTIVE'), (1033, '2019-12-06', 'Sri Ganesha Ventures', 'JB-06122019/887', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 0, '0', '1', '[\"Re-designing of dynamic website\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Sri Ganesha Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 344, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-06 13:35:22', '', 'ACTIVE'), (1034, '2019-12-06', 'Elite Residencies', 'JB-06122019/888', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka', '', 231, '29APMPJ0355A1Z5', '1', '[\"AMC & SSL certificate\"]', '[\"998314\"]', '[\"4662\"]', '9%', '18%', 0, 'Elite Residencies', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka', '9%', 420, 420, 4662, 5502, 'Five Thousand Five Hundred Two Rupees Only', 0, '', 'CLEARED', 5502, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-06 13:52:26', '', 'ACTIVE'), (1035, '2019-12-10', 'Manju ', 'JB-10122019/889', 'Vijayanagar Bangalore Karnataka 0', '', 0, '0', '1', '[\"Adwords\"]', '[\"998314\"]', '[\"7200\"]', '9%', '18%', 0, 'Manju ', 'Vijayanagar Bangalore Karnataka 0', '9%', 0, 0, 7200, 7200, 'Seven Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 7200, '', 345, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-10 10:52:46', '', 'ACTIVE'), (1036, '2019-12-10', 'Biosite India Pvt Ltd', 'JB-10122019/890', 'jp nagar 7th phase Bangalore Karnataka ', '', 0, '06AAGCB15921ZQ', '1', '[\"Changes in website\\r\\n1.Remove contact number of 9811788955, 9798999911 from website, and put- 080-26667707 office landline number.\\r\\n2.Need to incorporate client logo as runner in footer section but it should be visible enough as anyone opens website.\\r\\n3.Career section : job opening with Job description(Project Manager, Sr. Clinical Research Associate, Clinical Research Associate\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Biosite India Pvt Ltd', 'jp nagar 7th phase Bangalore Karnataka ', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 343, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-10 10:56:53', '', 'ACTIVE'), (1037, '2019-12-10', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-10122019/891', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"Project final payment\"]', '[\"998314\"]', '[\"25594\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 2303, 2303, 25594, 30200, 'Thirty Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 30200, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-10 14:10:04', '', 'ACTIVE'), (1038, '2019-12-12', 'Yuva Sene', 'JB-12122019/892', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '', 520, '0', '1', '[\"AMC renewal 12.12.2019 -20\"]', '[\"998314\"]', '[\"3200\"]', '9%', '18%', 0, 'Yuva Sene', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '9%', 288, 288, 3200, 3776, 'Three Thousand Seven Hundred and Seventy Six Rupees Only', 0, '', 'CLEARED', 3776, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-12 17:57:11', '', 'ACTIVE'), (1039, '2019-12-12', 'VSP ENTERTAINMENT PVT LTD', 'JB-12122019/893', ' 1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South, Mysore', '', 0, '29AAGCV1857M1ZN', '1', '[\"event management software with payment gateway\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 0, 'VSP ENTERTAINMENT PVT LTD', '1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South,Mysore', '9%', 2700, 2700, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'PARTIAL', 35400, '', 351, '', 'EXPIRED', 'Normal', 'Ajay', 'Rekha', '2019-12-12 20:47:16', '2019-12-13', 'ACTIVE'), (1040, '2019-12-16', 'Dayakar Poly clinic', 'JB-16122019/894', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '', 0, '0', '1', '[\"Healthcare application development\"]', '[\"998314\"]', '[\"45000\"]', '9%', '18%', 0, 'Dayakar Poly clinic', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '9%', 4050, 4050, 45000, 53100, 'Fifty Three Thousand One Hundred Rupees Only', 0, '', 'PARTIAL', 53100, '', 354, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-16 13:18:50', '', 'ACTIVE'), (1041, '2019-12-18', 'Deco-Textil Pvt Ltd', 'JB-18122019/895', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"New expense entry module\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-18 12:11:38', '', 'ACTIVE'), (1042, '2019-12-18', 'Swansilk Pvt Ltd', 'JB-18122019/896', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"New expense entry module\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-18 12:12:19', '', 'ACTIVE'), (1043, '2019-12-24', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', 'JB-24122019/7/PROFORMA', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '', 0, '29AAFCT8568C1ZX', '1', '[\"Features:\\r\\n\\u2022Professionally Designed Pages\\r\\n\\u2022Up to 3 design revisions for Homepage\\r\\n\\u2022Fully responsive website\\r\\n\\u2022Easy Content Management System\\r\\n\\u2022 Unlimited Pages Management\\r\\n\\u2022 Text Content\\r\\n\\u2022 Links\\r\\n\\u2022 Menu Management\\r\\n\\u2022 Images\\r\\n\\u2022 Videos\\r\\n\\u2022 Gallery\\u2019s\\r\\n\\u2022Product Management System\\r\\n\\u2022Search Engine Submission\\r\\n\\u2022Google Maps\\r\\n\\u2022Integrated careers module\\r\\n\\u2022Contact Form Module\\r\\n\\u2022Inquiry Form Module\\r\\n\\u2022Social Media widgets\\r\\n\\u2022Blog and News Module\\r\\n\\u2022Newsletter Module\\r\\n\\u2022Cross Browser & Device Testing and Compatibility\\r\\n\\u2022Upgrade to a bigger package as our business grows\\r\\n\\r\\nService & Product Management System\\r\\n\\u2022Add New Services or Product\\r\\n\\u2022Edit \\/\\/ Delete Service Product\\r\\n\\u2022Service Management with updates\\r\\n\\u2022Service Category Management\\r\\n\\u2022Service Or Product Details\\r\\n\\u2022Service or Product Inquiry Management\\r\\n\\r\\nProject Development Procedure\\r\\n\\u2022 On the basis of website content, two website mockup designs has to be provided.\\r\\n\\u2022 After the discussions and given approval, you have to move towards HTML and CSS.\\r\\n\\u2022 After our Approval on HTML you have to start the development.\\r\\n\\u2022 After QA & approval the site will be move to live server from the staging.\\r\\n\"]', '[\"998314\"]', '[\"29000\"]', '9%', '18%', 0, 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '9%', 2610, 2610, 29000, 34220, 'Thirty Four Thousand Two Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 34220, '', 353, '', 'EXPIRED', 'Profomo', 'Rekha', 'Ajay', '2019-12-24 12:19:07', '2020-01-21', 'ACTIVE'), (1044, '2019-12-24', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-24122019/897', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '29AAACG3912G1ZT', '1', '[\"New updation in the application\"]', '[\"998314\"]', '[\"16950\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 1526, 1526, 16950, 20002, 'Twenty Thousand Two Rupees Only', 0, '', 'CLEARED', 20002, '', 357, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-24 12:27:37', '', 'ACTIVE'), (1045, '2019-12-24', 'Branils Enterprises', 'JB-24122019/898', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '', 553, '29AAMFB4789M1ZI', '1', '[\"AMC Renewal charges for 24.12.2019 to 24.12.2020\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Branils Enterprises', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-24 12:30:38', '', 'ACTIVE'), (1046, '2019-12-24', 'Branils Enterprises', 'JB-24122019/898', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '', 553, '29AAMFB4789M1ZI', '1', '[\"AMC Renewal charges for 24.12.2019 to 24.12.2020\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Branils Enterprises', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'PENDING', 4130, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2019-12-24 12:30:44', '', 'INACTIVE'), (1047, '2019-12-24', 'Navakruthee Enterprises', 'JB-24122019/899', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '', 547, '29AJJPD3161H1ZA', '1', '[\"AMC Renewal charges from 19.12.2019 to 19.12.2020\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Navakruthee Enterprises', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-24 13:13:01', '', 'ACTIVE'), (1048, '2019-12-24', 'Deco-Textil Pvt Ltd', 'JB-24122019/900', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"New expense entry module\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', 'Rekha', '2019-12-24 13:42:38', '2019-12-26', 'INACTIVE'), (1049, '2019-12-24', 'Swansilk Pvt Ltd', 'JB-24122019/901', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"New expense entry module\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', 'Rekha', '2019-12-24 13:44:50', '2019-12-26', 'INACTIVE'), (1050, '2019-12-26', 'PEOPLESOFT MANAGEMENT CONSULTANCY SERVICES(OPC)PRIVATE LIMITED', 'JB-26122019/902', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli Bangalore Karnataka', '', 695, '0', '1', '[\"Static website design & development\"]', '[\"998314\"]', '[\"4500\"]', '0', '18%', 0, 'PEOPLESOFT MANAGEMENT CONSULTANCY SERVICES(OPC)PRIVATE LIMITED', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli Bangalore Karnataka', '9%', 0, 0, 4500, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-26 12:57:40', '', 'ACTIVE'), (1051, '2019-12-26', 'Snoring and sleep annea clinic.', 'JB-26122019/903', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035 Bangalore Karnataka', '', 571, '0', '1', '[\"AMC Renewal charges from 26.12.2019 to 26.12.2020\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Snoring and sleep annea clinic.', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-26 13:07:42', '', 'ACTIVE'), (1052, '2019-12-27', 'Vijay ', 'JB-27122019/904', 'Banashankari Bangalore Karnartaka 0', '', 0, '0', '1', '[\"static bootstrap website with 2 interaction page including\\r\\nlanguage plugin Advance payment\"]', '[\"998314\"]', '[\"12288\"]', '9%', '18%', 0, 'Vijay ', 'Banashankari Bangalore Karnartaka 0', '9%', 1106, 1106, 12288, 14500, 'Fourteen Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 14500, '', 361, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-27 18:30:27', '', 'ACTIVE'), (1053, '2019-12-28', 'Ararat Group', 'JB-28122019/905', 'Madanayakanahalli Bangalore Karnataka 0', '', 0, '0', '1', '[\"Website design & development final payment\"]', '[\"998314\"]', '[\"9562\"]', '9%', '18%', 0, 'Ararat Group', 'Madanayakanahalli Bangalore Karnataka 0', '9%', 861, 861, 9562, 11284, 'Eleven Thousand Two Hundred and Eighty Four Rupees Only', 0, '', 'CLEARED', 11284, '', 327, '', 'EXPIRED', 'Normal', 'Rekha', '', '2019-12-28 11:38:27', '', 'ACTIVE'), (1054, '2019-12-28', 'INFO CARE INDIA GLOBAL SOLUTIONS', 'JB-28122019/845/CASH', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka', '', 688, '0', '1', '[\"Website development\"]', '[\"998314\"]', '[\"2000\"]', '0', '18%', 0, 'INFO CARE INDIA GLOBAL SOLUTIONS', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2019-12-28 12:06:04', '', 'ACTIVE'), (1055, '2020-01-03', 'Megha Welfare Association', 'JB-03012020/906', 'Kathriguppe Bangalore Karnataka', '', 685, '0', '4', '[\"Website development balance amount\",\"2 banners for children\'s day\",\" Broucher design 11 page\",\"new year template\"]', '[\"998314\",\"998314\",\"998314\",\"998314\"]', '[\"5816\",\"1000\",\"2500\",\"300\"]', '9%', '18%', 0, 'Megha Welfare Association', 'Kathriguppe Bangalore Karnataka', '9%', 865, 865, 9616, 11346, 'Eleven Thousand Three Hundred and Forty Six Rupees Only', 0, '', 'CLEARED', 11346, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-03 12:51:32', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1056, '2020-01-03', 'PEOPLESOFT MANAGEMENT CONSULTANCY SERVICES(OPC)PRIVATE LIMITED', 'JB-03012020/907', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli Bangalore Karnataka', '', 695, '0', '1', '[\"Website development balance payment\"]', '[\"998314\"]', '[\"4500\"]', '0', '18%', 0, 'PEOPLESOFT MANAGEMENT CONSULTANCY SERVICES(OPC)PRIVATE LIMITED', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli Bangalore Karnataka', '9%', 0, 0, 4500, 4500, 'Four Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 4500, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-03 13:16:21', '', 'ACTIVE'), (1057, '2020-01-03', 'INFO CARE INDIA GLOBAL SOLUTIONS', 'JB-03012020/846/CASH', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka', '', 688, '0', '1', '[\"Website development balance amount\"]', '[\"998314\"]', '[\"1000\"]', '0', '18%', 0, 'INFO CARE INDIA GLOBAL SOLUTIONS', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka', '9%', 0, 0, 1000, 1000, 'One Thousand Rupees Only', 0, '', 'CLEARED', 1000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2020-01-03 13:17:48', '', 'ACTIVE'), (1058, '2020-01-03', 'Narayani Holidays and Conferences Pvt Ltd', 'JB-03012020/8/PROFORMA', '#24, Bangalore Karnataka', '', 674, '29BCLPK8908B1ZE', '1', '[\"ERP Development & Implementation\"]', '[\"998314\"]', '[\"330000\"]', '9%', '18%', 0, 'Narayani Holidays and Conferences Pvt Ltd', '#24, Bangalore Karnataka', '9%', 29700, 29700, 330000, 389400, 'Three Lakhs Eighty Nine Thousand Four Hundred Rupees Only', 0, '', 'PARTIAL', 389400, '', 0, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2020-01-03 16:01:09', '', 'ACTIVE'), (1059, '2020-01-03', 'Dr Madhusudhan(Smile Studio)', 'JB-03012020/908', '#74, M.M. Road, Frazer Town, Bangalore Karnataka', '', 107, '0', '1', '[\"SEO & digital marketing for one month\"]', '[\"998314\"]', '[\"45762\"]', '9%', '18%', 0, 'Dr Madhusudhan(Smile Studio)', '#74, M.M. Road, Frazer Town, Bangalore Karnataka', '9%', 4119, 4119, 45762, 54000, 'Fifty Four Thousand Rupees Only', 0, '', 'CLEARED', 54000, '', 328, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-03 16:24:58', '', 'ACTIVE'), (1060, '2020-01-06', 'Jazz Anitique Metals', 'JB-06012020/909', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '', 546, '62FGJZH2162Z1GH', '1', '[\"AMC Renewal 06.01 2020-05.01. 2021\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jazz Anitique Metals', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-06 13:08:05', '', 'ACTIVE'), (1061, '2020-01-06', 'Smart geo engineering services', 'JB-06012020/910', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040 Bangalore Karnataka', '', 554, '29CMYPB9950LIZZ', '1', '[\"AMC renewal from 31.12.2019 to 31.12.2020\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Smart geo engineering services', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040 Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-06 17:28:52', '', 'ACTIVE'), (1062, '2020-01-08', 'Nishtha Aathana', 'JB-08012020/9/PROFORMA', 'Singapore Singapore Singapore 0', '', 0, '0', '1', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '[\"998314\"]', '[\"75000\"]', '9%', '18%', 0, 'Nishtha Aathana', 'Singapore Singapore Singapore 0', '9%', 0, 0, 75000, 75000, 'Seventy Five Thousand Rupees Only', 0, '', 'PARTIAL', 75000, '', 368, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2020-01-08 11:56:43', '', 'ACTIVE'), (1063, '2020-01-09', 'C R FABRICATOR', 'JB-09012020/911', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '', 0, '29AIGPR8697G1ZC', '1', '[\"Static website development advance payment\"]', '[\"998314\"]', '[\"10400\"]', '9%', '18%', 0, 'C R FABRICATOR', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '9%', 936, 936, 10400, 12272, 'Twelve Thousand Two Hundred and Seventy Two Rupees Only', 0, '', 'CLEARED', 12272, '', 370, '', 'EXPIRED', 'Normal', 'Rekha', 'Ajay', '2020-01-09 17:11:43', '2020-02-14', 'ACTIVE'), (1064, '2020-01-10', 'Cosmos Clean System', 'JB-10012020/912', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Bangalore Karnataka 560087', '', 0, '29AAGFC6323E1ZM', '1', '[\"Hosting Renewal\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Cosmos Clean System', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Bangalore Karnataka 560087', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 371, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-10 12:11:59', '', 'ACTIVE'), (1065, '2020-01-13', 'T.saifuddin & co', 'JB-13012020/913', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 526, '29AADFT8885H1ZF', '1', '[\"AMC Renewal \"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-13 15:23:16', '', 'ACTIVE'), (1066, '2020-01-14', 'Durga Steels Corporation', 'JB-14012020/914', 'DURGA Steel Corporation Bangalore Karnataka', '', 82, '0', '1', '[\"Domain & Hosting renewal from 14.01.2020 to 13.01.2021\"]', '[\"998314\"]', '[\"5000\"]', '0', '18%', 0, 'Durga Steels Corporation', 'DURGA Steel Corporation Bangalore Karnataka', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-14 17:45:58', '', 'ACTIVE'), (1067, '2020-01-16', 'Linen Hub', 'JB-16012020/915', '#86,2nd main,Vidyaranyanagar,Magadi road Bangalore Karnataka 560023', '', 0, '0', '1', '[\"Re-design of linen hub(Static website) with 1 webmail with Google adwords advance payment\"]', '[\"998314\"]', '[\"10000\"]', '9%', '18%', 0, 'Linen Hub', '#86,2nd main,Vidyaranyanagar,Magadi road Bangalore Karnataka 560023', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 376, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-16 14:10:18', '', 'ACTIVE'), (1068, '2020-01-17', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-17012020/916', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"New updation in application final payment\"]', '[\"998314\"]', '[\"16950\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 1526, 1526, 16950, 20002, 'Twenty Thousand Two Rupees Only', 0, '', 'CLEARED', 20002, '', 227, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-17 11:05:39', '', 'ACTIVE'), (1069, '2020-01-17', 'Travel Mitra', 'JB-17012020/917', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka', '', 657, '0', '1', '[\"Dynamic website design & Development\"]', '[\"998314\"]', '[\"12712\"]', '9%', '18%', 0, 'Travel Mitra', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka', '9%', 1144, 1144, 12712, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'PARTIAL', 15000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-17 17:52:35', '', 'ACTIVE'), (1070, '2020-01-23', 'Joseph Edwin Prashanth ', 'JB-23012020/10/PROFORMA', 'Cambridge Layout,Indiranagar Bangalore Karnataka 0', '', 0, '0', '1', '[\"Kalpavruksha Project Implementation\"]', '[\"998314\"]', '[\"130000\"]', '9%', '18%', 0, 'Joseph Edwin Prashanth ', 'Cambridge Layout,Indiranagar Bangalore Karnataka 0', '9%', 11700, 11700, 130000, 153400, 'One Lakhs Fifty Three Thousand Four Hundred Rupees Only', 0, '', 'PARTIAL', 153400, '', 380, '', 'EXPIRED', 'Profomo', 'Rekha', 'Rekha', '2020-01-23 12:12:05', '2020-01-23', 'ACTIVE'), (1071, '2020-01-27', 'TOBIK LIFELINE NIG.LTD', 'JB-27012020/847/CASH', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '', 0, '0', '1', '[\"Dynamic website 2nd advance\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'TOBIK LIFELINE NIG.LTD', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 312, '', 'EXPIRED', 'Cash', 'Rekha', '', '2020-01-27 17:35:55', '', 'ACTIVE'), (1072, '2020-01-29', 'TOBIK LIFELINE NIG.LTD', 'JB-29012020/918', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '', 0, '0', '1', '[\"Dynamic website with logo Final Payment\"]', '[\"998314\"]', '[\"20000\"]', '9%', '18%', 0, 'TOBIK LIFELINE NIG.LTD', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '9%', 0, 0, 20000, 20000, 'Twenty Thousand Rupees Only', 0, '', 'PENDING', 20000, '', 312, '', 'WAITING', 'Normal', 'Rekha', '', '2020-01-29 17:58:09', '', 'INACTIVE'), (1073, '2020-01-29', 'TOBIK LIFELINE NIG.LTD', 'JB-29012020/919', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '', 0, '0', '1', '[\"Dynamic website with logo Final Payment\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'TOBIK LIFELINE NIG.LTD', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 312, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-29 18:00:11', '', 'ACTIVE'), (1074, '2020-01-29', 'JSH Facility Solutions', 'JB-29012020/920', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '', 265, '0', '1', '[\"AMC Renewal from 30.01.2020 to 30.01.2021\"]', '[\"998314\"]', '[\"3984\"]', '9%', '18%', 0, 'JSH Facility Solutions', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '9%', 359, 359, 3984, 4702, 'Four Thousand Seven Hundred Two Rupees Only', 0, '', 'CLEARED', 4702, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-01-29 18:04:18', '', 'ACTIVE'), (1075, '2020-02-04', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', 'JB-04022020/921', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '', 0, ' 29AAFCT8568C1ZX', '1', '[\"Website Development in WordPress\"]', '[\"998314\"]', '[\"29000\"]', '9%', '18%', 0, 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '9%', 2610, 2610, 29000, 34220, 'Thirty Four Thousand Two Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 34220, '', 353, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-02-04 18:20:51', '2020-02-04', 'ACTIVE'), (1076, '2020-02-05', 'Navin K', 'JB-05022020/11/PROFORMA', 'Bangalore Bangalore Karnataka 0', '', 0, '0', '1', '[\"E-commerce Magento platform \"]', '[\"998314\"]', '[\"425000\"]', '9%', '18%', 0, 'Navin K', 'Bangalore Bangalore Karnataka 0', '9%', 38250, 38250, 425000, 501500, 'Five Lakhs One Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 501500, '', 391, '', 'WAITING', 'Profomo', 'Rekha', '', '2020-02-05 15:34:20', '', 'INACTIVE'), (1077, '2020-02-05', 'NONAHomes', 'JB-05022020/12/PROFORMA', 'Bangalore Bangalore Karnataka 0', '', 0, '0', '1', '[\"E-commerce Magento platform \"]', '[\"998314\"]', '[\"425000\"]', '9%', '18%', 0, 'NONAHomes', 'Bangalore Bangalore Karnataka 0', '9%', 38250, 38250, 425000, 501500, 'Five Lakhs One Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 501500, '', 392, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2020-02-05 16:00:23', '', 'ACTIVE'), (1078, '2020-02-06', 'Kooldair Systems Pvt Ltd', 'JB-06022020/922', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '', 267, '29AAGCK9901R1ZN', '1', '[\"2 Domain renewals from 06.02.2020 to 05.02.2021\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-02-06 18:05:33', '', 'ACTIVE'), (1079, '2020-02-10', 'Varna Creations', 'JB-10022020/923', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '', 0, '0', '1', '[\"Dynamic website for Varna Creations including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\\r\\nAdvance Payment\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Varna Creations', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 396, '', 'WAITING', 'Normal', 'Rekha', '', '2020-02-10 13:32:23', '', 'INACTIVE'), (1080, '2020-02-10', 'Transe Vision Care Pvt.Ltd', 'JB-10022020/924', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '', 0, '29AAECT1398P1ZH', '1', '[\" Dynamic website for Transe Vision Care Pvt Ltd. including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\\r\\nAdvance payment\"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Transe Vision Care Pvt.Ltd', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 397, '', 'WAITING', 'Normal', 'Rekha', '', '2020-02-10 13:35:43', '', 'INACTIVE'), (1081, '2020-02-10', 'Transe Vision Care Pvt.Ltd', 'JB-10022020/925', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '', 0, '0', '1', '[\" Dynamic website for Transe Vision Care Pvt Ltd. including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '[\"\"]', '[\"5932\"]', '9%', '18%', 0, 'Transe Vision Care Pvt.Ltd', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'PENDING', 7000, '', 397, '', 'WAITING', 'Normal', 'Rekha', '', '2020-02-10 18:32:48', '', 'INACTIVE'), (1082, '2020-02-10', 'Transe Vision Care Pvt.Ltd', 'JB-10022020/926', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka', '', 0, '29AAECT1398P1ZH', '1', '[\"Advance payment for Website Development\"]', '[\"\"]', '[\"5932\"]', '9%', '18%', 0, 'Transe Vision Care Pvt.Ltd', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Rekha', '2020-02-10 18:47:00', '2020-06-25', 'ACTIVE'), (1083, '2020-02-10', 'Varna Creations', 'JB-10022020/927', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka', '', 701, '0', '1', '[\" Dynamic website for Transe Vision Care Pvt Ltd. including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '[\"\"]', '[\"5932\"]', '9%', '18%', 0, 'Varna Creations:701', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'PENDING', 7000, '', 397, '', 'EXPIRED', 'Normal', 'Rekha', 'Ajay', '2020-02-10 18:50:59', '2020-02-11', 'ACTIVE'), (1084, '2020-02-11', 'Poornaprajna International School', 'JB-11022020/928', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore, Bangalore Karnataka', '', 279, '0', '1', '[\"AMC renewal Till 28 FEB 2021\\r\\nFor website\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Poornaprajna International School', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-02-11 16:07:41', '', 'ACTIVE'), (1085, '2020-02-14', 'Swansilk Pvt Ltd', 'JB-14022020/929', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"server renewal for 6 months (Feb 28- August 31 of 2020)\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 0, 0, 23000, 0, '', 0, '', 'PENDING', 0, '', 394, '', 'WAITING', 'Normal', 'Ajay', '', '2020-02-14 13:17:01', '', 'INACTIVE'), (1086, '2020-02-14', 'Swansilk Pvt Ltd', 'JB-14022020/930', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"server renewal for 6 months (Feb 28- August 31 of 2020)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 394, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-02-14 13:19:25', '', 'ACTIVE'), (1087, '2020-02-14', 'Deco-Textil Pvt Ltd', 'JB-14022020/931', 'Swan House Bangalore Karnataka ', '', 0, '29AACFD0446K1ZG', '1', '[\"server renewal for 6 months (Feb 28- August 31 of 2020)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 395, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-02-14 13:23:38', '', 'ACTIVE'), (1088, '2020-02-14', 'Vikas milk diary', 'JB-14022020/13/PROFORMA', 'Nanjangud Mysore Karnataka', '', 702, '0', '1', '[\"ERP application as shared in Proposal\"]', '[\"998314\"]', '[\"200000\"]', '9%', '18%', 0, 'Vikas milk diary', 'Nanjangud Mysore Karnataka', '9%', 18000, 18000, 200000, 236000, 'Two Lakhs Thirty Six Thousand Rupees Only', 0, '', 'PARTIAL', 236000, '', 0, '', 'EXPIRED', 'Profomo', 'Ajay', '', '2020-02-14 13:36:43', '', 'ACTIVE'), (1089, '2020-02-17', 'C R FABRICATOR', 'JB-17022020/932', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka', '', 697, '29AIGPR8697G1ZC', '1', '[\"Google Adwords\"]', '[\"998314\"]', '[\"6779\"]', '9%', '18%', 0, 'C R FABRICATOR', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka', '9%', 610.5, 610.5, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'PENDING', 8000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-02-17 17:02:38', '', 'ACTIVE'), (1090, '2020-02-19', 'Super shine wash', 'JB-19022020/933', 'No.14 Bangalore Karnataka', '', 581, 'No', '1', '[\"AMC renewal till 26-02-2021\\r\\nFor website\"]', '[\"998314\"]', '[\"3389\"]', '9%', '18%', 0, 'Super shine wash', 'No.14 Bangalore Karnataka', '9%', 305.5, 305.5, 3389, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-02-19 17:58:24', '', 'ACTIVE'), (1091, '2020-02-20', 'Siddhi Coaching', 'JB-20022020/934', ' Vijayanagar Banglore', '', 0, '0', '1', '[\"AMC Renewal from 2020-2021\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Siddhi Coaching', ' Vijayanagar Banglore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-02-20 15:03:52', '2020-02-20', 'ACTIVE'), (1092, '2020-02-27', 'American Smiles', 'JB-27022020/935', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '', 310, '29ABHSM0708R1ZP', '1', '[\"AMC for website hosting and domine from 18\\/02\\/2020 TO 18\\/02\\/2021\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'American Smiles', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-02-27 11:39:14', '', 'ACTIVE'), (1093, '2020-03-05', 'John D Leo Engineering Inc', 'JB-05032020/936', ' Bangalore ', '', 0, '0', '1', '[\"AMC renewal from 09-03-2020 to 09-03-2021\\r\\nFor website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'John D Leo Engineering Inc', ' Bangalore ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-03-05 16:03:17', '2020-03-09', 'ACTIVE'), (1094, '2020-03-09', 'Rajiv Dental Care Centre', 'JB-09032020/937', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '', 464, 'NO', '1', '[\"AMC renewal for dentics till Feb 2021\"]', '[\"998314\"]', '[\"4500\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'CLEARED', 5310, '', 413, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-03-09 10:42:58', '', 'ACTIVE'), (1095, '2020-03-09', 'Century pools', 'JB-09032020/938', ' Bangalore Karnataka', '', 0, '0', '1', '[\"AMC Renewal for website till 2021\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Century pools', ' Bangalore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-03-09 11:08:34', '2020-03-09', 'ACTIVE'), (1096, '2020-03-09', 'Century pools', 'JB-09032020/938', ' Bangalore Karnataka', '', 0, '0', '1', '[\"AMC Renewal for website till 2021\"]', '[\"998314\"]', '[\"NaN\"]', '0', '18%', 0, 'Century pools', ' Bangalore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'PENDING', 4000, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-03-09 11:08:48', '', 'INACTIVE'), (1097, '2020-03-13', 'AB Squares', 'JB-13032020/939', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '', 578, '29AAOCA7919F1Z8', '1', '[\"Support charges\"]', '[\"998314\"]', '[\"2118\"]', '0', '18%', 0, 'AB Squares', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '9%', 191, 191, 2118, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 2500, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-03-13 18:37:25', '', 'INACTIVE'), (1098, '2020-03-13', 'AB Squares', 'JB-13032020/939', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '', 0, '29AAOCA7919F1Z8', '1', '[\"Support charges\"]', '[\"998314\"]', '[\"2118\"]', '0', '18%', 0, 'AB Squares', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '9%', 191, 191, 2118, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 2500, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-03-13 18:37:41', '', 'INACTIVE'), (1099, '2020-03-13', 'AB Squares', 'JB-13032020/940', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '', 578, '29AAOCA7919F1Z8', '1', '[\"support charges\"]', '[\"998314\"]', '[\"NaN\"]', '0', '18%', 0, 'AB Squares', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka', '9%', 0, 0, 2500, 2500, 'Two Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 2500, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-03-13 18:42:51', '', 'INACTIVE'), (1100, '2020-03-17', 'Dr Shesha Prasad', 'JB-17032020/941', ' Bengaluru ', '', 394, '0', '1', '[\"Dentics AMC till Jan 2021\"]', '[\"\"]', '[\"4500\"]', '9%', '18%', 0, 'Dr Shesha Prasad', ' Bengaluru ', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'CLEARED', 5310, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-03-17 12:12:20', '', 'ACTIVE'), (1101, '2020-03-17', 'Sri krishna Seva Ashrama', 'JB-17032020/942', ' Bengaluru ', '', 0, '0', '1', '[\"Sri Krishna Seva Ashram Dentics AMC till Jan 2021\"]', '[\"\"]', '[\"4500\"]', '9%', '18%', 0, 'Sri krishna Seva Ashrama', ' Bengaluru ', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'CLEARED', 5310, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2020-03-17 12:17:41', '2020-03-17', 'ACTIVE'), (1102, '2020-03-18', 'Jaisri Leather Fashions', 'JB-18032020/943', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore Bangalore Karnataka', '', 138, '29AMAPB5212B1ZV', '1', '[\"AMC Renewal for website till 2021\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Jaisri Leather Fashions', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-03-18 18:53:32', '', 'ACTIVE'), (1103, '2020-04-06', 'Kaaryaka Singapore Pte Ltd', 'JB-06042020/944', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '', 707, '0', '1', '[\"Advance Payment for Nexus application Development \"]', '[\"998314\"]', '[\"650000\"]', '9%', '18%', 0, 'Kaaryaka Singapore Pte Ltd:707', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '9%', 0, 0, 650000, 650000, 'Six Lakhs Fifty Thousand Rupees Only', 0, '', 'CLEARED', 650000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2020-04-06 11:46:17', '2020-07-30', 'ACTIVE'), (1104, '2020-05-07', 'Kaaryaka Singapore Pte Ltd', 'JB-07052020/945', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '', 707, '0', '1', '[\"Development of Project Nexus Payment 2\"]', '[\"998314\"]', '[\"650000\"]', '9%', '18%', 0, 'Kaaryaka Singapore Pte Ltd:707', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '9%', 0, 0, 650000, 650000, 'Six Lakhs Fifty Thousand Rupees Only', 0, '', 'CLEARED', 650000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2020-05-07 15:40:08', '2020-07-30', 'ACTIVE'), (1105, '2020-05-13', 'Manukula Charitable and Educational Trust', 'JB-13052020/946', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka', '', 328, 'NO', '1', '[\"Amc renewal for domain and hosting\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Manukula Charitable and Educational Trust', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', '', '2020-05-13 12:51:45', '', 'ACTIVE'), (1106, '2020-05-12', 'Truecon Enterprises', 'JB-13052020/947', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka', '', 0, '29CKHPP9108B1Z1', '1', '[\"AMC renewal for domain and hosting\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ashwini', 'Ashwini', '2020-05-13 12:56:02', '2020-05-13', 'ACTIVE'), (1107, '2020-05-19', 'Sphoorthi Jyothi Foundation', 'JB-19052020/948', ' Bangalore', '', 616, '0', '1', '[\"AMC renewal for website(spoorthijyothi.org)\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Sphoorthi Jyothi Foundation', ' Bangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-19 12:05:25', '', 'ACTIVE'), (1108, '2020-05-19', 'SRMG STONE PRIVATE LIMITED', 'JB-19052020/949', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 307, '29ABCCS4865R1ZC', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-19 14:05:13', '', 'ACTIVE'), (1109, '2020-05-19', 'Ashirwad Dental Clinic', 'JB-19052020/950', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 129, 'NO', '1', '[\"AMC For Dentics\"]', '[\"998314\"]', '[\"4800\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '9%', 432, 432, 4800, 5664, 'Five Thousand Six Hundred and Sixty Four Rupees Only', 0, '', 'CLEARED', 5664, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-19 18:35:36', '', 'ACTIVE'), (1110, '2020-05-20', 'Mpowering skills', 'JB-20052020/951', ' Bangalore ', '', 128, '0', '1', '[\"AMC renewal for website \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Mpowering skills', ' Bangalore ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-20 12:10:50', '', 'ACTIVE'), (1111, '2020-05-22', 'Dr karthik Shetty', 'JB-22052020/952', ' Mangalore ', '', 397, '0', '1', '[\"AMC renewal for Dentics\"]', '[\"998314\"]', '[\"4715\"]', '9%', '18%', 0, 'Dr karthik Shetty', ' Mangalore ', '9%', 424.5, 424.5, 4715, 5564, 'Five Thousand Five Hundred and Sixty Four Rupees Only', 0, '', 'CLEARED', 5564, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-22 15:22:03', '', 'ACTIVE'), (1112, '2020-05-25', 'Excellence Dental Health Care', 'JB-25052020/953', ' Mangalore Karnataka', '', 70, '0', '1', '[\"AMC for Dentics\"]', '[\"998314\"]', '[\"2400\"]', '9%', '18%', 0, 'Excellence Dental Health Care', ' Mangalore Karnataka', '9%', 216, 216, 2400, 2832, 'Two Thousand Eight Hundred and Thirty Two Rupees Only', 0, '', 'CLEARED', 2832, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-25 12:53:36', '', 'ACTIVE'), (1113, '2020-05-26', 'Kshitij', 'JB-26052020/954', ' Bangalore 0', '', 0, '0', '1', '[\"Word press website development.\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kshitij', ' Bangalore 0', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 419, '', 'WAITING', 'Normal', 'Rekha', '', '2020-05-26 15:13:18', '', 'INACTIVE'), (1114, '2020-05-26', 'Kshitij', 'JB-26052020/954', ' Bangalore 0', '', 0, '0', '1', '[\"Word press website development.\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Kshitij', ' Bangalore 0', '9%', 0, 0, 17700, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 419, '', 'WAITING', 'Normal', 'Rekha', '', '2020-05-26 15:13:18', '', 'INACTIVE'), (1115, '2020-05-26', 'Kshitij', 'JB-26052020/954', ' Bangalore 0', '', 0, '0', '1', '[\"Word press website development.\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kshitij', ' Bangalore 0', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 419, '', 'WAITING', 'Normal', 'Rekha', '', '2020-05-26 15:13:18', '', 'INACTIVE'), (1116, '2020-05-26', 'Kshitij', 'JB-26052020/954', ' Bangalore 0', '', 0, '0', '1', '[\"Word press website development.\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kshitij', ' Bangalore 0', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 419, '', 'WAITING', 'Normal', 'Rekha', '', '2020-05-26 15:13:19', '', 'INACTIVE'), (1117, '2020-05-26', 'Kshitij', 'JB-26052020/954', ' Bangalore 0', '', 0, '0', '1', '[\"Word press website development.\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Kshitij', ' Bangalore 0', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PARTIAL', 17700, '', 419, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-05-26 15:13:19', '2020-05-26', 'ACTIVE'), (1118, '2020-05-29', 'Happy Garden', 'JB-29052020/955', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka', '', 102, '29ACIPS8466L1ZK', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Happy Garden', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka', '9%', 0, 0, 5900, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-05-29 13:30:47', '', 'INACTIVE'), (1119, '2020-05-29', 'Happy Garden', 'JB-29052020/956', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC renewal for website\\r\\n(happygarden.in)\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Happy Garden', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-05-29 14:00:49', '2020-07-08', 'ACTIVE'), (1120, '2020-05-30', 'Kids Zone', 'JB-30052020/957', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '', 94, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"5508\"]', '9%', '18%', 0, 'Kids Zone', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '9%', 496, 496, 5508, 6500, 'Six Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 6500, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-05-30 13:50:50', '', 'ACTIVE'), (1121, '2020-06-02', 'Deco-Textil Pvt Ltd', 'JB-02062020/958', 'Swan House Bangalore Karnataka', '', 207, '29AACCS4515R1ZR', '1', '[\"AMC renewal for Swansilk ERP Application June2020-December2020\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'WAITING', 'Normal', 'Rekha', 'Rekha', '2020-06-02 13:58:54', '2020-06-02', 'INACTIVE'), (1122, '2020-06-02', 'Swansilk Pvt Ltd', 'JB-02062020/959', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"AMC renewal for Swansilk ERP Application June2020-December2020\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'WAITING', 'Normal', 'Rekha', 'Rekha', '2020-06-02 14:00:50', '2020-06-02', 'INACTIVE'), (1123, '2020-06-02', 'Deco-Textil Pvt Ltd', 'JB-02062020/960', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC renewal for Deco-Textil ERP Application June2020-December2020 200 hrs of support\\/Development included.\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-06-02 14:13:48', '', 'INACTIVE'), (1124, '2020-06-02', 'Swansilk Pvt Ltd', 'JB-02062020/961', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC renewal for Swansilk\\r\\n ERP Application June2020-December2020\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-02 14:26:23', '', 'ACTIVE'), (1125, '2020-06-02', 'Deco-Textil Pvt Ltd', 'JB-02062020/962', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC renewal for Deco-Textil ERP Application June2020-December2020\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Deco-Textil Pvt Ltd', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-02 14:30:40', '', 'ACTIVE'), (1126, '2020-06-04', 'SIRI Global Services', 'JB-04062020/963', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka', '', 630, '0', '1', '[\"AMC renewal for website.\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SIRI Global Services', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-04 13:42:37', '', 'ACTIVE'), (1127, '2020-06-08', 'Medusys Pty Ltd', 'JB-08062020/964', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '', 713, '0', '1', '[\"E-PIMS module(e-patinet information management system)\"]', '[\"998314\"]', '[\"611169\"]', '9%', '18%', 0, 'Medusys Pty Ltd', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '9%', 0, 0, 611169, 525000, 'Five Lakhs Twenty Five Thousand Rupees Only', 0, '', 'PARTIAL', 525000, '', 433, '', 'EXPIRED', 'Normal', 'Ajay', 'Subramanya', '2020-06-08 16:16:34', '2020-12-29', 'ACTIVE'), (1128, '2020-06-11', 'Creative Networks', 'JB-11062020/965', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '', 0, '29AAMTE8611C1Z3', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Creative Networks', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '9%', 0, 0, 0, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', 'Rekha', '2020-06-11 12:13:26', '2020-06-11', 'INACTIVE'), (1129, '2020-06-11', 'Creative Networks', 'JB-11062020/965', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '', 89, '29AAMTE8611C1Z3', '1', '[\"AMC for website till 30 May 2021\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Creative Networks', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-06-11 13:01:28', '', 'ACTIVE'), (1130, '2020-06-12', 'Livsys Devices India Pvt Ltd', 'JB-12062020/967', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka', '', 590, '29AADCL7404P1ZZ', '1', '[\"Hosting charges on AWS for Lifesys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage\\r\\n100% of Payment to be made.\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd:590', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka', '9%', 2700, 2700, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'PARTIAL', 35400, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Ajay', '2020-06-12 15:27:23', '2020-07-08', 'ACTIVE'), (1131, '2020-06-15', 'Essence Home Decor Pvt Ltd', 'JB-15062020/968', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka', '', 687, '29AAECE7048P1ZX', '1', '[\"J-fiber soft product\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Essence Home Decor Pvt Ltd', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka', '9%', 0, 0, 149860, 149860, 'One Lakhs Forty Nine Thousand Eight Hundred Sixty Rupees Only', 0, '', 'PENDING', 149860, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-06-15 13:29:16', '', 'INACTIVE'), (1132, '2020-06-15', 'Essence Home Decor Pvt Ltd', 'JB-15062020/969', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '', 0, '0', '1', '[\"J-fiber soft product\"]', '[\"998314\"]', '[\"127000\"]', '9%', '18%', 0, 'Essence Home Decor Pvt Ltd', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '9%', 11430, 11430, 127000, 149860, 'One Lakhs Forty Nine Thousand Eight Hundred Sixty Rupees Only', 0, '', 'PENDING', 149860, '', 320, '', 'WAITING', 'Normal', 'Ajay', '', '2020-06-15 13:33:45', '', 'INACTIVE'), (1133, '2020-06-15', 'Essence Home Decor Pvt Ltd', 'JB-15062020/966', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '', 0, '29AAECE7048P1ZX', '1', '[\"J-fiber soft product\"]', '[\"998314\"]', '[\"127000\"]', '9%', '18%', 0, 'Essence Home Decor Pvt Ltd', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '9%', 11430, 11430, 127000, 149860, 'One Lakhs Forty Nine Thousand Eight Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 149860, '', 320, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-06-15 13:36:59', '', 'ACTIVE'), (1134, '2020-06-16', 'khincha dental centre', 'JB-16062020/971', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '', 391, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'khincha dental centre', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-16 12:13:42', '', 'ACTIVE'), (1135, '2020-06-17', 'Dental Diagnostic Centre', 'JB-17062020/972', '#6, Bangalore Karnataka', '', 264, 'NO', '1', '[\"2 Website hosting renewal \"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Dental Diagnostic Centre', '#6, Bangalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-17 15:51:00', '', 'ACTIVE'), (1136, '2020-06-23', 'Anamiivaa', 'JB-18062020/973', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '', 0, 'NO', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Anamiivaa', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-06-18 15:06:00', '2020-06-23', 'ACTIVE'), (1137, '2020-06-19', 'B4B Data Solutions', 'JB-19062020/974', 'Bangalore', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'B4B Data Solutions', 'Bangalore', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-19 12:58:21', '', 'ACTIVE'), (1138, '2020-06-25', 'Turbmax', 'JB-25062020/975', 'Batrahalli near ICiC bank Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Turbmax', 'Batrahalli near ICiC bank Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-25 18:36:09', '', 'ACTIVE'), (1139, '2020-06-30', 'Indo Swiss Anti - Shock Limited', 'JB-30062020/976', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka', '', 0, '29AAACI5889G1Z3', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-30 12:30:02', '', 'ACTIVE'), (1140, '2020-06-30', 'Udupi bakery', 'JB-30062020/977', ' Bangalore Karnataka', '', 0, '0', '1', '[\"Full payment for Website Development \"]', '[\"998314\"]', '[\"5932\"]', '9%', '18%', 0, 'Udupi bakery', ' Bangalore Karnataka', '9%', 534, 534, 5932, 7000, 'Seven Thousand Rupees Only', 0, '', 'CLEARED', 7000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-06-30 15:59:10', '', 'ACTIVE'), (1141, '2020-07-08', 'Kaaryaka Singapore Pte Ltd', 'JB-08072020/978', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '', 707, '0', '1', '[\"Sprint 2 for NEXUS development One month Billing\"]', '[\"998314\"]', '[\"650000\"]', '9%', '18%', 0, 'Kaaryaka Singapore Pte Ltd:707', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '9%', 0, 0, 650000, 650000, 'Six Lakhs Fifty Thousand Rupees Only', 0, '', 'CLEARED', 650000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2020-07-08 12:13:26', '2020-07-30', 'ACTIVE'), (1142, '2020-07-09', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 'JB-09072020/979', ' Bangalore Karnataka ', '', 0, '0', '1', '[\"5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\\r\\n\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', ' Bangalore Karnataka ', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 446, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-09 11:40:30', '', 'ACTIVE'), (1143, '2020-07-10', 'Build Wick Ventures', 'JB-10072020/980', ' Bangalore Karnataka', '', 0, '0', '1', '[\"Balance Payment for Website Development and 2 E-mail id\"]', '[\"998314\"]', '[\"5084\"]', '9%', '18%', 0, 'Build Wick Ventures', ' Bangalore Karnataka', '9%', 458, 458, 5084, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-10 12:36:51', '', 'ACTIVE'), (1144, '2020-07-10', 'Kshathriya royal food and The Creams Corner', 'JB-10072020/981', ' ', '', 0, '0', '1', '[\"AMC Renewal for 2 websites\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Kshathriya royal food and The Creams Corner', ' ', '9%', 0, 0, 6500, 6500, 'Six Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 6500, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-07-10 14:24:52', '2020-07-10', 'ACTIVE'), (1145, '2020-07-10', 'TOG Services', 'JB-10072020/982', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka', '', 0, '29ADSPD8422E2ZD', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'TOG Services', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-10 16:09:13', '', 'ACTIVE'), (1146, '2020-07-14', 'Yaskawa India Pvt Ltd', 'JB-14072020/14/PROFORMA', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"AMC for ABP portal \\r\\n2020 - 2021.\\r\\nIt includes 100 Hrs of support.\\r\\n\\r\\n\"]', '[\"998314\"]', '[\"38135\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 3432.5, 3432.5, 38135, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'PENDING', 45000, '', 0, '', 'EXPIRED', 'Profomo', 'Rekha', '', '2020-07-14 13:29:55', '', 'ACTIVE'), (1147, '2020-07-14', 'SLV Scientific Supplies', 'JB-14072020/983', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SLV Scientific Supplies', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-14 18:33:29', '', 'ACTIVE'), (1148, '2020-07-16', 'VidyaJyothi Foundation', 'JB-16072020/984', '#20, 1st Cross, KEB Road, Anjananagara, Magadi Main Road, Bangaluru -91 Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'VidyaJyothi Foundation', '#20, 1st Cross, KEB Road, Anjananagara, Magadi Main Road, Bangaluru -91 Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-16 11:28:44', '', 'ACTIVE'), (1149, '2020-07-17', 'LASO ', 'JB-17072020/985', ' C/O Mr. Vigneshwar\r\n Bangalore', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'LASO ', ' C/O Mr. Vigneshwar\r\n Bangalore', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-17 13:56:48', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1150, '2020-07-22', 'aswini agrotech', 'JB-22072020/986', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC renewal for website\\r\\n(aswiniagrotech.com)\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-22 15:43:38', '', 'ACTIVE'), (1151, '2020-07-24', 'The Dental Square Multispeciality Dental clinic', 'JB-24072020/987', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka', '', 717, '0', '1', '[\"Dentics Software\"]', '[\"998314\"]', '[\"38135\"]', '9%', '18%', 0, 'The Dental Square Multispeciality Dental clinic', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka', '9%', 3432.5, 3432.5, 38135, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'PENDING', 45000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-24 13:43:06', '', 'ACTIVE'), (1152, '2020-07-25', 'Brindavan hospital', 'JB-25072020/988', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka ', '', 0, '0', '1', '[\"Domain and Hosting renewal from 25-07-2020 To 25-07-2021\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Brindavan hospital', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka ', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-25 18:58:20', '', 'ACTIVE'), (1153, '2020-07-27', 'G V IMPORTS & INFRA', 'JB-27072020/989', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '', 0, '29CIEPS1924B1ZD', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'G V IMPORTS & INFRA', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-27 15:55:29', '', 'ACTIVE'), (1154, '2020-07-30', 'Blitzkrieg Audio Video Pvt Ltd', 'JB-30072020/990', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage Bangalore Karnataka', '', 0, '29AAHCB8526A1ZR', '1', '[\"20 hours of support included on the website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Blitzkrieg Audio Video Pvt Ltd', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PARTIAL', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-07-30 17:58:56', '', 'ACTIVE'), (1155, '2020-08-03', 'Yaskawa India Pvt Ltd', 'JB-03082020/991', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"AMC for ABP portal \\r\\n2020 - 2021.\\r\\nIt includes 100 Hrs of support.\"]', '[\"998314\"]', '[\"38135\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 3432.5, 3432.5, 38135, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'CLEARED', 45000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-08-03 16:26:13', '', 'ACTIVE'), (1156, '2020-08-06', 'Sri Manjunatha civil Constructions', 'JB-06082020/848/CASH', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '', 577, '29ESBPS5141D1ZP', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '0', '18%', 0, 'Sri Manjunatha civil Constructions', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2020-08-06 13:09:18', '', 'ACTIVE'), (1157, '2020-08-07', 'Elite Canals Dental Clinic', 'JB-07082020/992', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Elite Canals Dental Clinic', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-08-07 11:32:08', '', 'ACTIVE'), (1158, '2020-08-07', 'The Dental Square Multispeciality Dental clinic', 'JB-07082020/993', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka ', '', 0, '0', '1', '[\"1. AMC Rs.5000 \\/ Year + \\r\\n GST\\r\\n\\r\\n2. The customer to manage \\r\\n the DLT registration and \\r\\n sender ID. Once \\r\\n they get the Sender ID \\r\\n approved, \\r\\n we can configure the \\r\\n same in the PMS \\r\\n software. SMS as \\r\\n per the \\r\\n package they choose. \\r\\n We will send \\r\\n the SMS package tariff \\r\\n soon.\"]', '[\"998314\"]', '[\"38136\"]', '9%', '18%', 0, 'The Dental Square Multispeciality Dental clinic', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka ', '9%', 3432, 3432, 38136, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'CLEARED', 45000, '', 454, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-08-07 12:41:07', '2020-08-07', 'ACTIVE'), (1159, '2020-08-10', 'Kaaryaka Singapore Pte Ltd', 'JB-10082020/994', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '', 707, '0', '1', '[\"Sprint 3 Development for 1 month Duration \"]', '[\"\"]', '[\"650000\"]', '0', '18%', 0, 'Kaaryaka Singapore Pte Ltd', '10, Anson Road, #29-02A International Plaza, Singapore - 079903 ', '9%', 0, 0, 650000, 650000, 'Six Lakhs Fifty Thousand Rupees Only', 0, '', 'PENDING', 650000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2020-08-10 11:59:10', '', 'ACTIVE'), (1160, '2020-08-11', 'Royale electronics', 'JB-11082020/995', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 0, '29AADFR6653F1ZZ', '1', '[\"Balance Payment for Website Development \"]', '[\"998314\"]', '[\"8644\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '9%', 778, 778, 8644, 10200, 'Ten Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 10200, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-08-11 12:31:58', '2020-09-21', 'ACTIVE'), (1161, '2020-08-12', 'Swansilk Pvt Ltd', 'JB-12082020/996', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"server renewal for 6 months\\r\\n(Sept 01 - Feb 28 of 2021)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-08-12 15:30:23', '', 'ACTIVE'), (1162, '2020-08-12', 'DECO TEXTIL', 'JB-12082020/997', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"server renewal for 6 months\\r\\n(Sept 01 - Feb 28 of 2021)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-08-12 15:31:50', '2020-08-14', 'ACTIVE'), (1163, '2020-08-17', 'Eco Travells', 'JB-17082020/998', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 0, '0', '1', '[\"AMC renewal for website \"]', '[\"998314\"]', '[\"NaN\"]', '0', '18%', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'PENDING', 4000, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-08-17 19:55:38', '', 'INACTIVE'), (1164, '2020-08-17', 'Eco Travells', 'JB-17082020/998', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '', 0, '0', '1', '[\"AMC renewal for website \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Eco Travells', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-08-17 19:56:04', '2020-08-17', 'ACTIVE'), (1165, '2020-08-19', 'Alert Global Security Service', 'JB-19082020/999', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4067\"]', '9%', '18%', 0, 'Alert Global Security Service', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka', '9%', 366.5, 366.5, 4067, 4800, 'Four Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 4800, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-08-19 14:35:22', '', 'ACTIVE'), (1166, '2020-08-29', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 'JB-29082020/1000', ' Bangalore Karnataka ', '', 0, '0', '2', '[\"2 nos X 3\\\" Thermal printer \\\" \\r\\n(8475 X 2)\",\"Configuration service charges\"]', '[\"998314\",\"998314\"]', '[\"16950\",\"3000\"]', '9%', '18%', 0, 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', ' Bangalore Karnataka ', '9%', 1796, 1796, 19950, 23542, 'Twenty Three Thousand Five Hundred and Forty Two Rupees Only', 0, '', 'CLEARED', 23542, '', 463, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-08-29 12:58:58', '', 'ACTIVE'), (1167, '2020-09-01', 'Shreenidhi Tours and Travels', 'JB-01092020/1001', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Shreenidhi Tours and Travels', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'PARTIAL', 4000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-01 12:49:55', '2020-09-01', 'ACTIVE'), (1168, '2020-09-04', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-04092020/1002', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '29AAACG3912G1ZT', '1', '[\"Server renewal 40 GB + extendable for one Year\"]', '[\"998314\"]', '[\"25000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 29500, '', 464, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-04 16:16:48', '2020-09-04', 'ACTIVE'), (1169, '2020-09-07', 'Intercontinental Logistics', 'JB-07092020/1003', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '', 0, '29BIIPS9092K3Z6', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Intercontinental Logistics', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-09-07 14:30:23', '', 'ACTIVE'), (1170, '2020-09-07', 'Mia Casa', 'JB-07092020/1004', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Mia Casa', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '9%', 0, 0, 5900, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-09-07 14:38:30', '', 'INACTIVE'), (1171, '2020-09-07', 'Mia Casa', 'JB-07092020/1004', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Mia Casa', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-07 14:40:55', '2020-09-07', 'ACTIVE'), (1172, '2020-09-14', 'JSS Hospital', 'JB-14092020/1006', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '', 0, '0', '1', '[\"AMC for website for year 2020-2021\\r\\n\\r\\nAMC Period: 01-06-2020 to 30-05-2021\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'JSS Hospital', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'CLEARED', 25960, '', 432, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-09-14 18:43:39', '', 'ACTIVE'), (1173, '2020-09-18', 'Ankush Rajpurohit', 'JB-18092020/1007', '370,6th cross Kamakshi Hospital road Mysuru-570 009 Karnataka ', '', 0, '0', '1', '[\"1.\\tLogo and Stationery (Letterhead, Envelope, Visiting cards, Flyer)\\r\\n2.\\tDomain and Hosting \\r\\n3.\\t Dynamic website development \\r\\n\\r\\n\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Ankush Rajpurohit', '370,6th cross Kamakshi Hospital road Mysuru-570 009 Karnataka ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PARTIAL', 27140, '', 465, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-18 18:28:07', '2020-12-18', 'ACTIVE'), (1174, '2020-09-22', 'Catabill', 'JB-22092020/849/CASH', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore Karnataka', '', 0, '0', '1', '[\"AMC for Hosting renewal\"]', '[\"998314\"]', '[\"15000\"]', '0', '18%', 0, 'Catabill', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore Karnataka', '9%', 0, 0, 15000, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2020-09-22 17:02:45', '', 'ACTIVE'), (1175, '2020-09-24', 'ALT training college', 'JB-24092020/1008', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '', 0, '0', '1', '[\"AMC renewal for website.\\r\\n\\r\\nAMC Period : 1 Oct 2020 to 1 Oct 2021\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'ALT training college', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 445, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-24 13:32:43', '2020-09-24', 'ACTIVE'), (1176, '2020-09-25', 'aswini agrotech', 'JB-25092020/1009', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 0, '29ACIPS8466L1ZK', '1', '[\"AMC renewal for website \\r\\n(visavifoods.com)\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-09-25 15:47:19', '2020-09-25', 'ACTIVE'), (1177, '2020-09-28', 'Sri Venu Glass', 'JB-28092020/1010', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka 560043', '', 0, '29ADZFS0863K1Z3', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Sri Venu Glass', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 468, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-09-28 17:24:25', '', 'ACTIVE'), (1178, '2020-10-01', 'Sri Venu Glass', 'JB-01102020/1011', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka 560043', '', 0, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Sri Venu Glass', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka 560043', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 468, '', 'WAITING', 'Normal', 'Rekha', '', '2020-10-01 13:44:03', '', 'INACTIVE'), (1179, '2020-10-05', 'Biosite India Pvt Ltd', 'JB-05102020/1012', 'Biosite Research Private Limited\r\n3rd Floor, Chandru Complex, \r\nabove Vijaya Bank ATM, RBI Layout,\r\nJP Nagar 7th Phase, J. P. Nagar,\r\nBengaluru, Karnataka 560078\r\n\r\n', '', 0, '29AAGCB1592H1ZI', '1', '[\"Website changes\\r\\n1.Need to update new address and year in website.\\r\\n2. Add Tagline in LOGO\\r\\n3. favicon changes\\r\\n4. Linkdin \"]', '[\"998314\"]', '[\"2000\"]', '9%', '18%', 0, 'Biosite India Pvt Ltd', 'Biosite Research Private Limited\r\n3rd Floor, Chandru Complex, \r\nabove Vijaya Bank ATM, RBI Layout,\r\nJP Nagar 7th Phase, J. P. Nagar,\r\nBengaluru, Karnataka 560078\r\n\r\n', '9%', 180, 180, 2000, 2360, 'Two Thousand Three Hundred Sixty Rupees Only', 0, '', 'CLEARED', 2360, '', 470, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-10-05 16:23:53', '2020-12-14', 'ACTIVE'), (1180, '2020-10-06', 'Prakruthi Yatri Nivas', 'JB-06102020/1013', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '', 0, '0', '1', '[\"AMC for website(2020-21)\\r\\nwww.prakruthiyatrinivas.in\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Prakruthi Yatri Nivas', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-10-06 11:23:11', '', 'ACTIVE'), (1181, '2020-10-07', 'Yashas Narayan', 'JB-07102020/1014', 'Mysore Mysore Karnataka', '', 676, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Yashas Narayan', 'Mysore Mysore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-10-07 13:53:35', '', 'ACTIVE'), (1182, '2020-10-08', 'Zurie Developers', 'JB-08102020/1015', 'Bangalore', '', 634, '0', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"4576\"]', '9%', '18%', 0, 'Zurie Developers', 'Bangalore', '9%', 412, 412, 4576, 5400, 'Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 5400, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-10-08 10:59:14', '', 'ACTIVE'), (1183, '2020-10-09', 'Dr Madhusudhan(Smile Studio)', 'JB-09102020/1016', '#74, M.M. Road, Frazer Town, Bangalore Karnataka', '', 107, '0', '1', '[\"AMC renewal for website.\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Dr Madhusudhan(Smile Studio)', '#74, M.M. Road, Frazer Town, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-10-09 15:18:50', '', 'ACTIVE'), (1184, '2020-10-27', 'Mother\'s Choice Bangalore', 'JB-27102020/1017', '#1262/B,19th \'B\' Main Road Bangalore Karnataka', '', 0, '0', '1', '[\"Website development \"]', '[\"998314\"]', '[\"NaN\"]', '9%', '18%', 0, 'Mother\'s Choice Bangalore', '#1262/B,19th \'B\' Main Road Bangalore Karnataka', '9%', 0, 0, 9440, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PENDING', 9440, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-10-27 10:48:47', '', 'INACTIVE'), (1185, '2020-10-27', 'Mother\'s Choice Bangalore', 'JB-27102020/1017', '#1262/B,19th \'B\' Main Road Bangalore Karnataka', '', 694, '0', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Mother\'s Choice Bangalore', '#1262/B,19th \'B\' Main Road Bangalore Karnataka', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PARTIAL', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-10-27 10:50:13', '', 'ACTIVE'), (1186, '2020-11-06', 'Radion Dental Equipments Pvt Ltd', 'JB-06112020/1019', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka 560096', '', 0, '0', '1', '[\"AMC Renewal for website\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Radion Dental Equipments Pvt Ltd', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka 560096', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 479, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-11-06 18:12:21', '', 'ACTIVE'), (1187, '2020-11-09', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-09112020/1020', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '0', '2', '[\"Upgradation of GSS ERP.\",\"Annual Maintenance Charge for ERP (waived off as upgradation is in Process)\"]', '[\"998314\",\"998314\"]', '[\"127118\",\"0\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 11441, 11441, 127118, 150000, 'One Lakhs Fifty Thousand Rupees Only', 0, '', 'PARTIAL', 150000, '', 452, '', 'EXPIRED', 'Normal', 'Rekha', 'Ajay', '2020-11-09 12:43:25', '2021-08-13', 'ACTIVE'), (1188, '2020-11-10', 'Swansilk Pvt Ltd', 'JB-10112020/1021', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC renewal for Swansilk\\r\\n ERP Application\\r\\nValid until: 02-06-2021\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2020-11-10 12:55:58', '', 'ACTIVE'), (1189, '2020-11-10', 'DECO TEXTIL', 'JB-10112020/1022', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC renewal for DECO TEXTIL\\r\\nERP Application\\r\\nValid until: 02-06-2021\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Rekha', '2020-11-10 12:58:48', '2020-12-14', 'ACTIVE'), (1190, '2020-11-10', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-10112020/1023', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"AMC renewal for website\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-11-10 17:44:53', '', 'ACTIVE'), (1191, '2020-11-18', 'Savadi Dental Care', 'JB-18112020/1024', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '', 0, '0', '2', '[\"Website Renewal\",\"Dentics Renewal\"]', '[\"998314\",\"998314\"]', '[\"5000\",\"4000\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '9%', 810, 810, 9000, 10620, 'Ten Thousand Six Hundred Twenty Rupees Only', 0, '', 'CLEARED', 10620, '', 475, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-11-18 17:19:53', '', 'ACTIVE'), (1192, '2020-11-19', 'Indian Society of Professional Social Works', 'JB-19112020/1025', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka ', '', 0, '0', '3', '[\"Domain Renewal.\\r\\n\",\"Hosting Renewal.\",\"Service Charges.\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"1200\",\"2800\",\"1000\"]', '9%', '18%', 0, 'Indian Society of Professional Social Works', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 481, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-11-19 13:00:34', '', 'ACTIVE'), (1193, '2020-11-20', 'Fly Fast Express', 'JB-20112020/1026', '14/4 Mission Road, S.R nagar Banglore 560027 Bangalore Karnataka ', '', 0, '0', '1', '[\"1.Domain Renewal\\r\\n2.Hosting Renewal\\r\\n3. SSL Certificate.\\r\\n4.Configuration and Installation.\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'Fly Fast Express', '14/4 Mission Road, S.R nagar Banglore 560027 Bangalore Karnataka ', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 483, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-11-20 15:26:48', '', 'ACTIVE'), (1194, '2020-11-28', 'LASO ', 'JB-28112020/850/CASH', ' C/O Mr. Vigneshwar\r\n Bangalore', '', 0, '0', '1', '[\"Website Changes\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'LASO ', ' C/O Mr. Vigneshwar\r\n Bangalore', '9%', 0, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', 'Rekha', '2020-11-28 18:22:06', '2020-11-28', 'ACTIVE'), (1195, '2020-12-02', 'Jyesta Constructions', 'JB-02122020/1027', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '', 237, 'NO', '1', '[\"AMC renewal of 2\\r\\nDomains\\r\\njyestaconstructions.com\\r\\njyestaconstructions.in\\r\\n\\r\\n\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jyesta Constructions', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-02 12:52:04', '', 'ACTIVE'), (1196, '2020-12-03', 'T.saifuddin & co', 'JB-03122020/1028', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '', 0, '0', '1', '[\"Payment gateway integration with documentation.\"]', '[\"998314\"]', '[\"7000\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'CLEARED', 8260, '', 466, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-03 18:13:26', '', 'ACTIVE'), (1197, '2020-12-07', 'Marries Food Factory', 'JB-07122020/1029', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '', 216, '29BZOPP3235L1ZO', '1', '[\"AMC renewal for website.\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Marries Food Factory', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021. Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'WAITING', 'Normal', 'Rekha', '', '2020-12-07 15:34:20', '', 'INACTIVE'), (1198, '2020-12-07', 'Aditya Dairy Farm', 'JB-07122020/1030', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132 Bangalore Karnataka', '', 0, '0', '1', '[\"AMC renewal for website(only hosting)\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'Aditya Dairy Farm', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132 Bangalore Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'CLEARED', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-12-07 17:27:19', '2020-12-07', 'ACTIVE'), (1199, '2020-12-07', 'Sri Ganesha Ventures', 'JB-09122020/1029', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 0, '29AYPPA3816K1Z4', '1', '[\"AMC Renewal for website\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Sri Ganesha Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-12-09 11:55:05', '2020-12-09', 'ACTIVE'), (1200, '2020-12-10', 'Livsys Devices India Pvt Ltd', 'JB-10122020/1032', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '', 0, '0', '1', '[\"Hosting charges on AWS for Livsys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage.\\r\\n\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '9%', 2700, 2700, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 35400, '', 486, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-12-10 11:00:09', '2020-12-10', 'ACTIVE'), (1201, '2020-12-11', 'MMG Constructions LLP', 'JB-11122020/851/CASH', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '', 721, '0', '1', '[\"MMG Trends Final Payment\"]', '[\"998314\"]', '[\"200000\"]', '0', '18%', 0, 'MMG Constructions LLP', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '9%', 0, 0, 200000, 200000, 'Two Lakhs Rupees Only', 0, '', 'CLEARED', 200000, '', 0, '', 'EXPIRED', 'Cash', 'Rekha', '', '2020-12-11 18:05:02', '', 'ACTIVE'), (1202, '2020-12-14', 'Account Bazaar', 'JB-14122020/1033', ' Bangalore ', '', 651, '0', '1', '[\"AMC renewal for website.\"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Account Bazaar', ' Bangalore ', '9%', 381.5, 381.5, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-14 12:05:32', '', 'ACTIVE'), (1203, '2020-12-15', 'Jazz Anitique Metals', 'JB-15122020/1034', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '', 546, '62FGJZH2162Z1GH', '1', '[\"AMC renewal for website.\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jazz Anitique Metals', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-15 17:05:37', '', 'ACTIVE'), (1204, '2020-12-23', 'Branils Enterprises', 'JB-24122020/1035', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '', 0, '29AAMFB4789M1ZI', '1', '[\"AMC renewal for website (From 23-12-2020 To 23-12-2021)\"]', '[\"998314\"]', '[\"3500\"]', '9%', '18%', 0, 'Branils Enterprises', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78 Bangalore Karnataka', '9%', 315, 315, 3500, 4130, 'Four Thousand One Hundred Thirty Rupees Only', 0, '', 'CLEARED', 4130, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-12-24 10:27:51', '2020-12-24', 'ACTIVE'), (1205, '2020-12-25', 'Yuva Sene', 'JB-25122020/1036', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '', 0, '0', '1', '[\"AMC renewal for website\\r\\n(yuvasene.org)\"]', '[\"998314\"]', '[\"4200\"]', '9%', '18%', 0, 'Yuva Sene', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka', '9%', 378, 378, 4200, 4956, 'Four Thousand Nine Hundred and Fifty Six Rupees Only', 0, '', 'CLEARED', 4956, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', 'Rekha', '2020-12-25 15:15:41', '2020-12-28', 'ACTIVE'), (1206, '2020-12-28', 'FDOT', 'JB-28122020/1037', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA', '', 543, '29AAEFF0091N1Z5', '1', '[\"AMC renewal for website\\r\\nFrom 26-12-2020 To 26-12-2021\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'FDOT', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-28 13:07:02', '', 'ACTIVE'), (1207, '2020-12-29', 'Snoring and sleep annea clinic.', 'JB-29122020/1038', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035 Bangalore Karnataka', '', 571, '0', '1', '[\"AMC renewal for website\\r\\nFrom 29-12-2020 To 29-12-2021\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Snoring and sleep annea clinic.', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Rekha', '', '2020-12-29 13:05:30', '', 'ACTIVE'), (1208, '2020-12-29', 'Medusys Pty Ltd', 'JB-29122020/1039', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '', 713, '0', '1', '[\"Website Development - medusyspty.com\"]', '[\"998314\"]', '[\"43000\"]', '0', '18%', 0, 'Medusys Pty Ltd', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '9%', 0, 0, 43000, 43000, 'Forty Three Thousand Rupees Only', 0, '', 'CLEARED', 43000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2020-12-29 14:28:43', '', 'ACTIVE'), (1209, '2021-01-06', 'Sadhguru\'s Dental', 'JB-06012021/1040', ' Bangalore Karnataka', '', 722, '0', '1', '[\"Website Hosting with domain\"]', '[\"998314\"]', '[\"5060\"]', '9%', '18%', 0, 'Sadhguru\'s Dental', ' Bangalore Karnataka', '9%', 455, 455, 5060, 5970, 'Five Thousand Nine Hundred Seventy Rupees Only', 0, '', 'PARTIAL', 5970, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-06 12:54:58', '', 'ACTIVE'), (1210, '2021-01-15', 'Dayakar Poly clinic', 'JB-15012021/852/CASH', 'Chikkamagaluru Chikkamagaluru Karnataka', '', 691, '0', '1', '[\"AMC for year 2021-22\"]', '[\"998314\"]', '[\"15000\"]', '0', '18%', 0, 'Dayakar Poly clinic', 'Chikkamagaluru Chikkamagaluru Karnataka', '9%', 0, 0, 15000, 15000, 'Fifteen Thousand Rupees Only', 0, '', 'CLEARED', 15000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-01-15 13:01:04', '', 'ACTIVE'), (1211, '2021-01-18', 'Erigo Associates', 'JB-18012021/1041', ' Bangalore Karnataka', '', 723, '29BXPPM1700A1ZR', '1', '[\"Static website development\"]', '[\"998314\"]', '[\"15000\"]', '9%', '18%', 0, 'Erigo Associates', ' Bangalore Karnataka', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PARTIAL', 17700, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-18 15:58:47', '', 'ACTIVE'), (1212, '2021-01-19', 'Mia Casa', 'JB-19012021/1042', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '', 263, '0', '1', '[\"Renewal of website www.miacasaelc.com\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Mia Casa', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-19 11:19:36', '', 'ACTIVE'), (1213, '2021-01-25', 'MMG Constructions LLP', 'JB-25012021/853/CASH', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '', 721, '0', '3', '[\"Digital Marketing\",\"Drone Video shoot\",\"Service charges\"]', '[\"998314\",\"998314\",\"998314\"]', '[\"50000\",\"20000\",\"30000\"]', '0', '18%', 0, 'MMG Constructions LLP', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '9%', 0, 0, 100000, 100000, 'One Lakhs Rupees Only', 0, '', 'CLEARED', 100000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-01-25 13:25:23', '', 'ACTIVE'), (1214, '2021-01-26', 'C R FABRICATOR', 'JB-26012021/1043', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka', '', 697, '29AIGPR8697G1ZC', '1', '[\"Renewal of domain and hosting\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'C R FABRICATOR', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-26 11:15:20', '', 'ACTIVE'), (1215, '2021-01-26', 'JSH Facility Solutions', 'JB-26012021/1044', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '', 265, '0', '1', '[\"Renewal of Domain and Hosting\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'JSH Facility Solutions', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-26 11:17:02', '', 'ACTIVE'), (1216, '2021-01-29', 'INSTA BUCKS GOLD PVT KTD. ', 'JB-29012021/1045', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA 560032 ', '', 0, '29AAECI9690R1ZD', '1', '[\"Website maintenance\\r\\nIncludes: Bug fixing and alignment issues twice a month\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'INSTA BUCKS GOLD PVT KTD. ', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA 560032 ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 493, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-29 12:54:30', '', 'ACTIVE'), (1217, '2021-01-29', 'Hokkaidobliss', 'JB-29012021/1046', 'Banashankari Bangalore Karnartaka 0', '', 0, '0', '2', '[\"Domain renewal charges\",\"Linux managed hosting renewal\\r\\nwith server upgradation. \\r\\nStorage: 5GB, Bandwidth: 25GB\"]', '[\"\",\"\"]', '[\"1500\",\"5000\"]', '9%', '18%', 0, 'Hokkaidobliss', 'Banashankari Bangalore Karnartaka 0', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 491, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-01-29 12:58:34', '', 'ACTIVE'), (1218, '2021-02-04', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-04022021/854/CASH', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"ERP Change Request - January 2021\"]', '[\"\"]', '[\"70000\"]', '0', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 0, 0, 70000, 70000, 'Seventy Thousand Rupees Only', 0, '', 'PARTIAL', 70000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-02-04 19:05:42', '', 'ACTIVE'), (1219, '2021-02-10', 'Swansilk Pvt Ltd', 'JB-10022021/1047', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"Server Renewal\\r\\n(1-3-2021 to 31-8-2021)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 498, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-02-10 16:40:19', '', 'ACTIVE'), (1220, '2021-02-10', 'DecoTextil Pvt Ltd', 'JB-10022021/1048', ' Bangalore Karnataka 0', '', 0, '29AACFD0446K1ZG', '1', '[\"Server Renewal\\r\\n(1-3-2021 to 31-8-2021)\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'DecoTextil Pvt Ltd', ' Bangalore Karnataka 0', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 499, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-02-10 16:41:35', '', 'ACTIVE'), (1221, '2021-02-11', 'Excellence Dental Health Care', 'JB-11022021/1049', ' Mangalore Karnataka', '', 0, '0', '1', '[\"10000 SMS for DentICS application\\r\\nValid for 1 year\"]', '[\"998314\"]', '[\"4800\"]', '9%', '18%', 0, 'Excellence Dental Health Care', ' Mangalore Karnataka', '9%', 432, 432, 4800, 5664, 'Five Thousand Six Hundred and Sixty Four Rupees Only', 0, '', 'CLEARED', 5664, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-02-11 17:12:22', '2021-02-11', 'ACTIVE'), (1222, '2021-02-18', 'Kooldair Systems Pvt Ltd', 'JB-18022021/855/CASH', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '', 267, '29AAGCK9901R1ZN', '1', '[\"AMC with 2 domain renewal till Feb-2022\"]', '[\"998314\"]', '[\"6000\"]', '0', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '9%', 0, 0, 6000, 6000, 'Six Thousand Rupees Only', 0, '', 'CLEARED', 6000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-02-18 18:22:05', '', 'ACTIVE'), (1223, '2021-02-22', 'American Smiles', 'JB-22022021/1050', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '', 310, '29ABHSM0708R1ZP', '1', '[\"Website AMC\\r\\nFeb-2021 to Feb-20222\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'American Smiles', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-02-22 15:32:39', '', 'ACTIVE'), (1224, '2021-02-22', 'View paker India Pvt Ltd', 'JB-22022021/1051', '84. 4th cross, Panduranganagar, Bannergatta road Bangalore Karnataka', '', 724, '0', '1', '[\"ERP Development\"]', '[\"998314\"]', '[\"42373\"]', '9%', '18%', 0, 'View paker India Pvt Ltd', '84. 4th cross, Panduranganagar, Bannergatta road Bangalore Karnataka', '9%', 3814, 3814, 42373, 50001, 'Fifty Thousand One Rupees Only', 0, '', 'CLEARED', 50001, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-02-22 15:34:23', '', 'ACTIVE'), (1225, '2021-02-25', 'Medusys Pty Ltd', 'JB-25022021/1052', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '', 713, '0', '1', '[\"Additional Changes to Application - February 2021\"]', '[\"998314\"]', '[\"45000\"]', '0', '18%', 0, 'Medusys Pty Ltd', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '9%', 0, 0, 45000, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'CLEARED', 45000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-02-25 11:01:21', '', 'ACTIVE'), (1226, '2021-03-03', 'MMG Constructions LLP', 'JB-03032021/856/CASH', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '', 721, '0', '1', '[\"ERP Development - March 2021\"]', '[\"998314\"]', '[\"200000\"]', '0', '18%', 0, 'MMG Constructions LLP', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022', '9%', 0, 0, 200000, 200000, 'Two Lakhs Rupees Only', 0, '', 'CLEARED', 200000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-03-03 12:44:52', '', 'ACTIVE'), (1227, '2021-03-03', 'Century pools', 'JB-03032021/857/CASH', ' Bangalore Karnataka', '', 591, '0', '1', '[\"AMC for year 2021-22\\r\\nUpto February 2022\"]', '[\"998314\"]', '[\"4000\"]', '0', '18%', 0, 'Century pools', ' Bangalore Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-03-03 13:04:39', '', 'ACTIVE'), (1228, '2021-03-03', 'Farah\'s Foundation', 'JB-03032021/858/CASH', 'Flat no 302,4th floor, 3rd cross, Xavier layout, Bangalore Karnataka', '', 725, '0', '1', '[\"Dynamic website development with payment gateway\"]', '[\"998314\"]', '[\"30000\"]', '0', '18%', 0, 'Farah\'s Foundation', 'Flat no 302,4th floor, 3rd cross, Xavier layout, Bangalore Karnataka', '9%', 0, 0, 30000, 30000, 'Thirty Thousand Rupees Only', 0, '', 'PARTIAL', 30000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-03-03 13:10:00', '', 'ACTIVE'), (1229, '2021-03-17', 'John D Leo Engineering Inc', 'JB-17032021/1053', ' Bangalore ', '', 0, '29BMAPM0641J1Z3', '1', '[\"AMC renewal of website from 17-03-2021 to 17-03-2022\\r\\n\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'John D Leo Engineering Inc', ' Bangalore ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-03-17 16:02:23', '2021-03-17', 'ACTIVE'), (1230, '2021-03-24', 'Sanghamithra Rural Financial Services', 'JB-24032021/1054', ' Bangalore Karnataka 560008', '', 0, '29AAECS0038H1ZG', '2', '[\"Dynamic Website\",\"Hosting for 1 year\"]', '[\"\",\"\"]', '[\"14000\",\"3500\"]', '9%', '18%', 0, 'Sanghamithra Rural Financial Services', ' Bangalore Karnataka 560008', '9%', 1575, 1575, 17500, 20650, 'Twenty Thousand Six Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 20650, '', 503, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-03-24 18:17:38', '', 'ACTIVE'), (1231, '2021-03-31', 'Yashas Dental Health Care', 'JB-31032021/1055', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '', 0, '0', '1', '[\"DentICS AMC for Yashas Dental Health Care for year 2021-22\\r\\n\\r\\n\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Yashas Dental Health Care', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-03-31 15:12:51', '2021-04-06', 'ACTIVE'), (1232, '2021-04-01', 'Rajiv Dental Care Centre', 'JB-01042021/1056', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '', 464, 'NO', '1', '[\"DentICS AMC For year 2021-22\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-04-01 13:31:59', '', 'ACTIVE'), (1233, '2021-04-06', 'Sri Krishna Sevashrama Hospital', 'JB-06042021/1057', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus, Bengaluru Karnataka', '', 0, '0', '1', '[\"DentICS AMC for Sri Krishna Sevashrama Hospital for year 2021-22\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Sri Krishna Sevashrama Hospital', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus, Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-04-06 16:48:18', '2021-04-09', 'ACTIVE'), (1234, '2021-04-09', 'Conceptual Designers', 'JB-09042021/859/CASH', '#476, 14th main, 7th cross, Wilson garden, Bangalore Karnataka', '', 60, '0', '2', '[\"Dynamic Website Development\",\"Domain and Hosting for 1 year\"]', '[\"998314\",\"998314\"]', '[\"13000\",\"5000\"]', '0', '18%', 0, 'Conceptual Designers', '#476, 14th main, 7th cross, Wilson garden, Bangalore Karnataka', '9%', 0, 0, 18000, 18000, 'Eighteen Thousand Rupees Only', 0, '', 'PARTIAL', 18000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-04-09 19:15:23', '', 'ACTIVE'), (1235, '2021-04-12', 'Bittex Forex Ltd', 'JB-12042021/860/CASH', 'Bellandur Bangalore Karnataka', '', 729, '0', '1', '[\"Website UI+ API+ Content writer\"]', '[\"998314\"]', '[\"500000\"]', '0', '18%', 0, 'Bittex Forex Ltd', 'Bellandur Bangalore Karnataka', '9%', 0, 0, 500000, 500000, 'Five Lakhs Rupees Only', 0, '', 'PARTIAL', 500000, '', 0, '', 'EXPIRED', 'Cash', 'NISARGA', '', '2021-04-12 12:21:59', '', 'ACTIVE'), (1237, '2021-04-22', 'Truecon Enterprises', 'JB-22042021/1059', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '', 0, '29CKHPP9108B1Z1', '1', '[\"Website AMC Renewal for year 2021-22\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 508, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-04-22 10:16:46', '', 'ACTIVE'), (1238, '2021-05-04', 'Mpowering skills', 'JB-04052021/1060', 'C/O Tanuja Kanduja\r\n Bangalore ', '', 128, '0', '1', '[\"AMC for website www.mpoweringskills\\r\\nYear: 2021-22\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Mpowering skills', 'C/O Tanuja Kanduja\r\n Bangalore ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-05-04 13:55:39', '', 'ACTIVE'), (1239, '2021-05-05', 'Viewpaker Technology India Pvt Ltd', 'JB-05052021/1061', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"ERP Implementation with Purchase, Inventory, Production and Access Control\"]', '[\"998314\"]', '[\"175000\"]', '9%', '18%', 0, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 15750, 15750, 175000, 206500, 'Two Lakhs Six Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 206500, '', 0, '', 'WAITING', 'Normal', 'Subramanya', '', '2021-05-05 15:32:06', '', 'INACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1240, '2021-05-05', 'Viewpaker Technology India Pvt Ltd', 'JB-05052021/1062', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '1', '[\"ERP Implementation with Purchase, Inventory, Production and Access Control\"]', '[\"998314\"]', '[\"117627\"]', '18%', '18%', 21173, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '18%', 0, 0, 117627, 138800, 'One Lakh Thirty Eight Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 138800, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Ajay', '2021-05-05 15:50:33', '2021-05-05', 'ACTIVE'), (1241, '2021-05-13', 'Viewpaker Technology India Pvt Ltd', 'JB-13052021/1063', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '1', '[\"Changes towards ERP Development\"]', '[\"998314\"]', '[\"40000\"]', '9%', '18%', 9000, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 40000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-05-13 14:29:42', '2021-05-15', 'ACTIVE'), (1242, '2021-05-14', 'Jaisri Leather Fashions', 'JB-14052021/1064', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara Bangalore Karnataka', '', 138, '29AMAPB5212B1ZV', '1', '[\"AMC for website till March-2022\\r\\nwww.jaisrifashions.com\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Jaisri Leather Fashions', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-05-14 19:43:39', '', 'ACTIVE'), (1243, '2021-05-15', 'Sphoorthi Jyothi Foundation', 'JB-15052021/861/CASH', ' ', '', 616, '0', '1', '[\"WEBSITE AMC 2021-22\"]', '[\"998314\"]', '[\"5000\"]', '0', '18%', 0, 'Sphoorthi Jyothi Foundation', ' ', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-05-15 16:54:07', '', 'ACTIVE'), (1244, '2021-05-19', 'Medusys Pty Ltd', 'JB-19052021/1065', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '', 713, '0', '1', '[\"ERP Support for 125 hours\"]', '[\"998314\"]', '[\"50000\"]', '0', '18%', 0, 'Medusys Pty Ltd', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '9%', 0, 0, 50000, 50000, 'Fifty Thousand Rupees Only', 0, '', 'CLEARED', 50000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-05-19 12:38:26', '', 'ACTIVE'), (1245, '2021-06-03', 'Bittex Forex Ltd', 'JB-03062021/1066', 'Bellandur Bangalore Karnataka', '', 729, '0', '1', '[\"Second Payment \\r\\nBalance: 100000 out of 500000\"]', '[\"998314\"]', '[\"200000\"]', '0', '18%', 0, 'Bittex Forex Ltd', 'Bellandur Bangalore Karnataka', '9%', 0, 0, 200000, 200000, 'Two Lakhs Rupees Only', 0, '', 'PENDING', 200000, '', 0, '', 'WAITING', 'Normal', 'Subramanya', '', '2021-06-03 17:12:06', '', 'INACTIVE'), (1246, '2021-06-05', 'Excellence Dental Health Care', 'JB-05062021/1067', ' Mangalore Karnataka', '', 0, '0', '1', '[\"AMC for DentICS for year 2021-22 \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Excellence Dental Health Care', ' Mangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', 'Subramanya', '2021-06-05 13:19:20', '2021-06-07', 'ACTIVE'), (1247, '2021-06-08', 'Swansilk Pvt Ltd', 'JB-08062021/1068', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC of ERP for 2021-22\\r\\n\\r\\nPayment-1\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-08 16:46:53', '', 'ACTIVE'), (1248, '2021-06-08', 'DECO TEXTIL', 'JB-08062021/1069', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC of ERP for 2021-22\\r\\nPayment-2\"]', '[\"998314\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-08 16:48:35', '', 'ACTIVE'), (1249, '2021-06-12', 'Kids Zone', 'JB-12062021/1070', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '', 94, '0', '1', '[\"AMC for website 2021-22\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Kids Zone', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-12 13:20:08', '', 'ACTIVE'), (1250, '2021-06-16', 'Creative Networks', 'JB-16062021/1071', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '', 89, '29AAMTE8611C1Z3', '1', '[\"AMC for website development 2021-22\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Creative Networks', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-16 11:34:19', '', 'ACTIVE'), (1251, '2021-06-16', 'Ashirwad Dental Clinic', 'JB-16062021/862/CASH', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 129, 'NO', '1', '[\"AMC for website and DentICS\"]', '[\"998314\"]', '[\"10000\"]', '0', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Cash', 'Subramanya', '', '2021-06-16 11:59:54', '', 'ACTIVE'), (1252, '2021-06-16', 'Livsys Devices India Pvt Ltd', 'JB-16062021/1072', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '', 0, '29AADCL7404P1ZZ', '2', '[\"Hosting charges on AWS for Livsys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage.\",\"AMC for application 2021-22\\r\\n\\u2022 50-man hours of development or bug fixing.\\r\\n\\u2022 Server maintenance, if bought from Jayblues.\\r\\n\\u2022 Quarterly backup\\r\\n\\u2022 TAT of 4 hours.\"]', '[\"998314\",\"998314\"]', '[\"30000\",\"35000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '9%', 5850, 5850, 65000, 76700, 'Seventy Six Thousand Seven Hundred Rupees Only', 0, '', 'PARTIAL', 76700, '', 513, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-16 12:59:46', '', 'ACTIVE'), (1253, '2021-06-23', 'Viewpaker Technology India Pvt Ltd', 'JB-23062021/1073', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"ERP Enhancement-1\\r\\nBalance amount\"]', '[\"998314\"]', '[\"10000\"]', '0', '18%', 0, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 10000, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Subramanya', '', '2021-06-23 17:52:28', '', 'ACTIVE'), (1254, '2021-06-28', 'Viewpaker Technology India Pvt Ltd', 'JB-28062021/1074', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '', 0, '0', '1', '[\"ERP Enhancement - 2\"]', '[\"998314\"]', '[\"30000\"]', '9%', '18%', 5400, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '9%', 0, 0, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 35400, '', 514, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-06-28 14:00:40', '', 'ACTIVE'), (1255, '2021-07-12', 'Viewpaker Technology India Pvt Ltd', 'JB-12072021/1075', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"Linux server shared hosting in Cloud for Web application one year 2 GB storage with 4 GB RAM \"]', '[\"998314\"]', '[\"12000\"]', '9%', '18%', 2160, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 12000, 14160, 'Fourteen Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 14160, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-07-12 13:49:50', '', 'ACTIVE'), (1256, '2021-07-12', 'JSS Hospital', 'JB-12072021/1076', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '', 0, '0', '1', '[\"JSS website upgradation. 22 days work\"]', '[\"998314\"]', '[\"85000\"]', '9%', '18%', 0, 'JSS Hospital', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '9%', 7650, 7650, 85000, 100300, 'One Lakhs Three Hundred Rupees Only', 0, '', 'PARTIAL', 100300, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-07-12 14:06:43', '2021-07-21', 'ACTIVE'), (1257, '2021-07-12', 'Udupi bakery', 'JB-12072021/863/CASH', ' Bangalore Karnataka', '', 714, '0', '1', '[\"Hosting and Domain for 1 year July 12 2021 to July 12 2022\"]', '[\"\"]', '[\"4500\"]', '9%', '18%', 0, 'Udupi bakery', ' Bangalore Karnataka', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'PARTIAL', 5310, '', 517, '', 'EXPIRED', 'Cash', 'Ajay', '', '2021-07-12 20:10:00', '', 'ACTIVE'), (1258, '2021-07-21', 'JSS Hospital', 'JB-21072021/1077', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '', 0, '0', '1', '[\"AMC for Jsshospital.in 1-06-2021 To 30-05-2022\"]', '[\"998314\"]', '[\"22000\"]', '9%', '18%', 0, 'JSS Hospital', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '9%', 1980, 1980, 22000, 25960, 'Twenty Five Thousand Nine Hundred Sixty Rupees Only', 0, '', 'CLEARED', 25960, '', 515, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-07-21 17:13:02', '', 'ACTIVE'), (1259, '2021-07-23', 'SLV Scientific Supplies', 'JB-23072021/1078', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '', 0, '29ALVPM9461F2Z9', '1', '[\"Server , Domain and AMC charges for year July 2021 - July 2022\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'SLV Scientific Supplies', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-07-23 16:48:11', '2021-07-31', 'ACTIVE'), (1260, '2021-07-28', 'The Dental Square Multispeciality Dental clinic', 'JB-28072021/1079', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka', '', 0, '0', '1', '[\"AMC for Dentics software From 24\\/07\\/2021 to 24\\/07\\/2022\"]', '[\"998314\"]', '[\"7500\"]', '9%', '18%', 0, 'The Dental Square Multispeciality Dental clinic', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 8850, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-07-28 11:24:15', '2021-07-28', 'ACTIVE'), (1261, '2021-08-02', 'Swansilk Pvt Ltd', 'JB-02082021/1080', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"SwanSilk server renewal for 6 months Till FEB 28 2022\"]', '[\"998314\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-02 14:28:28', '', 'ACTIVE'), (1262, '2021-08-02', 'DECO TEXTIL', 'JB-02082021/1081', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"DecoTextil Server Renewal for 6 months Till FEB 28 2022\"]', '[\"998413\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-08-02 14:30:11', '2021-08-23', 'ACTIVE'), (1263, '2021-08-02', 'Brindavan hospital', 'JB-02082021/1082', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka ', '', 653, '0', '1', '[\"Domain and Hosting renewal from 25-07-2021 To 25-07-2022\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Brindavan hospital', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka ', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-02 14:42:17', '', 'ACTIVE'), (1264, '2021-08-02', 'iSmart Technologies', 'JB-02082021/1083', 'Jayalakshmipuram Mysore Karnataka', '', 730, '0', '1', '[\"Application Development charges as advance \"]', '[\"998314\"]', '[\"75000\"]', '9%', '18%', 0, 'iSmart Technologies', 'Jayalakshmipuram Mysore Karnataka', '9%', 6750, 6750, 75000, 88500, 'Eighty Eight Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 88500, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-02 18:50:36', '', 'ACTIVE'), (1265, '2021-08-02', 'Viewpaker Technology India Pvt Ltd', 'JB-02082021/1084', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"ERP Enhancement Stage 3 \"]', '[\"998413\"]', '[\"45000\"]', '9%', '18%', 8100, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 45000, 53100, 'Fifty Three Thousand One Hundred Rupees Only', 0, '', 'CLEARED', 53100, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-02 20:04:41', '', 'ACTIVE'), (1266, '2021-08-04', 'B4B Data Solutions', 'JB-04082021/864/CASH', ' ', '', 637, '0', '1', '[\"Hosting Renewal\"]', '[\"\"]', '[\"4000\"]', '0', '18%', 0, 'B4B Data Solutions', ' ', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Ajay', '', '2021-08-04 11:10:34', '', 'ACTIVE'), (1267, '2021-08-04', 'The giz shop pvt ltd ', 'JB-04082021/865/CASH', 'H b r layout 3rd block Bangalore Karnataka', '', 558, '0', '1', '[\"Backup sent to client \"]', '[\"\"]', '[\"2000\"]', '0', '18%', 0, 'The giz shop pvt ltd ', 'H b r layout 3rd block Bangalore Karnataka', '9%', 0, 0, 2000, 2000, 'Two Thousand Rupees Only', 0, '', 'CLEARED', 2000, '', 0, '', 'EXPIRED', 'Cash', 'Ajay', '', '2021-08-04 14:30:32', '', 'ACTIVE'), (1268, '2021-08-04', 'Dental Diagnostic Centre', 'JB-04082021/1085', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '', 0, '0', '1', '[\"Hosting Renewal and AMC for website \"]', '[\"998413\"]', '[\"6779\"]', '9%', '18%', 0, 'Dental Diagnostic Centre', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 ', '9%', 610.5, 610.5, 6779, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 521, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-04 16:31:21', '', 'ACTIVE'), (1269, '2021-08-04', 'Nuagefarm ', 'JB-04082021/866/CASH', ' ', '', 0, '0', '1', '[\"Hosting Renewal Till Aug 2022\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Nuagefarm ', ' ', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 528, '', 'EXPIRED', 'Cash', 'Ajay', '', '2021-08-04 18:21:47', '', 'ACTIVE'), (1270, '2021-08-06', 'Royale electronics', 'JB-06082021/1086', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '29AADFR6653F1ZZ', '1', '[\"website hosting for one year \"]', '[\"998413\"]', '[\"4500\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '9%', 405, 405, 4500, 5310, 'Five Thousand Three Hundred Ten Rupees Only', 0, '', 'CLEARED', 5310, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-06 17:21:10', '', 'ACTIVE'), (1271, '2021-08-06', 'Indo Swiss Anti - Shock Limited', 'JB-06082021/1087', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka 572103.', '', 0, '0', '1', '[\"Renewal of website hosting and AMC for one Year Till 30-06-2022\"]', '[\"998413\"]', '[\"4000\"]', '9%', '18%', 0, 'Indo Swiss Anti - Shock Limited', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka 572103.', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 530, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-06 17:44:04', '', 'ACTIVE'), (1272, '2021-08-10', 'aswini agrotech', 'JB-10082021/1088', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"Hosting Renewal For one Year \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-10 12:04:06', '', 'ACTIVE'), (1273, '2021-08-11', 'Anamiivaa', 'JB-11082021/1089', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '', 0, 'NO', '1', '[\"Hosting Renewal Till 5 Aug 2022\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Anamiivaa', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Biddu', '2021-08-11 12:19:41', '2021-08-11', 'ACTIVE'), (1274, '2021-08-11', 'Narayani Holidays and Conferences Pvt Ltd', 'JB-11082021/1090', '#24, Bangalore Karnataka', '', 674, '29BCLPK8908B1ZE', '1', '[\"Website Renewal For 2021-2022\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'Narayani Holidays and Conferences Pvt Ltd', '#24, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-11 18:03:31', '', 'ACTIVE'), (1275, '2021-08-11', 'Kshitij', 'JB-11082021/1091', ' Banglore ', '', 709, '0', '1', '[\"simply schedule Appointment renewal \"]', '[\"998314\"]', '[\"7500\"]', '9%', '18%', 0, 'Kshitij', ' Banglore ', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'CLEARED', 8850, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-11 18:05:43', '', 'ACTIVE'), (1276, '2021-08-13', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-13082021/1092', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"Development Charges towards Quotation 1 \"]', '[\"998314\"]', '[\"72882\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 6559, 6559, 72882, 86000, 'Eighty Six Thousand Rupees Only', 0, '', 'PARTIAL', 86000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-13 17:51:46', '', 'ACTIVE'), (1277, '2021-08-13', 'SRMG STONE PRIVATE LIMITED', 'JB-13082021/1093', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 307, '29ABCCS4865R1ZC', '1', '[\"Website hosting and Email Renewal\"]', '[\"998314\"]', '[\"7500\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'CLEARED', 8850, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-13 18:22:12', '', 'ACTIVE'), (1278, '2021-08-19', 'Elite Canals Dental Clinic', 'JB-19082021/1094', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '', 618, '0', '1', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2022\\r\\n\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Elite Canals Dental Clinic', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-08-19 12:48:27', '', 'ACTIVE'), (1279, '2021-08-20', 'Dental Diagnostic Centre', 'JB-20082021/1095', '#6, Bangalore Karnataka', '', 264, 'NO', '1', '[\"Video creation for digital holdings \"]', '[\"998314\"]', '[\"4237\"]', '9%', '18%', 0, 'Dental Diagnostic Centre', '#6, Bangalore Karnataka', '9%', 381.5, 381.5, 4237, 5000, 'Five Thousand Rupees Only', 0, '', 'CLEARED', 5000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-08-20 12:24:23', '', 'ACTIVE'), (1280, '2021-08-25', 'Sri Manjunatha civil Constructions', 'JB-25082021/1096', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '', 577, '29ESBPS5141D1ZP', '1', '[\"AMC renewal for website\"]', '[\"\"]', '[\"2966\"]', '9%', '18%', 0, 'Sri Manjunatha civil Constructions', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100 Bangalore Karnataka', '9%', 267, 267, 2966, 3500, 'Three Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 3500, '', 0, '', 'WAITING', 'Normal', 'Biddu', '', '2021-08-25 13:14:44', '', 'INACTIVE'), (1281, '2021-08-30', 'Yaskawa India Pvt Ltd', 'JB-30082021/1097', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"AMC for ABP Portal for\\r\\nOne Year\\r\\nQuote Ref: 2491\\r\\nQuote Date: 17-08-2021\"]', '[\"998314\"]', '[\"38136\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 3432, 3432, 38136, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'PENDING', 45000, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-08-30 16:49:07', '', 'ACTIVE'), (1282, '2021-08-30', 'Navakruthee Enterprises', 'JB-30082021/867/CASH', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '', 547, '29AJJPD3161H1ZA', '1', '[\"Website renewal from 24-07-2021 to 24-07-2022\"]', '[\"998314\"]', '[\"5000\"]', '0', '18%', 0, 'Navakruthee Enterprises', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'PENDING', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Biddu', '', '2021-08-30 19:01:31', '', 'ACTIVE'), (1283, '2021-08-31', 'aswini agrotech', 'JB-31082021/1098', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"Website Renewal for Visavi Food from 02-\\r\\n06-2021 to 02-06-2022\"]', '[\"998314\"]', '[\"3000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 270, 270, 3000, 3540, 'Three Thousand Five Hundred Forty Rupees Only', 0, '', 'PENDING', 3540, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-08-31 11:25:02', '', 'ACTIVE'), (1284, '2021-08-31', 'Turbmax', 'JB-31082021/1099', 'Batrahalli near ICiC bank Bangalore Karnataka', '', 588, '0', '1', '[\"Website renewal for 16-08-2021 to 16-08-\\r\\n2022\\r\\n\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Turbmax', 'Batrahalli near ICiC bank Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-08-31 15:31:37', '', 'ACTIVE'), (1285, '2021-09-06', 'Redstone Retreat', 'JB-06092021/868/CASH', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 0 Karnataka', '', 318, '0', '1', '[\"Website renewal for 05-05-2021 to 05-05-\\r\\n2022\"]', '[\"\"]', '[\"4000\"]', '0', '18%', 0, 'Redstone Retreat', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 0 Karnataka', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 0, '', 'EXPIRED', 'Cash', 'Biddu', '', '2021-09-06 13:43:02', '', 'ACTIVE'), (1286, '2021-09-06', 'khincha dental centre', 'JB-06092021/1100', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '', 391, '0', '1', '[\"Wesbsite Hosting renewal from 16-06-2021\\r\\nto 16-06-2022\"]', '[\"998314\"]', '[\"5000\"]', '9%', '18%', 0, 'khincha dental centre', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-09-06 18:20:24', '', 'ACTIVE'), (1287, '2021-09-08', 'Pragathi Polymers', 'JB-08092021/1101', '342/15, opp to satellite bus stand, bapuji nagar, mysore road Bangalore Karnataka', '', 582, '29AAXPV7858E1ZJ', '1', '[\"Website renewal for 25-03-2021 to 25-03-\\r\\n2022\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Pragathi Polymers', '342/15, opp to satellite bus stand, bapuji nagar, mysore road Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-09-08 11:02:32', '', 'ACTIVE'), (1288, '2021-09-20', 'Intercontinental Logistics', 'JB-20092021/869/CASH', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '', 144, '29BIIPS9092K3Z6', '1', '[\"AMC renewal for website from 20-09-2021 to 20-09-2022\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Intercontinental Logistics', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '9%', 0, 0, 4000, 0, '', 0, '', 'CLEARED', 0, '', 0, '', 'EXPIRED', 'Cash', 'Biddu', '', '2021-09-20 13:41:52', '', 'ACTIVE'), (1289, '2021-09-23', 'AeroCision Aerocomp India Pvt. Ltd.', 'JB-23092021/1102', '143-A1, Bommasandra Industrial Area, Bommasandra, Bangalore 560-099 ', '', 732, '0', '1', '[\"Website Development\"]', '[\"998314\"]', '[\"12500\"]', '9%', '18%', 0, 'AeroCision Aerocomp India Pvt. Ltd.', '143-A1, Bommasandra Industrial Area, Bommasandra, Bangalore 560-099 ', '9%', 1125, 1125, 12500, 14750, 'Fourteen Thousand Seven Hundred Fifty Rupees Only', 0, '', 'PENDING', 14750, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-09-23 16:40:12', '', 'ACTIVE'), (1290, '2021-10-06', 'UPJ Infotech Pvt Ltd', 'JB-06102021/1103', '1st floor, No47, Savadappa, magadi Main Road, Agrahara Dasarahalli Bangalore Karnataka', '', 620, '29AACCU3188N1ZM', '1', '[\"AMC renewal 06-10-2021-06-10-2022\"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'UPJ Infotech Pvt Ltd', '1st floor, No47, Savadappa, magadi Main Road, Agrahara Dasarahalli Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-10-06 18:27:35', '', 'ACTIVE'), (1291, '2021-10-11', 'Yashas Narayan', 'JB-11102021/870/CASH', 'Mysore Mysore Karnataka', '', 676, '0', '1', '[\"AMC renewal for 2 years 11-10-2021 to 11-10-2023\"]', '[\"998314\"]', '[\"8000\"]', '0', '18%', 0, 'Yashas Narayan', 'Mysore Mysore Karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'PENDING', 8000, '', 0, '', 'WAITING', 'Cash', 'Biddu', '', '2021-10-11 11:32:47', '', 'INACTIVE'), (1292, '2021-10-11', 'Yashas Narayan', 'JB-11102021/870/CASH', 'Mysore Mysore Karnataka', '', 0, '0', '1', '[\"AMC renewal for 2 years 11-10-2021 to 11-10-2023\"]', '[\"998314\"]', '[\"8000\"]', '0', '18%', 0, 'Yashas Narayan', 'Mysore Mysore Karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'PENDING', 8000, '', 0, '', 'WAITING', 'Cash', 'Biddu', '', '2021-10-11 11:32:51', '', 'INACTIVE'), (1293, '2021-10-11', 'Yashas Narayan', 'JB-11102021/870/CASH', 'Mysore Mysore Karnataka', '', 0, '0', '1', '[\"AMC renewal for 2 years 11-10-2021 to 11-10-2023\"]', '[\"998314\"]', '[\"8000\"]', '0', '18%', 0, 'Yashas Narayan', 'Mysore Mysore Karnataka', '9%', 0, 0, 8000, 8000, 'Eight Thousand Rupees Only', 0, '', 'CLEARED', 8000, '', 0, '', 'EXPIRED', 'Cash', 'Biddu', '', '2021-10-11 11:32:56', '', 'ACTIVE'), (1294, '2021-10-11', 'Siri Global Logistics', 'JB-11102021/1104', ' ', '', 735, '0', '1', '[\"Website Development\"]', '[\"\"]', '[\"8474\"]', '9%', '18%', 0, 'Siri Global Logistics', ' ', '9%', 763, 763, 8474, 10000, 'Ten Thousand Rupees Only', 0, '', 'CLEARED', 10000, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-10-11 17:54:47', '', 'ACTIVE'), (1295, '2021-10-13', 'Medusys Pty Ltd', 'JB-13102021/871/CASH', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '', 713, '0', '1', '[\"Support charges for 100hrs (50% payment)\"]', '[\"\"]', '[\"50000\"]', '0', '18%', 0, 'Medusys Pty Ltd', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia', '9%', 0, 0, 50000, 50000, 'Fifty Thousand Rupees Only', 0, '', 'CLEARED', 50000, '', 0, '', 'EXPIRED', 'Cash', 'Biddu', '', '2021-10-13 17:07:28', '', 'ACTIVE'), (1296, '2021-10-19', 'SS TECHNOLOGIES', 'JB-19102021/1105', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '', 736, '0', '1', '[\"First Payment 25% towards WISM Application Development\"]', '[\"\"]', '[\"143750\"]', '9%', '18%', 0, 'SS TECHNOLOGIES', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '9%', 12937.5, 12937.5, 143750, 169625, 'One Lakhs Sixty Nine Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'PARTIAL', 169625, '', 0, '', 'WAITING', 'Normal', 'Biddu', '', '2021-10-19 19:22:09', '', 'INACTIVE'), (1297, '2021-10-19', 'G V IMPORTS & INFRA', 'JB-19102021/1106', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '', 488, '29CIEPS1924B1ZD', '1', '[\"AMC renewal for website from 14-10-2021 to 14-10-2022\"]', '[\"\"]', '[\"3847\"]', '9%', '18%', 0, 'G V IMPORTS & INFRA', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka', '9%', 346.5, 346.5, 3847, 4540, 'Four Thousand Five Hundred Forty Rupees Only', 0, '', 'PARTIAL', 4540, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-10-19 19:30:46', '', 'ACTIVE'), (1298, '2021-10-19', 'SS TECHNOLOGIES', 'JB-19102021/1107', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '', 0, '33CPSPK0843J2ZM', '1', '[\"First Payment 25% towards WISM Application Development\"]', '[\"\"]', '[\"143750\"]', '9%', '18%', 0, 'SS TECHNOLOGIES', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '9%', 12938, 12938, 143750, 169625, 'One Lakhs Sixty Nine Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'PARTIAL', 169625, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Biddu', '2021-10-19 19:36:22', '2021-10-19', 'ACTIVE'), (1299, '2021-10-20', 'Viewpaker Technology India Pvt Ltd', 'JB-20102021/1108', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '2', '[\"Yearly maintenance starts from 15 October 2021 to 14 October 2022. (Maintenance will not include new development activity. Support will be on existing functionality) \",\"Monthly Bandwidth 10GB for 1 year \"]', '[\"998314\",\"998314\"]', '[\"35000\",\"5000\"]', '9%', '18%', 0, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 3600, 3600, 40000, 47200, 'Forty Seven Thousand Two Hundred Rupees Only', 0, '', 'CLEARED', 47200, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Biddu', '2021-10-20 11:06:15', '2021-10-21', 'ACTIVE'), (1300, '2021-10-22', 'ALT training college', 'JB-22102021/1109', 'ALT Training college foundation, kaikondanahalli, bellandur gate, sarjapur road, Bangalore 560035 Karnataka', '', 0, '29AAWFA3597J1ZJ', '1', '[\"Website Hosting & Domain Renewal from 22-10-2021 to 22-10-2022\"]', '[\"998314\"]', '[\"6000\"]', '9%', '18%', 0, 'ALT training college', 'ALT Training college foundation, kaikondanahalli, bellandur gate, sarjapur road, Bangalore 560035 Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Ajay', '2021-10-22 18:40:48', '2021-11-09', 'ACTIVE'), (1301, '2021-10-28', 'Avyukt Pharmaceuticals', 'JB-28102021/1110', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka', '', 0, '29AJDPC699INIZK', '1', '[\"AMC renewal for Website from 28-10-2021 to 28-10-2022 \"]', '[\"998314\"]', '[\"4000\"]', '9%', '18%', 0, 'Avyukt Pharmaceuticals', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Biddu', '2021-10-28 12:38:04', '2021-10-28', 'ACTIVE'), (1302, '2021-10-30', 'DR JaiKrishna', 'JB-30102021/1111', ' Bengaluru ', '', 0, '0', '1', '[\"29 Pages Re-designing & Video editing\"]', '[\"998314\"]', '[\"8500\"]', '9%', '18%', 0, 'DR JaiKrishna', ' Bengaluru ', '9%', 0, 0, 0, 0, 'Rupees Only', 0, '', 'PENDING', 0, '', 0, '', 'WAITING', 'Normal', 'Biddu', 'Biddu', '2021-10-30 18:11:44', '2021-10-30', 'INACTIVE'), (1303, '2021-11-08', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-08112021/1112', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"Bandwith increasing to 10 GB per day\"]', '[\"998314\"]', '[\"6500\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', '', '2021-11-08 15:47:29', '', 'ACTIVE'), (1304, '2021-11-08', 'T.saifuddin & co', 'JB-08112021/1113', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '', 0, '29AADFT8885H1ZF', '1', '[\"Prestashop E-commerce Development with upgraded version . First 50% payment.\"]', '[\"\"]', '[\"22500\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '9%', 2025, 2025, 22500, 26550, 'Twenty Six Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 26550, '', 573, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-08 16:17:23', '2021-12-04', 'ACTIVE'), (1305, '2021-11-09', 'Radion Dental Equipments Pvt Ltd', 'JB-09112021/1114', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka', '', 0, '29AAICR0267P1ZP', '1', '[\"Email Accounts 16No\'s with configuration\"]', '[\"998314\"]', '[\"8000\"]', '9%', '18%', 0, 'Radion Dental Equipments Pvt Ltd', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Biddu', 'Ajay', '2021-11-09 11:17:11', '2021-12-04', 'ACTIVE'), (1306, '2021-11-23', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-23112021/1115', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '', 0, '0', '1', '[\"Bandwith increasing to unlimited bandwidth per day\"]', '[\"\"]', '[\"18500\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '9%', 1665, 1665, 18500, 21830, 'Twenty One Thousand Eight Hundred Thirty Rupees Only', 0, '', 'CLEARED', 21830, '', 583, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-23 13:35:39', '2021-11-25', 'ACTIVE'), (1307, '2021-11-24', 'T.saifuddin & co', 'JB-24112021/1116', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '', 0, '29AADFT8885H1ZF', '1', '[\"Domain and Hosting renewal for 1 year till November 13 2022\"]', '[\"\"]', '[\"6500\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 588, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-24 17:29:50', '2021-12-04', 'ACTIVE'), (1308, '2021-11-25', 'Swansilk Pvt Ltd', 'JB-25112021/1117', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"AMC for ERP Till 31 May 2022 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-25 13:51:48', '2021-11-25', 'ACTIVE'), (1309, '2021-11-25', 'DECO TEXTIL', 'JB-25112021/1118', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC for ERP till 31 may 2022\\r\\n(6 months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-25 13:52:54', '2021-11-25', 'ACTIVE'), (1310, '2021-11-30', 'Radion Equipments Pvt Ltd', 'JB-30112021/1119', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka ', '', 0, '29AAICR0267P1ZP', '1', '[\"Hosting and domain renewal of website\"]', '[\"\"]', '[\"6500\"]', '9%', '18%', 0, 'Radion Equipments Pvt Ltd', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka ', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 594, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-11-30 17:12:20', '2021-12-04', 'ACTIVE'), (1311, '2021-12-01', 'Erigo Associates', 'JB-01122021/1120', ' Bangalore Karnataka ', '', 0, '0', '1', '[\"Hosting and Domain renewal Till 1 Dec 2022\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Erigo Associates', ' Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 591, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-12-01 16:41:21', '', 'ACTIVE'), (1312, '2021-12-03', 'Truecon Enterprises', 'JB-03122021/1121', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076', '', 0, '0', '2', '[\"Paid Marketing Management\\r\\nGoogle Ads:\\r\\n1. Keywords in campaign (Upto 200)\\r\\n2. Ad Copies copywriting (including text and banners) Upto 40\\r\\n3. Negative & fraud click optimisation\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google analytics)\\r\\n6. Bid Management across ads, keywords, locations, devices, Interests\\r\\n7. A\\/B Testing\\r\\n8. Search ads, Display Ads (Google Partner websites)\\r\\n9. YouTube video ads (clients need to provide video)\\r\\n10. Monthly results analysis\\/reporting\\r\\n11. Audience behaviour report\\r\\n12. ROI analysis\\/report\\r\\n13.Ads, landing pages & keywords\\r\\nperformance testing\",\"Landing Page ( Single Page ) One time cost.\"]', '[\"\",\"\"]', '[\"23000\",\"2000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 29500, '', 586, '', 'EXPIRED', 'Normal', 'Ajay', '', '2021-12-03 11:35:21', '', 'ACTIVE'), (1313, '2021-12-03', 'Swansilk Pvt Ltd', 'JB-03122021/1122', ' Bangalore ', '', 0, '0', '1', '[\"Ecommerce Application Payment 1\"]', '[\"\"]', '[\"100000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'PARTIAL', 118000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-12-03 13:56:05', '2021-12-30', 'ACTIVE'), (1314, '2021-12-11', 'Sadhguru\'s Dental', 'JB-11122021/1123', ' Bangalore Karnataka', '', 0, '0', '2', '[\"Hosting and Domain Renewal for 2 years Till Jan 2024\",\"SSL certificate for 2 years\"]', '[\"\",\"\"]', '[\"10000\",\"2000\"]', '9%', '18%', 0, 'Sadhguru\'s Dental', ' Bangalore Karnataka', '9%', 1080, 1080, 12000, 14160, 'Fourteen Thousand One Hundred Sixty Rupees Only', 0, '', 'PARTIAL', 14160, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2021-12-11 13:15:55', '2021-12-11', 'ACTIVE'), (1315, '2021-12-09', 'SS TECHNOLOGIES', 'JB-06012022/1124', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '', 0, '33CPSPK0843J2ZM', '1', '[\"WISM Application development Part payment of Second Instalment \"]', '[\"\"]', '[\"42372\"]', '9%', '18%', 0, 'SS TECHNOLOGIES', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '9%', 3814, 3814, 42372, 50000, 'Fifty Thousand Rupees Only', 0, '', 'CLEARED', 50000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-01-06 17:49:35', '2022-01-06', 'ACTIVE'), (1316, '2022-01-20', 'Dayakar Poly clinic', 'JB-20012022/1125', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '', 0, '0', '1', '[\"AMC for year 2022-23\"]', '[\"\"]', '[\"15000\"]', '9%', '18%', 0, 'Dayakar Poly clinic', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'CLEARED', 17700, '', 600, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-01-20 17:46:33', '', 'ACTIVE'), (1317, '2022-01-24', 'T.saifuddin & co', 'JB-24012022/1126', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 526, '29AADFT8885H1ZF', '1', '[\"Woo commerce application. second payment.\"]', '[\"\"]', '[\"42500\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 3825, 3825, 42500, 50150, 'Fifty Thousand One Hundred Fifty Rupees Only', 0, '', 'PARTIAL', 50150, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-01-24 13:42:35', '', 'ACTIVE'), (1318, '2022-01-29', 'DECO TEXTIL', 'JB-29012022/1127', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"ERP Enhancement work for 20 days \"]', '[\"\"]', '[\"45000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4050, 4050, 45000, 53100, 'Fifty Three Thousand One Hundred Rupees Only', 0, '', 'CLEARED', 53100, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-01-29 13:08:18', '2022-01-29', 'ACTIVE'), (1319, '2022-01-28', 'Medusys', 'JB-01022022/1128', 'Bangalore ', '', 0, '0', '1', '[\"RAD Application Development Payment 1\"]', '[\"\"]', '[\"170000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 15300, 15300, 170000, 200600, 'Two Lakhs Six Hundred Rupees Only', 0, '', 'CLEARED', 200600, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-02-01 11:08:22', '2022-02-01', 'ACTIVE'), (1320, '2022-02-01', 'Medusys', 'JB-01022022/1129', 'Bangalore ', '', 737, '0', '1', '[\"RAD Server For 6 Months. \\r\\n2x Intel Xeon E5-2695\\r\\n4 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nWindows Server 2019 Standard Edition\\r\\nSQL Server 2019 Web Edition\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\nLevel 3 Support Free\"]', '[\"\"]', '[\"111000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 9990, 9990, 111000, 130980, 'One Lakhs Thirty Thousand Nine Hundred Eighty Rupees Only', 0, '', 'CLEARED', 130980, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-01 11:15:10', '', 'ACTIVE'), (1321, '2022-02-04', 'JSH Facility Solutions', 'JB-04022022/1130', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka ', '', 0, '0', '1', '[\"Website Hosting and Domain Renewal For one Year Till Feb 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'JSH Facility Solutions', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 606, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-04 11:24:03', '', 'ACTIVE'), (1322, '2022-02-08', 'Kooldair Systems Pvt Ltd', 'JB-08022022/1131', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '', 0, '0', '1', '[\"Website Hosting and Domain Renewal till Feb 2023 \"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 607, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-08 16:09:49', '', 'ACTIVE'), (1323, '2022-02-09', 'Trupthi dental care', 'JB-09022022/1132', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '', 0, '0', '1', '[\"Website hosting and Domain renewal till Feb 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 608, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-09 11:53:50', '', 'ACTIVE'), (1324, '2022-02-11', 'C R FABRICATOR', 'JB-11022022/1133', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '', 0, '0', '1', '[\"Website domain and hosting renewal Till 26 Jan 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'C R FABRICATOR', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 604, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-11 16:16:24', '', 'ACTIVE'), (1325, '2022-02-15', 'Royale electronics', 'JB-15022022/1134', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '29AADFR6653F1ZZ', '1', '[\"4 Email ID for 6 months till August 2022\"]', '[\"\"]', '[\"1600\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '9%', 144, 144, 1600, 1888, 'One Thousand Eight Hundred and Eighty Eight Rupees Only', 0, '', 'CLEARED', 1888, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-15 13:33:18', '', 'ACTIVE'), (1326, '2022-02-17', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-17022022/1135', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '1', '[\"Server Renewal Till October 2022 For GssOrganised ERP\"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 29500, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-17 11:31:29', '', 'ACTIVE'), (1327, '2022-02-18', 'DecoTextil Pvt Ltd', 'JB-18022022/1136', ' Bangalore Karnataka 0', '', 0, '0', '1', '[\"Server Renewal DecoTestil for 6 months Till August 31 2022\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DecoTextil Pvt Ltd', ' Bangalore Karnataka 0', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 610, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-18 17:33:44', '', 'ACTIVE'), (1328, '2022-02-18', 'Swansilk Pvt Ltd', 'JB-18022022/1137', ' Bangalore ', '', 0, '0', '1', '[\"Server Renewal swansilk for 6 months Till August 31 2022\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 609, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-18 17:34:34', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1329, '2022-02-21', 'Truecon Enterprises', 'JB-21022022/1138', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076 Bangalore Karnataka', '', 305, '29CKHPP9108B1Z1', '1', '[\"Website Upgradation adding new 23 new pages\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Truecon Enterprises', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076 Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-21 11:28:04', '', 'ACTIVE'), (1330, '2022-02-22', 'Viewpaker Technology India Pvt Ltd', 'JB-22022022/1139', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"Server for ERP 8gb ram \\r\\n200 gb storage\\r\\nUnlimited bandwidth\\r\\n4 core cpu. \\r\\n30 k for 6 months. Till Aug 24 \"]', '[\"\"]', '[\"30000\"]', '9%', '18%', 5400, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 35400, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-02-22 11:32:16', '', 'ACTIVE'), (1331, '2022-01-15', 'SS TECHNOLOGIES', 'JB-02032022/1140', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '', 0, '33CPSPK0843J2ZM', '1', '[\"WisM Application Development instalment 2 \"]', '[\"\"]', '[\"101377\"]', '9%', '18%', 18248, 'SS TECHNOLOGIES', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001 ', '9%', 9124, 9124, 101377, 119625, 'One Lakhs Nineteen Thousand Six Hundred and Twenty Five Rupees Only', 0, '', 'CLEARED', 119625, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-03-02 18:03:14', '2022-03-02', 'ACTIVE'), (1332, '2022-03-03', 'Medusys', 'JB-03032022/1141', 'Bangalore ', '', 737, '0', '1', '[\"Development of RAD application Payment 2\"]', '[\"\"]', '[\"150000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 13500, 13500, 150000, 177000, 'One Lakhs Seventy Seven Thousand Rupees Only', 0, '', 'CLEARED', 177000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-03-03 16:13:37', '', 'ACTIVE'), (1333, '2022-03-10', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-10032022/1142', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"Advertisement Charges\"]', '[\"\"]', '[\"31000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 2790, 2790, 31000, 36580, 'Thirty Six Thousand Five Hundred Eighty Rupees Only', 0, '', 'PARTIAL', 36580, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-03-10 12:26:57', '', 'ACTIVE'), (1334, '2022-03-24', 'Elite Canals Dental Clinic', 'JB-24032022/1143', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '', 618, '0', '1', '[\"Marketing On google \"]', '[\"\"]', '[\"7500\"]', '9%', '18%', 0, 'Elite Canals Dental Clinic', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka', '9%', 675, 675, 7500, 8850, 'Eight Thousand Eight Hundred Fifty Rupees Only', 0, '', 'CLEARED', 8850, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-03-24 16:55:29', '', 'ACTIVE'), (1335, '2022-03-31', 'DECO TEXTIL', 'JB-31032022/1144', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"ERP Enhancement - 21 days of work.\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2022-03-31 13:09:27', '', 'INACTIVE'), (1336, '2022-03-31', 'DECO TEXTIL', 'JB-01042022/1144', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"ERP Enhancement - 21 Days of work\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2022-03-31 13:12:48', '', 'INACTIVE'), (1337, '2022-04-04', 'DECO TEXTIL', 'JB-04042022/1144', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"ERP Enhancement - 21 days of work\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PARTIAL', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-04-04 17:03:08', '', 'ACTIVE'), (1338, '2022-04-05', 'Viewpaker Technology India Pvt Ltd', 'JB-05042022/1145', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"ERP changes and support Feb an March\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 9000, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-04-05 13:44:20', '', 'ACTIVE'), (1339, '2022-04-12', 'SRMG STONE PRIVATE LIMITED', 'JB-12042022/1148', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 307, '29ABCCS4865R1ZC', '1', '[\"Domain and Hosting Renewal for 1 year Till APRIL 2023\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-04-12 10:17:19', '', 'ACTIVE'), (1340, '2022-04-20', 'Livsys Devices India Pvt Ltd', 'JB-20042022/1149', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka', '', 590, '29AADCL7404P1ZZ', '1', '[\"Enhancement to the application \"]', '[\"\"]', '[\"10000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-04-20 11:56:19', '', 'ACTIVE'), (1341, '2022-05-12', 'Sri Ganesha Ventures', 'JB-12052022/1150', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '', 182, '29AYPPA3816K1Z4', '1', '[\"Website Hosting renewal till 12 December 2023 (2 years)\"]', '[\"\"]', '[\"10000\"]', '9%', '18%', 0, 'Sri Ganesha Ventures', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-12 16:48:54', '', 'ACTIVE'), (1342, '2022-05-12', 'Jazz Antique Metals', 'JB-12052022/1151', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '', 546, '62FGJZH2162Z1GH', '1', '[\"Website renewal till Dec 2022\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Jazz Antique Metals', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-12 17:31:54', '', 'ACTIVE'), (1343, '2022-05-16', 'Mpowering skills', 'JB-16052022/1152', ' Bangalore ', '', 0, '0', '1', '[\"Website Hosting and domain renewal till may 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Mpowering skills', ' Bangalore ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 615, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-16 11:32:10', '', 'ACTIVE'), (1344, '2022-05-20', 'Swansilk Pvt Ltd', 'JB-20052022/1153', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"ERP Enhancement May 2022 Month 216 Hrs of development. \"]', '[\"\"]', '[\"70000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 6300, 6300, 70000, 82600, 'Eighty Two Thousand Six Hundred Rupees Only', 0, '', 'CLEARED', 82600, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-20 11:41:18', '', 'ACTIVE'), (1345, '2022-05-20', 'Trupthi dental care', 'JB-20052022/1154', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '', 298, '0', '1', '[\"Dentics AMC for 2022 to may 2023\"]', '[\"\"]', '[\"6000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'PENDING', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-20 12:22:22', '', 'ACTIVE'), (1346, '2022-05-31', 'SRMG STONE PRIVATE LIMITED', 'JB-31052022/1155', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 307, '29ABCCS4865R1ZC', '1', '[\"7 google email Id and Configuration charges for one year .\"]', '[\"\"]', '[\"17500\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 1575, 1575, 17500, 20650, 'Twenty Thousand Six Hundred Fifty Rupees Only', 0, '', 'CLEARED', 20650, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-05-31 12:44:10', '', 'ACTIVE'), (1347, '2022-06-01', 'Viewpaker Technology India Pvt Ltd', 'JB-01062022/1156', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '1', '[\"Billed for one resource who worked in production place for 11 days .\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 9900, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 50000, 64900, 'Sixty Four Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 64900, '', 0, '', 'WAITING', 'Normal', 'Ajay', 'Ajay', '2022-06-01 13:00:05', '2022-06-01', 'INACTIVE'), (1348, '2022-06-01', 'Viewpaker Technology India Pvt Ltd', 'JB-01062022/1156', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"Billed for one resource who worked in production place for 11 days .\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 9000, 'Viewpaker Technology India Pvt Ltd', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-06-01 13:41:10', '', 'ACTIVE'), (1349, '2022-06-01', 'Yuva Sene', 'JB-01062022/1157', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '', 0, '0', '1', '[\"Hosting charges for 1 year and AMC for 1 year\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Yuva Sene', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 347, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-06-01 16:25:42', '', 'ACTIVE'), (1350, '2022-06-25', 'Creative Networks', 'JB-25062022/1159', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka ', '', 0, '0', '1', '[\"Website domain and hosting renewal for one year till 24 June 2023\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Creative Networks', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 512, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-06-25 17:53:58', '2022-06-25', 'ACTIVE'), (1351, '2022-07-05', 'DECO TEXTIL', 'JB-05072022/1160', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC for ERP duration 1 year July 2022 to july 2023 Payment 1 (second payment will be collected after 6 months) \"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-07-05 17:12:07', '2022-07-05', 'ACTIVE'), (1352, '2022-07-05', 'Swansilk Pvt Ltd', 'JB-05072022/1161', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC for ERP duration 1 year July 2022 to july 2023 Payment 1 (second payment will be collected after 6 months) \"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-07-05 17:13:19', '', 'ACTIVE'), (1353, '2022-07-13', 'Medusys', 'JB-13072022/1162', 'Bangalore ', '', 0, '0', '2', '[\"RAD Server For 6 Months. \\r\\n2x Intel Xeon E5-2695\\r\\n4 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nWindows Server 2019 Standard Edition\\r\\nSQL Server 2019 Web Edition\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nServer renewed till Dec 31 2022\",\"Support hours package 50 hours for next 6 months.\"]', '[\"\",\"\"]', '[\"111000\",\"50000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 14490, 14490, 161000, 189980, 'One Lakhs Eighty Nine Thousand Nine Hundred Eighty Rupees Only', 0, '', 'PENDING', 189980, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-07-13 16:31:43', '2022-07-13', 'ACTIVE'), (1354, '2022-07-18', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-18072022/1163', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '0', '1', '[\"ERP support package of 50 hours 1 year valid . till July 2023\"]', '[\"\"]', '[\"22500\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 2025, 2025, 22500, 26550, 'Twenty Six Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 26550, '', 621, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-07-18 19:37:49', '', 'ACTIVE'), (1355, '2022-08-06', 'Sanghamithra Rural Financial Services', 'JB-06082022/1164', ' Bangalore Karnataka 560008', '', 0, '0', '1', '[\"Hosting charges for one year till march 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Sanghamithra Rural Financial Services', ' Bangalore Karnataka 560008', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 624, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-06 10:39:04', '', 'ACTIVE'), (1356, '2022-08-06', 'Ashirwad Dental Clinic', 'JB-06082022/1165', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '', 0, '0', '2', '[\"website Hosting and domain renewal for 1 year till july 2023 \",\"Dentics software renewal for one year till July 2023\"]', '[\"\",\"\"]', '[\"5000\",\"5000\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'CLEARED', 11800, '', 619, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-06 10:41:43', '', 'ACTIVE'), (1357, '2022-08-10', 'SLV Scientific Supplies', 'JB-10082022/1166', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '', 0, '29ALVPM9461F2Z9', '1', '[\"hosting and domain renewal Till July 2023\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SLV Scientific Supplies', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 625, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-10 11:34:56', '', 'ACTIVE'), (1358, '2022-08-15', 'Plumage', 'JB-15082022/1167', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"Server for ERP 8gb ram \\r\\n200 gb storage\\r\\nUnlimited bandwidth\\r\\n4 core cpu. \\r\\n30 k for 6 months. Till FEB 2023\"]', '[\"\"]', '[\"30000\"]', '9%', '18%', 5400, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 35400, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-15 12:18:29', '', 'ACTIVE'), (1359, '2022-08-16', 'Royale electronics', 'JB-16082022/1168', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '29AADFR6653F1ZZ', '1', '[\"Website hosting and domain renewal till 12 AUG 2023\"]', '[\"\"]', '[\"4800\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '9%', 432, 432, 4800, 5664, 'Five Thousand Six Hundred and Sixty Four Rupees Only', 0, '', 'CLEARED', 5664, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-16 11:21:17', '', 'ACTIVE'), (1360, '2022-08-16', 'Livsys Devices India Pvt Ltd', 'JB-16082022/1169', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '', 0, '0', '1', '[\"Application Support for 35 hours valid till one year .June 2023 (reduced 10K for AWS bill)\"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 29500, '', 623, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-16 12:12:17', '', 'ACTIVE'), (1361, '2022-08-16', 'Swansilk Pvt Ltd', 'JB-16082022/1170', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months 22 FEB 23 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-16 17:24:51', '', 'ACTIVE'), (1362, '2022-08-16', 'DECO TEXTIL', 'JB-16082022/1171', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server Renewal Decotextile for 6 months Till 22 August 2023\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-16 17:26:34', '', 'ACTIVE'), (1363, '2022-08-19', 'aswini agrotech', 'JB-19082022/1172', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"Website hosting and domain renewal for 1 year till August 2023\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-19 15:41:00', '', 'ACTIVE'), (1364, '2022-08-19', 'Savadi Dental Care', 'JB-19082022/1173', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '', 2, '0', '3', '[\"Dentics Online Version. Includes current data migration to online version and backup while migrating.\",\"Cloud Server for Dentics hosting Till August 2023\",\"Website Hosting Renewal till July 2023\"]', '[\"\",\"\",\"\"]', '[\"20000\",\"5000\",\"5000\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka', '9%', 2700, 2700, 30000, 35400, 'Thirty Five Thousand Four Hundred Rupees Only', 0, '', 'CLEARED', 35400, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-08-19 16:27:01', '', 'ACTIVE'), (1365, '2022-09-14', 'Jaisri Leather Fashions', 'JB-14092022/1174', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara Bangalore Karnataka', '', 138, '29AMAPB5212B1ZV', '1', '[\"Website renewal hosting and domain for one year Till Sept 2023\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Jaisri Leather Fashions', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-09-14 11:27:20', '', 'ACTIVE'), (1366, '2022-09-14', 'T.saifuddin & co', 'JB-14092022/1175', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '', 526, '29AADFT8885H1ZF', '1', '[\"Domain and hosting renewal for one year till sept 2023\"]', '[\"\"]', '[\"6500\"]', '9%', '18%', 0, 'T.saifuddin & co', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-09-14 16:51:55', '', 'ACTIVE'), (1367, '2022-09-19', 'Dental Diagnostic Centre', 'JB-19092022/1176', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '', 0, '29ACPPJ6634A1ZJ', '1', '[\"Hosting Renewal and AMC for website till sept 2023\"]', '[\"\"]', '[\"8000\"]', '9%', '18%', 0, 'Dental Diagnostic Centre', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 634, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-09-19 17:54:47', '', 'ACTIVE'), (1368, '2022-09-29', 'Yaskawa India Pvt Ltd', 'JB-29092022/1177', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '29AAACY4408P1ZR', '1', '[\"AMC for ABP portal for One Year till 17 -08-2023\"]', '[\"\"]', '[\"38136\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '9%', 3432, 3432, 38136, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'CLEARED', 45000, '', 643, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-09-29 16:50:21', '', 'ACTIVE'), (1369, '2022-10-04', 'Plumage', 'JB-04102022/1178', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '', 0, '0', '1', '[\"ERP support quotation for 72 hours (Three months duration)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 9000, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '9%', 0, 0, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 644, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-04 08:00:30', '', 'ACTIVE'), (1370, '2022-10-08', 'Medusys', 'JB-08102022/1179', 'Bangalore ', '', 737, '0', '1', '[\"Medusys GAS Application Development work Delivered on October 2022\"]', '[\"\"]', '[\"NaN\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 0, 0, 0, 1416000, 'Fourteen Lakhs Sixteen Thousand Rupees Only', 0, '', 'PENDING', 1416000, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2022-10-08 17:41:02', '', 'INACTIVE'), (1371, '2022-10-08', 'Medusys', 'JB-08102022/1180', 'Bangalore ', '', 737, '0', '1', '[\"Medusys GAS Application Development work Delivered on October 2022\"]', '[\"\"]', '[\"1200000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 108000, 108000, 1200000, 1416000, 'Fourteen Lakhs Sixteen Thousand Rupees Only', 0, '', 'PARTIAL', 1416000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-08 17:42:23', '', 'INACTIVE'), (1372, '2022-10-11', 'B4B Data Solutions', 'JB-11102022/1181', ' ', '', 0, '0', '1', '[\"Website hosting renewal till sept 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'B4B Data Solutions', ' ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 633, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-11 17:00:02', '', 'ACTIVE'), (1373, '2022-10-11', 'G V IMPORTS & INFRA', 'JB-11102022/1182', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka 560001', '', 0, '0', '1', '[\"Website renewal for one year till july 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'G V IMPORTS & INFRA', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka 560001', '9%', 0, 0, 4000, 4000, 'Four Thousand Rupees Only', 0, '', 'CLEARED', 4000, '', 636, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-11 17:03:12', '', 'ACTIVE'), (1374, '2022-10-11', 'Turbmax', 'JB-11102022/1183', 'Batrahalli near ICiC bank Bangalore Karnataka ', '', 0, '0', '1', '[\"website hosting renewal till sept 2023\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Turbmax', 'Batrahalli near ICiC bank Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 639, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-11 17:04:37', '', 'ACTIVE'), (1375, '2022-10-12', 'Plumage', 'JB-12102022/1184', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\" pending amount of support invoice 72 hours\"]', '[\"\"]', '[\"12000\"]', '9%', '18%', 2160, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 12000, 14160, 'Fourteen Thousand One Hundred Sixty Rupees Only', 0, '', 'CLEARED', 14160, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-12 11:04:00', '', 'ACTIVE'), (1376, '2022-10-17', 'DR\'S DESK', 'JB-17102022/1185', '#83 Divya Paradise T G Layout ittamadu Banashankari 3rd stage Bengaluru Karnataka ', '', 653, '29AAHCD9450H1ZA', '2', '[\"APIMYSORE.ORG website hosting and domain renewal for one year .Along with 10hrs of support for website changes\",\"content updation for the website for one year (rs 500\\/- for one time updation totally 8 times in a year we will update) \"]', '[\"\",\"\"]', '[\"7000\",\"4000\"]', '9%', '18%', 0, 'DR\'S DESK', '#83 Divya Paradise T G Layout ittamadu Banashankari 3rd stage Bengaluru Karnataka ', '9%', 990, 990, 11000, 12980, 'Twelve Thousand Nine Hundred Eighty Rupees Only', 0, '', 'PENDING', 12980, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-17 17:03:01', '', 'ACTIVE'), (1377, '2022-10-18', 'LivSys Devices India Pvt ltd', 'JB-18102022/1186', ' Bangalore ', '', 711, '29AADCL7404P1ZZ', '1', '[\"AWS support for creating the dynamic IP and configuration \"]', '[\"\"]', '[\"8000\"]', '9%', '18%', 0, 'LivSys Devices India Pvt ltd', ' Bangalore ', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'CLEARED', 9440, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-10-18 12:11:57', '', 'ACTIVE'), (1378, '2022-11-19', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-19112022/1187', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '', 0, '0', '1', '[\"Website Hosting and domain Renewal for one year Till Nov 2023 (Bandwidth unlimited bandwidth per day) \"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 29500, '', 648, '', 'WAITING', 'Normal', 'Ajay', '', '2022-11-19 16:01:43', '', 'INACTIVE'), (1379, '2022-11-19', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-19112022/1187', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '', 0, '0', '1', '[\"Website Hosting and domain Renewal for one year Till Nov 2023 (Bandwidth unlimited bandwidth per day) \"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'CLEARED', 29500, '', 648, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-11-19 16:01:46', '', 'ACTIVE'), (1380, '2022-11-29', 'Yaskawa India Pvt Ltd', 'JB-28112022/1188', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 94400, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-11-28 18:28:44', '2022-11-29', 'ACTIVE'), (1381, '2022-12-08', 'Yaskawa India Pvt Ltd', 'JB-08122022/1189', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"Configuration charges for ABP portal to new server.\"]', '[\"\"]', '[\"15000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 1350, 1350, 15000, 17700, 'Seventeen Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 17700, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-12-08 10:54:43', '', 'ACTIVE'), (1382, '2022-12-08', 'Swansilk Pvt Ltd', 'JB-08122022/1190', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"AMC for ERP Till 30 June 2023 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-12-08 18:24:09', '2022-12-26', 'ACTIVE'), (1383, '2022-12-08', 'DECO TEXTIL', 'JB-08122022/1191', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC for ERP Till 30 June 2023 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2022-12-08 18:24:49', '2022-12-26', 'ACTIVE'), (1384, '2022-12-09', 'Sanghamithra Rural Financial Services', 'JB-09122022/1192', ' Bangalore Karnataka 560008', '', 0, '0', '2', '[\"M365 Business Basic and Configuration charges included\\r\\nFor one year. (One Email ID charge is 1500 and for 10 Email Id charges is 15000)\",\"Service Charges \"]', '[\"\",\"\"]', '[\"15000\",\"10000\"]', '9%', '18%', 0, 'Sanghamithra Rural Financial Services', ' Bangalore Karnataka 560008', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 29500, '', 646, '', 'EXPIRED', 'Normal', 'Ajay', '', '2022-12-09 16:31:13', '', 'ACTIVE'), (1385, '2022-12-12', 'Sri Krishna Sevashrama Hospital', 'JB-12122022/1193', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus, Bengaluru Karnataka', '', 728, '0', '1', '[\"DentICS AMC for Sri Krishna Sevashrama\\r\\nHospital for year 2022-23\"]', '[\"\"]', '[\"6000\"]', '9%', '18%', 0, '', '', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'PENDING', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Manjesh', '', '2022-12-12 13:45:53', '', 'ACTIVE'), (1386, '2022-12-13', 'Radion Equipments Pvt Ltd', 'JB-13122022/1194', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka', '', 426, '29AAICR0267P1ZP', '2', '[\"Hosting and domain renewal of website radions.in, radions.co.in\",\"Email Accounts 16No\'s\"]', '[\"\",\"\"]', '[\"6500\",\"16000\"]', '9%', '18%', 0, '', '', '9%', 2025, 2025, 22500, 26550, 'Twenty Six Thousand Five Hundred Fifty Rupees Only', 0, '', 'PENDING', 26550, '', 0, '', 'EXPIRED', 'Normal', 'Manjesh', '', '2022-12-13 13:44:17', '', 'ACTIVE'), (1387, '2022-12-15', 'Sanghamithra Rural Financial Services', 'JB-15122022/1195', ' Bangalore Karnataka', '', 727, '29AAECS0038H1ZG', '1', '[\"M365 Business Basic and Configuration charges included For\\r\\none year\"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, '-', '', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 29500, '', 0, '', 'WAITING', 'Normal', 'Manjesh', '', '2022-12-15 12:00:13', '', 'INACTIVE'), (1388, '2023-01-10', 'Yashas Dental Health Care', 'JB-10012023/1196', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '', 445, '0', '1', '[\"Dentics AMC for one year till Feb 2024\"]', '[\"\"]', '[\"6000\"]', '9%', '18%', 0, 'Yashas Dental Health Care', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'PENDING', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-01-10 13:28:44', '', 'ACTIVE'), (1389, '2023-01-11', 'Account Bazaar', 'JB-11012023/872/CASH', ' Bangalore ', '', 651, '0', '1', '[\"AMC renewal for website.\"]', '[\"\"]', '[\"5000\"]', '0', '18%', 0, 'Account Bazaar', '', '9%', 0, 0, 5000, 5000, 'Five Thousand Rupees Only', 0, '', 'PENDING', 5000, '', 0, '', 'EXPIRED', 'Cash', 'Manjesh', '', '2023-01-11 12:31:24', '', 'ACTIVE'), (1390, '2023-01-17', 'Plumage', 'JB-17012023/1197', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '1', '[\"Server for ERP 16gb ram \\r\\n100 gb storage\\r\\nUnlimited bandwidth\\r\\n1 Dedicated IP address :\\r\\n4 core cpu. \\r\\nFrom the Month of Jan 2023 to June 2023 (6 months)\"]', '[\"\"]', '[\"55000\"]', '9%', '18%', 0, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 4950, 4950, 55000, 64900, 'Sixty Four Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 64900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-01-17 17:14:31', '', 'ACTIVE'), (1391, '2023-02-20', 'Swansilk Pvt Ltd', 'JB-20022023/1198', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months 22 Aug 23 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-02-20 18:53:20', '2023-02-28', 'ACTIVE'), (1392, '2023-02-20', 'DECO TEXTIL', 'JB-20022023/1199', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months 22 August 23 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-02-20 18:54:08', '2023-02-28', 'ACTIVE'), (1393, '2023-02-22', 'Kooldair Systems Pvt Ltd', 'JB-22022023/1200', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '', 0, '29AAGCK9901R1ZN', '1', '[\"Website hosting and domain renewal till feb 2024. Both domain has been renewed.\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Reshma', '2023-02-22 16:00:02', '2023-02-22', 'ACTIVE'), (1394, '2023-02-24', 'Century pools', 'JB-24022023/1201', ' Bangalore Karnataka', '', 591, '0', '1', '[\"Hosting and Domain renewal for website till Feb 2024\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Century pools', ' Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-02-24 14:56:54', '', 'ACTIVE'), (1395, '2023-02-28', 'Hokkaidobliss', 'JB-28022023/1202', 'Banashankari Bangalore Karnartaka', '', 696, '0', '1', '[\"Hosting and server renewal till Feb 2024\"]', '[\"\"]', '[\"6500\"]', '9%', '18%', 0, 'Hokkaidobliss', 'Banashankari Bangalore Karnartaka', '9%', 585, 585, 6500, 7670, 'Seven Thousand Six Hundred Seventy Rupees Only', 0, '', 'CLEARED', 7670, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-02-28 14:58:45', '', 'ACTIVE'), (1396, '2023-02-28', 'Trupthi dental care', 'JB-28022023/1203', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '', 298, '0', '1', '[\"website Hosting and domain renewal till feb 2024 \"]', '[\"\"]', '[\"6000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka', '9%', 540, 540, 6000, 7080, 'Seven Thousand Eighty Rupees Only', 0, '', 'CLEARED', 7080, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-02-28 15:00:35', '', 'ACTIVE'), (1397, '2023-03-17', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-17032023/1204', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '0', '1', '[\"Server Renewal for GSSOrganised ERP till Feb 2024\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'CLEARED', 59000, '', 664, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-03-17 16:21:40', '', 'ACTIVE'), (1398, '2023-04-03', 'SRMG STONE PRIVATE LIMITED', 'JB-03042023/1205', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 307, '29ABCCS4865R1ZC', '1', '[\"Domain and Hosting Renewal for 1 year Till APRIL 2024\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-04-03 18:55:57', '', 'ACTIVE'), (1399, '2023-03-31', 'Plumage', 'JB-19042023/1206', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '1', '[\"Change request and Support From 13 August 2022 to 31 March 2023 Total 93.5 hours \"]', '[\"\"]', '[\"93000\"]', '9%', '18%', 16740, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 93000, 109740, 'One Lakhs Nine Thousand Seven Hundred Forty Rupees Only', 0, '', 'PENDING', 109740, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-04-19 09:20:19', '2023-04-19', 'ACTIVE'), (1400, '2023-04-24', 'Yaskawa India Pvt Ltd', 'JB-24042023/1207', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '0', '1', '[\"New feature implementation for download of report under projects category . this feature includes upload option for admin and download option for user.\"]', '[\"\"]', '[\"35000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '9%', 3150, 3150, 35000, 41300, 'Forty One Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 41300, '', 667, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-04-24 11:51:00', '', 'ACTIVE'), (1401, '2023-04-26', 'Medusys', 'JB-26042023/1208', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Medusys GAS application Development Part 1\"]', '[\"\"]', '[\"300000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 27000, 27000, 300000, 354000, 'Three Lakhs Fifty Four Thousand Rupees Only', 0, '', 'PENDING', 354000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-04-26 18:55:10', '', 'ACTIVE'), (1402, '2023-05-02', 'The Dental Square Multispeciality Dental clinic', 'JB-02052023/1209', 'Bangalore ', '', 0, '0', '1', '[\"Hosting for dentics Application Till April 2024\"]', '[\"\"]', '[\"7000\"]', '9%', '18%', 0, 'The Dental Square Multispeciality Dental clinic', 'Bangalore ', '9%', 630, 630, 7000, 8260, 'Eight Thousand Two Hundred Sixty Rupees Only', 0, '', 'PENDING', 8260, '', 671, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-05-02 13:47:50', '', 'ACTIVE'), (1403, '2023-05-03', 'Livsys Devices India Pvt Ltd', 'JB-03052023/1210', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '', 0, '0', '1', '[\"New Feature implementation 60 hours of work . check for request status. upgradation of grid loading feature.\"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Livsys Devices India Pvt Ltd', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PARTIAL', 29500, '', 668, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-05-03 11:41:30', '', 'ACTIVE'), (1404, '2023-05-03', 'Plumage', 'JB-03052023/1211', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '', 0, '0', '4', '[\"Automated mail configuration for reports\",\"Four days rahul has supported in pondicherry\",\"Support from mysore\",\"Travel Allowance \"]', '[\"\",\"\",\"\",\"\"]', '[\"45000\",\"40000\",\"5000\",\"10000\"]', '9%', '18%', 18000, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '9%', 9000, 9000, 100000, 118000, 'One Lakhs Eighteen Thousand Rupees Only', 0, '', 'PENDING', 118000, '', 672, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-05-03 12:03:48', '', 'ACTIVE'), (1405, '2023-05-31', 'Parivarthana School & College', 'JB-31052023/1212', 'Srirangapatna Karnataka', '', 745, '0', '2', '[\"Digital marketing Ad cost consumed for From May 10 to June 2 \\r\\n\",\"service charge for 25 days\"]', '[\"\",\"\"]', '[\"71000\",\"15000\"]', '9%', '18%', 0, 'Parivarthana School & College', 'Srirangapatna Karnataka', '9%', 7740, 7740, 86000, 101480, 'One Lakhs One Thousand Four Hundred Eighty Rupees Only', 0, '', 'PENDING', 101480, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-05-31 19:17:03', '', 'ACTIVE'), (1406, '2023-06-08', 'Plumage', 'JB-08062023/1213', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 724, '34AAFCV0265N1Z3', '2', '[\"One resource deployed for 6 days. 55 worked hours \",\"Travel allowance \"]', '[\"\",\"\"]', '[\"55000\",\"10000\"]', '9%', '18%', 11700, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 65000, 76700, 'Seventy Six Thousand Seven Hundred Rupees Only', 0, '', 'PENDING', 76700, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-06-08 13:49:43', '', 'ACTIVE'), (1407, '2023-07-01', 'Swansilk Pvt Ltd', 'JB-20062023/1214', ' Bangalore ', '', 0, '29AACCS4515R1ZR', '1', '[\"AMC for ERP From 1st July 2023 to 31st December 2023 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-06-20 18:40:13', '2023-06-20', 'ACTIVE'), (1408, '2023-07-01', 'DECO TEXTIL', 'JB-20062023/1215', 'Swan House Bangalore Karnataka', '', 0, '29AACFD0446K1ZG', '1', '[\"AMC for ERP From 1st July 2023 to 31st December 2023 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-06-20 18:42:22', '2023-06-20', 'ACTIVE'), (1409, '2023-07-02', 'Medusys', 'JB-02072023/1216', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Medusys GAS application Development Part 2\"]', '[\"\"]', '[\"300000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 27000, 27000, 300000, 354000, 'Three Lakhs Fifty Four Thousand Rupees Only', 0, '', 'PENDING', 354000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-07-02 16:04:34', '', 'ACTIVE'), (1410, '2023-07-02', 'TEKZEN Systems', 'JB-02072023/15/PROFORMA', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 0, '0', '7', '[\"Sowmya Shree L R \",\"Divya \",\"Usha \",\"Noor zeeshan\",\"Rahul J Bhat \",\"Shashikala C \",\"Kavitha \"]', '[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]', '[\"246666\",\"246666\",\"204166\",\"166666\",\"166666\",\"166666\",\"200000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 125775, 125775, 1397496, 1649046, 'Sixteen Lakhs Forty Nine Thousand Forty Six Rupees Only', 0, '', 'PARTIAL', 1649046, '', 0, '', 'EXPIRED', 'Profomo', 'Ajay', 'Ajay', '2023-07-02 20:51:43', '2023-07-06', 'ACTIVE'), (1411, '2023-07-06', 'Shreenidhi Tours and Travels', 'JB-06072023/1217', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '', 646, '0', '1', '[\"Hosting and domain Renewal for one year till July 5 2024\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Shreenidhi Tours and Travels', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-07-06 13:37:53', '', 'ACTIVE'), (1412, '2023-08-03', 'Ashirwad Dental Clinic', 'JB-03082023/1218', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '', 0, 'NO', '1', '[\"Website domain and hosting for one year . till 31 july 2024\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Ashirwad Dental Clinic', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-08-03 14:53:08', '2023-08-03', 'ACTIVE'), (1413, '2023-08-05', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-05082023/1219', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '', 0, '0', '1', '[\"ERP support package of 50 hours 1 year valid . till July 2024\"]', '[\"\"]', '[\"22500\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '9%', 2025, 2025, 22500, 26550, 'Twenty Six Thousand Five Hundred Fifty Rupees Only', 0, '', 'CLEARED', 26550, '', 683, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-05 16:07:25', '', 'ACTIVE'), (1414, '2023-08-05', 'TEKZEN Systems', 'JB-05082023/1220', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '7', '[\"Sowmya Shree L R \",\"Divya\",\"Usha \",\"Noor zeeshan\",\"Rahul J Bhat \",\"Shashikala C \",\"Kavitha \"]', '[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]', '[\"246666\",\"246666\",\"204166\",\"166666\",\"166666\",\"166666\",\"200000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 125775, 125775, 1397496, 1649046, 'Sixteen Lakhs Forty Nine Thousand Forty Six Rupees Only', 0, '', 'PENDING', 1649046, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2023-08-05 16:36:55', '', 'INACTIVE'), (1415, '2023-08-08', 'Swansilk Pvt Ltd', 'JB-08082023/1221', ' Bangalore ', '', 0, '0', '1', '[\"Server renewal for 6 months valid 22 Feb 24 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 689, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-08 14:26:47', '', 'ACTIVE'), (1416, '2023-08-08', 'DecoTextil Pvt Ltd', 'JB-08082023/1222', ' Bangalore Karnataka 0', '', 0, '0', '1', '[\"Server renewal for 6 months valid 22 Feb 24\\t\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DecoTextil Pvt Ltd', ' Bangalore Karnataka 0', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'CLEARED', 27140, '', 690, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-08 14:28:05', '', 'ACTIVE'); INSERT INTO `invoice` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `igst`, `igst_amount`, `supply_to`, `supply_address`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `attachment`, `invoice_status`, `grand_total`, `reason`, `quotation_id`, `others`, `status`, `invoice_type`, `created_by`, `updated_by`, `created_at`, `updated_at`, `delete_status`) VALUES (1417, '2023-08-08', 'aswini agrotech', 'JB-08082023/1223', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '', 0, '0', '1', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2024\\r\\n\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 687, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-08 18:40:46', '', 'ACTIVE'), (1418, '2023-08-11', 'Royale electronics', 'JB-11082023/1224', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka 560004', '', 0, '0', '1', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2024\\r\\n\"]', '[\"\"]', '[\"4800\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka 560004', '9%', 432, 432, 4800, 5664, 'Five Thousand Six Hundred and Sixty Four Rupees Only', 0, '', 'CLEARED', 5664, '', 688, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-11 16:04:28', '', 'ACTIVE'), (1419, '2023-08-11', 'SLV Scientific Supplies', 'JB-11082023/1225', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '', 0, '0', '1', '[\"hosting and domain renewal Till July 2024\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SLV Scientific Supplies', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 685, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-11 17:02:59', '', 'ACTIVE'), (1420, '2023-08-28', 'TEKZEN Systems', 'JB-28082023/1226', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '7', '[\"Sowmya Shree L R \",\"Divya\",\"Usha \",\"Noor zeeshan\",\"Rahul J Bhat \",\"Shashikala C \",\"Kavitha \"]', '[\"\",\"\",\"\",\"\",\"\",\"\",\"\"]', '[\"123333\",\"123333\",\"102083\",\"83333\",\"83333\",\"83333\",\"100000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 62887, 62887, 698748, 824522, 'Eight Lakhs Twenty Four Thousand Five Hundred and Twenty Two Rupees Only', 0, '', 'PENDING', 824522, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-28 14:00:02', '', 'ACTIVE'), (1421, '2023-08-29', 'Medusys', 'JB-29082023/1227', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Medusys GAS application Development Part 3\"]', '[\"\"]', '[\"300000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 27000, 27000, 300000, 354000, 'Three Lakhs Fifty Four Thousand Rupees Only', 0, '', 'PENDING', 354000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-08-29 13:58:51', '', 'ACTIVE'), (1422, '2023-09-01', 'TEKZEN Systems', 'JB-01092023/1228', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '2', '[\"Pending Invoice of August month \",\"August month 13 Resources\"]', '[\"\",\"\"]', '[\"698748\",\"891250\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 143100, 143100, 1589998, 1876198, 'Eighteen Lakhs Seventy Six Thousand One Hundred and Ninety Eight Rupees Only', 0, '', 'PENDING', 1876198, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-09-01 17:47:08', '', 'INACTIVE'), (1423, '2023-09-28', 'TEKZEN Systems', 'JB-28092023/16/PROFORMA', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"September month 14 resources \"]', '[\"\"]', '[\"1870000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 168300, 168300, 1870000, 2206600, 'Twenty Two Lakhs Six Thousand Six Hundred Rupees Only', 0, '', 'PENDING', 2206600, '', 0, '', 'EXPIRED', 'Profomo', 'Ajay', '', '2023-09-28 14:53:39', '', 'ACTIVE'), (1424, '2023-10-03', 'Indian Society of Professional Social Works', 'JB-03102023/1229', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka 0', '', 0, '0', '1', '[\"Website development and hosting along with domain for ISPSW association (6-10 pages of website ) content will be provided by ISPSW including 1 year maintainence \"]', '[\"\"]', '[\"25424\"]', '9%', '18%', 0, 'Indian Society of Professional Social Works', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka 0', '9%', 2288, 2288, 25424, 30000, 'Thirty Thousand Rupees Only', 0, '', 'PARTIAL', 30000, '', 677, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-10-03 13:00:06', '', 'ACTIVE'), (1425, '2023-10-03', 'Plumage', 'JB-03102023/1230', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '', 0, '34AAFCV0265N1Z3', '2', '[\"Server for ERP For the Month of July, August and September 2023 (3 months)\",\"Server for ERP for the Month of Oct, Nov, Dec 2023 (3 months)\"]', '[\"\",\"\"]', '[\"27499\",\"45000\"]', '9%', '18%', 13050, 'Plumage', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry', '9%', 0, 0, 72499, 85549, 'Eighty Five Thousand Five Hundred and Forty Nine Rupees Only', 0, '', 'CLEARED', 85549, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-10-03 13:18:13', '2023-10-03', 'ACTIVE'), (1426, '2023-09-15', 'MRK ENTERPRISES', 'JB-15092023/1231', ' Mysore Karnataka', '', 0, '29BHWPK6331A2Z5', '1', '[\"Tekzen Development resource provided 15 developers\"]', '[\"\"]', '[\"1589998\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 143100, 143100, 1589998, 1876198, 'Eighteen Lakhs Seventy Six Thousand One Hundred and Ninety Eight Rupees Only', 0, '', 'PENDING', 1876198, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-10-06 17:53:33', '2023-10-06', 'ACTIVE'), (1427, '2023-09-15', 'Medusys', 'JB-15092023/1232', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"Development support for medusys GAS applicaiton Part 4\"]', '[\"\"]', '[\"500000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 45000, 45000, 500000, 590000, 'Five Lakhs Ninety Thousand Rupees Only', 0, '', 'PENDING', 590000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-10-06 18:02:27', '2023-10-06', 'ACTIVE'), (1428, '2023-10-11', 'Yaskawa India Pvt Ltd', 'JB-06102023/1233', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 0, '29AAACY4408P1ZR', '1', '[\"AMC for ABP portal for One Year till 17 -08-2024\"]', '[\"\"]', '[\"38136\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 3432, 3432, 38136, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'PENDING', 45000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-10-06 18:44:55', '2023-10-11', 'ACTIVE'), (1429, '2023-10-25', 'Savadi Dental Care', 'JB-25102023/1234', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '', 0, '0', '2', '[\"Dentics Renewal for one year \",\"Dentics server renewal for one year\"]', '[\"\",\"\"]', '[\"5000\",\"5000\"]', '9%', '18%', 0, 'Savadi Dental Care', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 11800, '', 699, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-10-25 13:39:24', '', 'ACTIVE'), (1430, '2023-10-27', 'Rotary Brindavan', 'JB-27102023/17/PROFORMA', 'Brindavan Extension 1st stage Mysore Karnataka', '', 749, '0', '1', '[\"BrightClass EyeRis A9 IFP\\r\\n(65\\\") Quad core 65\\\" 4K UHD Touch Display + Quad Core + 4GB + 32GB With OPS, i5 8th Gen 4GB RAM, SSD 256 GB\\r\\n\\r\\nUnit price 118644.07\\r\\nNo of units : 10\\r\\n\"]', '[\"HSN 84715000\"]', '[\"1186440.7\"]', '9%', '18%', 0, 'Rotary Brindavan', 'Brindavan Extension 1st stage Mysore Karnataka', '9%', 106780, 106780, 1186440, 1400000, 'Fourteen Lakhs Rupees Only', 0, '', 'PENDING', 1400000, '', 0, '', 'EXPIRED', 'Profomo', 'Ajay', '', '2023-10-27 14:55:57', '', 'ACTIVE'), (1431, '2023-10-27', 'MRK ENTERPRISES', 'JB-27102023/1235', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"Resource procurement for Development \"]', '[\"\"]', '[\"935000\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 84150, 84150, 935000, 1103300, 'Eleven Lakhs Three Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 1103300, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-10-27 15:09:05', '', 'ACTIVE'), (1432, '2023-11-01', 'MRK ENTERPRISES', 'JB-01112023/1236', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"Development resources provided . 14 resources \"]', '[\"\"]', '[\"935000\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 84150, 84150, 935000, 1103300, 'Eleven Lakhs Three Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 1103300, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-11-01 13:17:24', '', 'ACTIVE'), (1433, '2023-11-07', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-07112023/1237', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"Website Hosting and domain Renewal for one year Till Nov 2024 (Bandwidth unlimited bandwidth per day) \"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 29500, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-11-07 19:42:16', '', 'ACTIVE'), (1434, '2023-11-08', 'Rotary Brindavan', 'JB-08112023/1238', 'Brindavan Extension 1st stage Mysore Karnataka', '', 0, '0', '2', '[\"BrightClass EyeRis A9 IFP\\r\\n(65\\\") Quad core 65\\\" 4K UHD Touch Display + Quad Core + 4GB + 32GB With OPS, i5 8th Gen 4GB RAM, SSD 256 GB\\r\\n\\r\\nUnit price 118644.07\\r\\nNo of units : 10\\r\\n\",\"Software services\"]', '[\"HSN 84715000\",\"\"]', '[\"925000\",\"261440.68\"]', '9%', '18%', 213559, 'Rotary Brindavan', 'Brindavan Extension 1st stage Mysore Karnataka', '9%', 0, 0, 1186440, 1400000, 'Fourteen Lakhs Rupees Only', 0, '', 'PENDING', 1400000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-11-08 13:20:22', '2023-11-09', 'ACTIVE'), (1435, '2023-11-18', 'Yaskawa India Pvt Ltd', 'JB-18112023/1239', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '0', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 94400, '', 700, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-11-18 16:43:42', '', 'ACTIVE'), (1436, '2023-11-25', 'Medusys', 'JB-25112023/1240', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till Jan 31 2024\\r\\n\"]', '[\"\"]', '[\"60000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 70800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-11-25 15:13:12', '', 'ACTIVE'), (1437, '2023-12-01', 'MRK ENTERPRISES', 'JB-01122023/1241', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"Development resources provided . 14 resources \"]', '[\"\"]', '[\"935000\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 84150, 84150, 935000, 1103300, 'Eleven Lakhs Three Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 1103300, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-12-01 21:55:55', '', 'ACTIVE'), (1438, '2023-12-12', 'Plumage Technology Private Limited', 'JB-12122023/1242', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry 605009', '', 0, '34AAFCV0265N1Z3', '1', '[\"Support for Plumage ERP 160 hours From May 2023 to Nov 2023\"]', '[\"\"]', '[\"160000\"]', '9%', '18%', 28800, 'Plumage Technology Private Limited', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry 605009', '9%', 0, 0, 160000, 188800, 'One Lakhs Eighty Eight Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 188800, '', 702, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2023-12-12 09:49:54', '2023-12-12', 'ACTIVE'), (1439, '2023-12-12', 'Radion Equipments Pvt Ltd', 'JB-12122023/1243', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka', '', 426, '29AAICR0267P1ZP', '2', '[\"Hosting and domain renewal of website radions.in, radions.co.in\",\"Email Accounts 16No\'s\"]', '[\"\",\"\"]', '[\"6500\",\"16000\"]', '9%', '18%', 0, 'Radion Equipments Pvt Ltd', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka', '9%', 2025, 2025, 22500, 26550, 'Twenty Six Thousand Five Hundred Fifty Rupees Only', 0, '', 'PENDING', 26550, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-12-12 13:42:49', '', 'ACTIVE'), (1440, '2023-12-19', 'DR JaiKrishna', 'JB-19122023/1244', '#293, 19th Main , 6th Block, Koramangala Bengaluru ', '', 395, '29ACPPJ6634A1ZJ', '1', '[\"Hosting Renewal and AMC for website sept 2024\"]', '[\"\"]', '[\"8000\"]', '9%', '18%', 0, 'DR JaiKrishna', '#293, 19th Main , 6th Block, Koramangala Bengaluru ', '9%', 720, 720, 8000, 9440, 'Nine Thousand Four Hundred Forty Rupees Only', 0, '', 'PENDING', 9440, '', 704, '', 'EXPIRED', 'Normal', 'Ajay', '', '2023-12-19 12:37:44', '', 'ACTIVE'), (1441, '2024-01-05', 'MRK ENTERPRISES', 'JB-05012024/1245', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"Development resource provided 14 resource .\"]', '[\"\"]', '[\"935000\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 84150, 84150, 935000, 1103300, 'Eleven Lakhs Three Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 1103300, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-01-05 13:35:16', '', 'ACTIVE'), (1442, '2024-01-18', 'Medusys', 'JB-18012024/1246', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till APRIL 30 2024\\r\\n\"]', '[\"\"]', '[\"60000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 70800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-01-18 13:11:15', '2024-01-18', 'ACTIVE'), (1443, '2024-02-02', 'MRK ENTERPRISES', 'JB-02022024/1247', ' Mysore Karnataka', '', 748, '0', '1', '[\"2 resources For AWS and Development \"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'MRK ENTERPRISES:748', ' Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-02-02 14:13:53', '2024-02-05', 'INACTIVE'), (1444, '2024-02-12', 'Swansilk Pvt Ltd', 'JB-12022024/1248', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC for ERP From 1st Jan 2024 to 30th June 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-12 14:35:31', '', 'ACTIVE'), (1445, '2024-02-12', 'DECO TEXTIL', 'JB-12022024/1249', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC for ERP From 1st Jan 2024 to 30th June 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-12 14:37:06', '', 'ACTIVE'), (1446, '2024-02-12', 'Swansilk Pvt Ltd', 'JB-12022024/1250', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months valid till 22 August 2024 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-12 14:40:34', '', 'ACTIVE'), (1447, '2024-02-12', 'DECO TEXTIL', 'JB-12022024/1251', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months valid till 22 August 2024 \"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-12 14:41:16', '', 'ACTIVE'), (1448, '2024-02-21', 'IKENREG CONSULTANCY SERVICES', 'JB-21022024/1252', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '', 752, '29AAJFI0538E1ZG', '1', '[\"Hosting for 1 year for bidding application with 2 GB data and 4 GB RAM, Linux hosting \"]', '[\"\"]', '[\"10000\"]', '9%', '18%', 0, 'IKENREG CONSULTANCY SERVICES', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 11800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-21 18:42:56', '', 'ACTIVE'), (1449, '2024-02-21', 'IKENREG CONSULTANCY SERVICES', 'JB-21022024/1253', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '', 752, '29AAJFI0538E1ZG', '1', '[\"AMC FOR Bidding Application with support hours of 25 hours valid for one year .\"]', '[\"\"]', '[\"20000\"]', '9%', '18%', 0, 'IKENREG CONSULTANCY SERVICES', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '9%', 1800, 1800, 20000, 23600, 'Twenty Three Thousand Six Hundred Rupees Only', 0, '', 'CLEARED', 23600, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-21 18:44:19', '', 'ACTIVE'), (1450, '2024-02-26', 'Rajiv Dental Care Centre', 'JB-26022024/1254', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka ', '', 0, '0', '2', '[\"Rajiv Dental Hosting Renewal Rs 5000 for hosting 1 year . For two years we are renewing \",\"Domain Rs 800 for 1 year . For two years we are renewing \"]', '[\"\",\"\"]', '[\"10000\",\"1600\"]', '9%', '18%', 0, 'Rajiv Dental Care Centre', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka ', '9%', 1044, 1044, 11600, 13688, 'Thirteen Thousand Six Hundred and Eighty Eight Rupees Only', 0, '', 'PENDING', 13688, '', 715, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-26 18:53:13', '', 'ACTIVE'), (1451, '2024-02-28', 'Trupthi dental care', 'JB-28022024/1255', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '', 0, '0', '1', '[\"Website renewal and hosting renewal til 21 Feb 2025\"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Trupthi dental care', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'CLEARED', 4720, '', 713, '', 'EXPIRED', 'Normal', 'Darshan', '', '2024-02-28 15:02:41', '', 'ACTIVE'), (1452, '2024-02-28', 'Kooldair Systems Pvt Ltd', 'JB-28022024/1256', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '', 0, '0', '1', '[\"Website hosting and domain renewal till feb 2025. Both domain has been renewed.\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Kooldair Systems Pvt Ltd', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'CLEARED', 5900, '', 711, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-02-28 18:43:37', '', 'ACTIVE'), (1453, '2024-03-02', 'MRK ENTERPRISES', 'JB-02032024/1257', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"2 resources For AWS and Development \"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'MRK ENTERPRISES', ' Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-03-02 19:11:02', '', 'INACTIVE'), (1454, '2024-03-01', 'The Registrar', 'JB-01032024/1258', 'JSS Science and Technology University, Mysore', '', 0, '2PAAATJ2722Q1Z8', '2', '[\"BrightClass Eyeris A10 75 inch\\u201d with Built-in Android + BrightClass App on Android \",\"Birdcam VC1\"]', '[\"\",\"\"]', '[\"97881.36\",\"25000.00\"]', '9%', '18%', 0, 'The Registrar', 'JSS Science and Technology University, Mysore', '9%', 11059, 11059, 122881, 144999, 'One Lakhs Forty Four Thousand Nine Hundred and Ninety Nine Rupees Only', 0, '', 'PENDING', 144999, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-03-18 14:23:14', '2024-04-01', 'ACTIVE'), (1455, '2024-03-28', 'SRMG STONE PRIVATE LIMITED', 'JB-01042024/1259', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 0, '29ABCCS4865R1ZC', '1', '[\"website renewal for one year till march 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SRMG STONE PRIVATE LIMITED', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-04-01 12:47:06', '2024-04-01', 'ACTIVE'), (1456, '2024-03-28', 'Medusys', 'JB-28032024/1260', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"Application Development Charges for Medusys application and support \"]', '[\"\"]', '[\"700000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 63000, 63000, 700000, 826000, 'Eight Lakhs Twenty Six Thousand Rupees Only', 0, '', 'PENDING', 826000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-04-01 12:49:26', '2024-04-01', 'ACTIVE'), (1457, '2024-04-25', 'Turbmax', 'JB-25042024/1261', 'Batrahalli near ICiC bank Bangalore Karnataka ', '', 0, '0', '1', '[\"Hosting renewal for one year Till Dec 2024\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Turbmax', 'Batrahalli near ICiC bank Bangalore Karnataka ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 718, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-04-25 13:55:46', '', 'ACTIVE'), (1458, '2024-04-29', 'TEKZEN Systems', 'JB-29042024/1262', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"2 Software development Resource Provided for one month\"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-04-29 17:51:16', '', 'ACTIVE'), (1459, '2024-05-15', 'Medusys', 'JB-15052024/1263', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"Medusys Server for 3 months till 31 July 2024\"]', '[\"\"]', '[\"60000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 70800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-06-07 13:34:00', '2024-06-07', 'ACTIVE'), (1460, '2024-06-07', 'TEKZEN Systems', 'JB-07062024/1264', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"2 Software development Resource Provided for one month\"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-06-07 13:35:20', '', 'INACTIVE'), (1461, '2024-05-10', 'TEKZEN Systems', 'JB-10052024/1265', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 0, '0', '1', '[\"2 Software development Resource Provided for one month\"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'WAITING', 'Normal', 'Ajay', 'Ajay', '2024-06-07 13:38:04', '2024-06-07', 'INACTIVE'), (1462, '2024-06-07', 'aswini agrotech', 'JB-07062024/1266', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"Website Domain and server renewal till June 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'aswini agrotech', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-06-07 13:40:35', '', 'ACTIVE'), (1463, '2024-06-25', 'Swansilk Pvt Ltd', 'JB-25062024/1267', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC for ERP From 1st July 2024 to 31th Dec 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-06-25 18:25:09', '', 'ACTIVE'), (1464, '2024-06-25', 'DECO TEXTIL', 'JB-25062024/1268', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC for ERP From 1st July 2024 to 31th Dec 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, '', 'PENDING', 59000, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-06-25 18:26:13', '', 'ACTIVE'), (1465, '2024-06-26', 'Mpowering skills', 'JB-26062024/1269', ' Bangalore ', '', 0, '0', '1', '[\"Website hosting and domain for one year till June 2025 mpoweringskills.com\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Mpowering skills', ' Bangalore ', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-06-26 18:39:41', '2024-06-26', 'ACTIVE'), (1466, '2024-06-27', 'Handithavalli Grama Panchayat', 'JB-27062024/1270', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '', 0, '0', '2', '[\"Asus E410 Laptop Intel Celeron N4500 Processor 8 GB DDR4\\r\\n256 GB storage INTEL UHD graphics 14.0 inch screen Windows\\r\\n11 OS Numberpad \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/8gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\"]', '[\"\",\"\"]', '[\"31100\",\"53200\"]', '9%', '18%', 0, 'Handithavalli Grama Panchayat', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '9%', 7587, 7587, 84300, 99474, 'Ninety Nine Thousand Four Hundred and Seventy Four Rupees Only', 0, '', 'PENDING', 99474, '', 723, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-06-27 13:23:03', '', 'ACTIVE'), (1467, '2024-07-02', 'TEKZEN Systems', 'JB-02072024/1271', ' WeKreate Space, Dodamanne complex ,Yoganarashima swamy temple road vijaynagar 2 nd stage Mysore Karnataka', '', 0, '0', '1', '[\"June Month Invoice for Usha and Arun\"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'TEKZEN Systems', ' WeKreate Space, Dodamanne complex ,Yoganarashima swamy temple road vijaynagar 2 nd stage Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', 'Ajay', '2024-07-02 13:22:51', '2024-08-02', 'ACTIVE'), (1468, '2024-07-22', 'Medusys', 'JB-22072024/1272', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Server Renewal for 3 months Till 31 October 2024\"]', '[\"\"]', '[\"60000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 70800, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-07-22 18:17:10', '', 'ACTIVE'), (1469, '2024-08-02', 'TEKZEN Systems', 'JB-02082024/1273', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"Arun and Usha July month bill\"]', '[\"\"]', '[\"340000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, '', 'PENDING', 401200, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-02 16:09:37', '', 'ACTIVE'), (1470, '2024-08-08', 'SLV Scientific Supplies', 'JB-08082024/1274', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '', 654, '29ALVPM9461F2Z9', '1', '[\"Website hosting and renewal till August 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'SLV Scientific Supplies', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-08 17:26:37', '', 'ACTIVE'), (1471, '2024-08-08', 'Swansilk Pvt Ltd', 'JB-08082024/1275', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months valid till 22 Feb 2025\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'Swansilk Pvt Ltd', ' Bangalore ', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-08 17:30:58', '', 'ACTIVE'), (1472, '2024-08-08', 'DECO TEXTIL', 'JB-08082024/1276', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months valid till 22 Feb 2025\"]', '[\"\"]', '[\"23000\"]', '9%', '18%', 0, 'DECO TEXTIL', 'Swan House Bangalore Karnataka', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, '', 'PENDING', 27140, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-08 17:31:53', '', 'ACTIVE'), (1473, '2024-08-22', 'Royale electronics', 'JB-22082024/1277', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '29AADFR6653F1ZZ', '1', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2025\\r\\n\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Royale electronics', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-22 13:42:09', '', 'ACTIVE'), (1474, '2024-08-29', 'Shreenidhi Tours and Travels', 'JB-29082024/1278', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '', 646, '0', '1', '[\"Website renewal and hosting for one year https:\\/\\/shreenidhitravels.in\\/ till August 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '18%', 0, 'Shreenidhi Tours and Travels', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 5900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-08-29 15:20:08', '', 'ACTIVE'), (1475, '2024-09-03', 'DR\'S DESK', 'JB-03092024/1279', '#83 Divya Paradise T G Layout ittamadu Banashankari 3rd stage Bengaluru Karnataka ', '', 653, '29AAHCD9450H1ZA', '2', '[\"APIMYSORE.ORG website hosting and domain renewal for one year .Along with 10hrs of support for website changes\",\"content updation for the website for one year (rs 500\\/- for one time updation totally 8 times in a year we will update) \"]', '[\"\",\"\"]', '[\"7000\",\"4000\"]', '9%', '18%', 0, 'DR\'S DESK', '#83 Divya Paradise T G Layout ittamadu Banashankari 3rd stage Bengaluru Karnataka ', '9%', 990, 990, 11000, 12980, 'Twelve Thousand Nine Hundred Eighty Rupees Only', 0, '', 'PENDING', 12980, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-09-03 11:33:33', '', 'ACTIVE'), (1476, '2024-09-18', 'Intercontinental Logistics', 'JB-18092024/1280', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '', 144, '29BIIPS9092K3Z6', '1', '[\"Domain and hosting renewal for website 1 year validity \"]', '[\"\"]', '[\"4000\"]', '9%', '18%', 0, 'Intercontinental Logistics', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, '', 'PENDING', 4720, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-09-18 15:13:38', '', 'ACTIVE'), (1477, '2024-10-04', 'TEKZEN Systems', 'JB-04102024/1281', 'Plot No 1348 & 1349, vijaynagar 1st stage Mysore Karnataka', '', 746, '29AATFT0152H1ZV', '2', '[\"Usha AWS resource 1 month September\",\"Development support 16 hours\"]', '[\"\",\"\"]', '[\"185000\",\"20000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'Plot No 1348 & 1349, vijaynagar 1st stage Mysore Karnataka', '9%', 18450, 18450, 205000, 241900, 'Two Lakhs Forty One Thousand Nine Hundred Rupees Only', 0, '', 'PENDING', 241900, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-10-04 13:51:15', '', 'ACTIVE'), (1478, '2024-10-07', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-07102024/1282', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '2', '[\"ERP support package of 50 hours 1 year valid . till July 2025\",\"Server Renewal for GSSOrganised ERP till Feb 2025\"]', '[\"\",\"\"]', '[\"22500\",\"50000\"]', '9%', '18%', 0, 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '9%', 6525, 6525, 72500, 85550, 'Eighty Five Thousand Five Hundred Fifty Rupees Only', 0, '', 'PENDING', 85550, '', 0, '', 'EXPIRED', 'Normal', 'Ajay', '', '2024-10-07 16:17:08', '', 'ACTIVE'), (1479, '2024-10-15', 'Yaskawa India Pvt Ltd', 'JB-15102024/1283', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 94400, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-10-15 17:01:14', '', 'INACTIVE'), (1480, '2024-10-16', 'Yaskawa India Pvt Ltd', 'JB-16102024/18/PROFORMA', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 94400, '', 0, '', 'EXPIRED', 'Profomo', 'Ajay', '', '2024-10-16 12:21:44', '', 'ACTIVE'), (1481, '2024-10-25', 'Yaskawa India Pvt Ltd', 'JB-25102024/1284', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, '', 'PENDING', 94400, '', 700, '', 'WAITING', 'Normal', 'Ajay', '', '2024-10-25 13:20:21', '', 'ACTIVE'), (1482, '2024-10-25', 'Medusys', 'JB-25102024/1285', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Server Renewal for 3 months Till 31 Jan 2025\"]', '[\"\"]', '[\"60000\"]', '9%', '18%', 0, 'Medusys', 'Bangalore ', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, '', 'PENDING', 70800, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-10-25 14:40:19', '', 'ACTIVE'), (1483, '2024-11-04', 'TEKZEN Systems', 'JB-04112024/1286', 'Plot No 1348 & 1349, vijaynagar 1st stage Mysore Karnataka', '', 746, '29AATFT0152H1ZV', '1', '[\"Usha AWS resource 1 month October\"]', '[\"\"]', '[\"185000\"]', '9%', '18%', 0, 'TEKZEN Systems', 'Plot No 1348 & 1349, vijaynagar 1st stage Mysore Karnataka', '9%', 16650, 16650, 185000, 218300, 'Two Lakhs Eighteen Thousand Three Hundred Rupees Only', 0, '', 'PENDING', 218300, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-11-04 12:15:25', '', 'ACTIVE'), (1484, '2024-11-05', 'Ragav Diagnostic and Research centre Pvt Ltd', 'JB-05112024/1287', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '', 186, 'NO', '1', '[\"Website Hosting and domain Renewal for one year Till Nov 2025 (Bandwidth unlimited bandwidth per day) \"]', '[\"\"]', '[\"25000\"]', '9%', '18%', 0, 'Ragav Diagnostic and Research centre Pvt Ltd', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka', '9%', 2250, 2250, 25000, 29500, 'Twenty Nine Thousand Five Hundred Rupees Only', 0, '', 'PENDING', 29500, '', 0, '', 'WAITING', 'Normal', 'Ajay', '', '2024-11-05 17:07:31', '', 'ACTIVE'), (1485, '2024-11-07', 'Yaskawa India Pvt Ltd', 'JB-07112024/1288', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '0', '1', '[\"AMC for ABP portal for One Year till 17 -08-2025\"]', '[\"\"]', '[\"38136\"]', '9%', '18%', 0, 'Yaskawa India Pvt Ltd', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '9%', 3432, 3432, 38136, 45000, 'Forty Five Thousand Rupees Only', 0, '', 'PENDING', 45000, '', 729, '', 'WAITING', 'Normal', 'Ajay', '', '2024-11-07 16:46:21', '', 'ACTIVE'); -- -------------------------------------------------------- -- -- Table structure for table `invoice_numbers` -- CREATE TABLE `invoice_numbers` ( `number_id` int(11) NOT NULL, `invoice_type` enum('NORMAL','PROFORMA','CASH','ACCOUNT') NOT NULL, `invoice_number` int(11) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `invoice_numbers` -- INSERT INTO `invoice_numbers` (`number_id`, `invoice_type`, `invoice_number`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'NORMAL', 847, 'ACTIVE', '2019-10-16 00:00:00', '0000-00-00 00:00:00'), (2, 'PROFORMA', 4, 'ACTIVE', '2019-10-16 00:00:00', '0000-00-00 00:00:00'), (3, 'CASH', 835, 'ACTIVE', '2019-10-16 00:00:00', '0000-00-00 00:00:00'), (9, 'NORMAL', 848, 'ACTIVE', '2019-10-17 15:52:21', '0000-00-00 00:00:00'), (10, 'NORMAL', 849, 'ACTIVE', '2019-10-17 16:06:41', '0000-00-00 00:00:00'), (11, 'NORMAL', 850, 'ACTIVE', '2019-10-18 12:06:52', '0000-00-00 00:00:00'), (12, 'CASH', 836, 'ACTIVE', '2019-10-19 12:46:19', '0000-00-00 00:00:00'), (13, 'NORMAL', 851, 'ACTIVE', '2019-10-21 15:12:58', '0000-00-00 00:00:00'), (14, 'NORMAL', 852, 'ACTIVE', '2019-10-22 14:10:23', '0000-00-00 00:00:00'), (15, 'NORMAL', 853, 'ACTIVE', '2019-10-22 18:43:46', '0000-00-00 00:00:00'), (16, 'NORMAL', 854, 'ACTIVE', '2019-10-22 18:46:58', '0000-00-00 00:00:00'), (17, 'NORMAL', 855, 'ACTIVE', '2019-10-23 12:23:38', '0000-00-00 00:00:00'), (18, 'NORMAL', 856, 'ACTIVE', '2019-10-23 17:39:48', '0000-00-00 00:00:00'), (19, 'NORMAL', 857, 'ACTIVE', '2019-10-25 15:21:38', '0000-00-00 00:00:00'), (20, 'NORMAL', 858, 'ACTIVE', '2019-10-30 16:57:02', '0000-00-00 00:00:00'), (21, 'NORMAL', 859, 'ACTIVE', '2019-10-31 15:12:45', '0000-00-00 00:00:00'), (22, 'NORMAL', 860, 'ACTIVE', '2019-10-31 15:37:51', '0000-00-00 00:00:00'), (23, 'NORMAL', 861, 'ACTIVE', '2019-10-31 16:08:10', '0000-00-00 00:00:00'), (24, 'NORMAL', 862, 'ACTIVE', '2019-10-31 16:20:01', '0000-00-00 00:00:00'), (25, 'NORMAL', 863, 'ACTIVE', '2019-11-01 10:47:49', '0000-00-00 00:00:00'), (26, 'NORMAL', 864, 'ACTIVE', '2019-11-04 11:30:16', '0000-00-00 00:00:00'), (27, 'NORMAL', 865, 'ACTIVE', '2019-11-04 15:33:36', '0000-00-00 00:00:00'), (28, 'CASH', 837, 'ACTIVE', '2019-11-04 15:39:44', '0000-00-00 00:00:00'), (29, 'CASH', 838, 'ACTIVE', '2019-11-05 14:17:22', '0000-00-00 00:00:00'), (30, 'NORMAL', 866, 'ACTIVE', '2019-11-05 14:22:17', '0000-00-00 00:00:00'), (31, 'NORMAL', 867, 'ACTIVE', '2019-11-07 17:06:12', '0000-00-00 00:00:00'), (32, 'NORMAL', 868, 'ACTIVE', '2019-11-07 17:07:17', '0000-00-00 00:00:00'), (33, 'NORMAL', 869, 'ACTIVE', '2019-11-14 11:06:02', '0000-00-00 00:00:00'), (34, 'NORMAL', 870, 'ACTIVE', '2019-11-14 14:09:55', '0000-00-00 00:00:00'), (35, 'PROFORMA', 5, 'ACTIVE', '2019-11-14 17:05:50', '0000-00-00 00:00:00'), (36, 'NORMAL', 871, 'ACTIVE', '2019-11-15 13:26:22', '0000-00-00 00:00:00'), (37, 'NORMAL', 872, 'ACTIVE', '2019-11-15 13:42:46', '0000-00-00 00:00:00'), (38, 'NORMAL', 873, 'ACTIVE', '2019-11-15 13:49:31', '0000-00-00 00:00:00'), (39, 'NORMAL', 874, 'ACTIVE', '2019-11-18 12:03:46', '0000-00-00 00:00:00'), (40, 'CASH', 839, 'ACTIVE', '2019-11-19 12:43:08', '0000-00-00 00:00:00'), (41, 'NORMAL', 875, 'ACTIVE', '2019-11-19 13:14:54', '0000-00-00 00:00:00'), (42, 'CASH', 840, 'ACTIVE', '2019-11-19 14:41:16', '0000-00-00 00:00:00'), (43, 'NORMAL', 876, 'ACTIVE', '2019-11-20 13:29:40', '0000-00-00 00:00:00'), (44, 'NORMAL', 877, 'ACTIVE', '2019-11-26 12:58:48', '0000-00-00 00:00:00'), (45, 'NORMAL', 878, 'ACTIVE', '2019-11-26 13:04:06', '0000-00-00 00:00:00'), (46, 'NORMAL', 879, 'ACTIVE', '2019-11-26 16:12:03', '0000-00-00 00:00:00'), (47, 'CASH', 841, 'ACTIVE', '2019-11-26 16:16:13', '0000-00-00 00:00:00'), (48, 'NORMAL', 880, 'ACTIVE', '2019-11-26 18:22:58', '0000-00-00 00:00:00'), (49, 'NORMAL', 881, 'ACTIVE', '2019-11-26 18:25:56', '0000-00-00 00:00:00'), (50, 'CASH', 842, 'ACTIVE', '2019-11-27 17:20:59', '0000-00-00 00:00:00'), (51, 'CASH', 843, 'ACTIVE', '2019-11-30 13:11:34', '0000-00-00 00:00:00'), (52, 'NORMAL', 882, 'ACTIVE', '2019-12-02 16:09:32', '0000-00-00 00:00:00'), (53, 'NORMAL', 883, 'ACTIVE', '2019-12-02 16:21:22', '0000-00-00 00:00:00'), (54, 'NORMAL', 884, 'ACTIVE', '2019-12-02 17:36:30', '0000-00-00 00:00:00'), (55, 'PROFORMA', 6, 'ACTIVE', '2019-12-03 11:52:48', '0000-00-00 00:00:00'), (56, 'NORMAL', 885, 'ACTIVE', '2019-12-05 13:09:01', '0000-00-00 00:00:00'), (57, 'CASH', 844, 'ACTIVE', '2019-12-05 16:56:19', '0000-00-00 00:00:00'), (58, 'NORMAL', 886, 'ACTIVE', '2019-12-06 11:19:01', '0000-00-00 00:00:00'), (59, 'NORMAL', 887, 'ACTIVE', '2019-12-06 13:35:22', '0000-00-00 00:00:00'), (60, 'NORMAL', 888, 'ACTIVE', '2019-12-06 13:52:26', '0000-00-00 00:00:00'), (61, 'NORMAL', 889, 'ACTIVE', '2019-12-10 10:52:46', '0000-00-00 00:00:00'), (62, 'NORMAL', 890, 'ACTIVE', '2019-12-10 10:56:53', '0000-00-00 00:00:00'), (63, 'NORMAL', 891, 'ACTIVE', '2019-12-10 14:10:04', '0000-00-00 00:00:00'), (64, 'NORMAL', 892, 'ACTIVE', '2019-12-12 17:57:11', '0000-00-00 00:00:00'), (65, 'NORMAL', 893, 'ACTIVE', '2019-12-12 20:47:16', '0000-00-00 00:00:00'), (66, 'NORMAL', 894, 'ACTIVE', '2019-12-16 13:18:50', '0000-00-00 00:00:00'), (67, 'NORMAL', 895, 'ACTIVE', '2019-12-18 12:11:38', '0000-00-00 00:00:00'), (68, 'NORMAL', 896, 'ACTIVE', '2019-12-18 12:12:19', '0000-00-00 00:00:00'), (69, 'PROFORMA', 7, 'ACTIVE', '2019-12-24 12:19:07', '0000-00-00 00:00:00'), (70, 'NORMAL', 897, 'ACTIVE', '2019-12-24 12:27:37', '0000-00-00 00:00:00'), (71, 'NORMAL', 898, 'ACTIVE', '2019-12-24 12:30:39', '0000-00-00 00:00:00'), (72, 'NORMAL', 898, 'ACTIVE', '2019-12-24 12:30:44', '0000-00-00 00:00:00'), (73, 'NORMAL', 899, 'ACTIVE', '2019-12-24 13:13:01', '0000-00-00 00:00:00'), (74, 'NORMAL', 900, 'ACTIVE', '2019-12-24 13:42:38', '0000-00-00 00:00:00'), (75, 'NORMAL', 901, 'ACTIVE', '2019-12-24 13:44:50', '0000-00-00 00:00:00'), (76, 'NORMAL', 902, 'ACTIVE', '2019-12-26 12:57:40', '0000-00-00 00:00:00'), (77, 'NORMAL', 903, 'ACTIVE', '2019-12-26 13:07:42', '0000-00-00 00:00:00'), (78, 'NORMAL', 904, 'ACTIVE', '2019-12-27 18:30:27', '0000-00-00 00:00:00'), (79, 'NORMAL', 905, 'ACTIVE', '2019-12-28 11:38:27', '0000-00-00 00:00:00'), (80, 'CASH', 845, 'ACTIVE', '2019-12-28 12:06:04', '0000-00-00 00:00:00'), (81, 'NORMAL', 906, 'ACTIVE', '2020-01-03 12:51:32', '0000-00-00 00:00:00'), (82, 'NORMAL', 907, 'ACTIVE', '2020-01-03 13:16:21', '0000-00-00 00:00:00'), (83, 'CASH', 846, 'ACTIVE', '2020-01-03 13:17:48', '0000-00-00 00:00:00'), (84, 'PROFORMA', 8, 'ACTIVE', '2020-01-03 16:01:09', '0000-00-00 00:00:00'), (85, 'NORMAL', 908, 'ACTIVE', '2020-01-03 16:24:58', '0000-00-00 00:00:00'), (86, 'NORMAL', 909, 'ACTIVE', '2020-01-06 13:08:05', '0000-00-00 00:00:00'), (87, 'NORMAL', 910, 'ACTIVE', '2020-01-06 17:28:52', '0000-00-00 00:00:00'), (88, 'PROFORMA', 9, 'ACTIVE', '2020-01-08 11:56:43', '0000-00-00 00:00:00'), (89, 'NORMAL', 911, 'ACTIVE', '2020-01-09 17:11:43', '0000-00-00 00:00:00'), (90, 'NORMAL', 912, 'ACTIVE', '2020-01-10 12:11:59', '0000-00-00 00:00:00'), (91, 'NORMAL', 913, 'ACTIVE', '2020-01-13 15:23:16', '0000-00-00 00:00:00'), (92, 'NORMAL', 914, 'ACTIVE', '2020-01-14 17:45:58', '0000-00-00 00:00:00'), (93, 'NORMAL', 915, 'ACTIVE', '2020-01-16 14:10:18', '0000-00-00 00:00:00'), (94, 'NORMAL', 916, 'ACTIVE', '2020-01-17 11:05:39', '0000-00-00 00:00:00'), (95, 'NORMAL', 917, 'ACTIVE', '2020-01-17 17:52:35', '0000-00-00 00:00:00'), (96, 'PROFORMA', 10, 'ACTIVE', '2020-01-23 12:12:05', '0000-00-00 00:00:00'), (97, 'CASH', 847, 'ACTIVE', '2020-01-27 17:35:55', '0000-00-00 00:00:00'), (98, 'NORMAL', 918, 'ACTIVE', '2020-01-29 17:58:09', '0000-00-00 00:00:00'), (99, 'NORMAL', 919, 'ACTIVE', '2020-01-29 18:00:11', '0000-00-00 00:00:00'), (100, 'NORMAL', 920, 'ACTIVE', '2020-01-29 18:04:18', '0000-00-00 00:00:00'), (101, 'NORMAL', 921, 'ACTIVE', '2020-02-04 18:20:51', '0000-00-00 00:00:00'), (102, 'PROFORMA', 11, 'ACTIVE', '2020-02-05 15:34:20', '0000-00-00 00:00:00'), (103, 'PROFORMA', 12, 'ACTIVE', '2020-02-05 16:00:23', '0000-00-00 00:00:00'), (104, 'NORMAL', 922, 'ACTIVE', '2020-02-06 18:05:33', '0000-00-00 00:00:00'), (105, 'NORMAL', 923, 'ACTIVE', '2020-02-10 13:32:23', '0000-00-00 00:00:00'), (106, 'NORMAL', 924, 'ACTIVE', '2020-02-10 13:35:43', '0000-00-00 00:00:00'), (107, 'NORMAL', 925, 'ACTIVE', '2020-02-10 18:32:48', '0000-00-00 00:00:00'), (108, 'NORMAL', 926, 'ACTIVE', '2020-02-10 18:47:00', '0000-00-00 00:00:00'), (109, 'NORMAL', 927, 'ACTIVE', '2020-02-10 18:50:59', '0000-00-00 00:00:00'), (110, 'NORMAL', 928, 'ACTIVE', '2020-02-11 16:07:41', '0000-00-00 00:00:00'), (111, 'NORMAL', 929, 'ACTIVE', '2020-02-14 13:17:01', '0000-00-00 00:00:00'), (112, 'NORMAL', 930, 'ACTIVE', '2020-02-14 13:19:25', '0000-00-00 00:00:00'), (113, 'NORMAL', 931, 'ACTIVE', '2020-02-14 13:23:38', '0000-00-00 00:00:00'), (114, 'PROFORMA', 13, 'ACTIVE', '2020-02-14 13:36:43', '0000-00-00 00:00:00'), (115, 'NORMAL', 932, 'ACTIVE', '2020-02-17 17:02:38', '0000-00-00 00:00:00'), (116, 'NORMAL', 933, 'ACTIVE', '2020-02-19 17:58:24', '0000-00-00 00:00:00'), (117, 'NORMAL', 934, 'ACTIVE', '2020-02-20 15:03:52', '0000-00-00 00:00:00'), (118, 'NORMAL', 935, 'ACTIVE', '2020-02-27 11:39:14', '0000-00-00 00:00:00'), (119, 'NORMAL', 936, 'ACTIVE', '2020-03-05 16:03:17', '0000-00-00 00:00:00'), (120, 'NORMAL', 937, 'ACTIVE', '2020-03-09 10:42:58', '0000-00-00 00:00:00'), (121, 'NORMAL', 938, 'ACTIVE', '2020-03-09 11:08:34', '0000-00-00 00:00:00'), (122, 'NORMAL', 938, 'ACTIVE', '2020-03-09 11:08:48', '0000-00-00 00:00:00'), (123, 'NORMAL', 939, 'ACTIVE', '2020-03-13 18:37:25', '0000-00-00 00:00:00'), (124, 'NORMAL', 939, 'ACTIVE', '2020-03-13 18:37:41', '0000-00-00 00:00:00'), (125, 'NORMAL', 940, 'ACTIVE', '2020-03-13 18:42:51', '0000-00-00 00:00:00'), (126, 'NORMAL', 941, 'ACTIVE', '2020-03-17 12:12:20', '0000-00-00 00:00:00'), (127, 'NORMAL', 942, 'ACTIVE', '2020-03-17 12:17:41', '0000-00-00 00:00:00'), (128, 'NORMAL', 943, 'ACTIVE', '2020-03-18 18:53:32', '0000-00-00 00:00:00'), (129, 'NORMAL', 944, 'ACTIVE', '2020-04-06 11:46:17', '0000-00-00 00:00:00'), (130, 'NORMAL', 945, 'ACTIVE', '2020-05-07 15:40:08', '0000-00-00 00:00:00'), (131, 'NORMAL', 946, 'ACTIVE', '2020-05-13 12:51:46', '0000-00-00 00:00:00'), (132, 'NORMAL', 947, 'ACTIVE', '2020-05-13 12:56:02', '0000-00-00 00:00:00'), (133, 'NORMAL', 948, 'ACTIVE', '2020-05-19 12:05:25', '0000-00-00 00:00:00'), (134, 'NORMAL', 949, 'ACTIVE', '2020-05-19 14:05:13', '0000-00-00 00:00:00'), (135, 'NORMAL', 950, 'ACTIVE', '2020-05-19 18:35:36', '0000-00-00 00:00:00'), (136, 'NORMAL', 951, 'ACTIVE', '2020-05-20 12:10:50', '0000-00-00 00:00:00'), (137, 'NORMAL', 952, 'ACTIVE', '2020-05-22 15:22:04', '0000-00-00 00:00:00'), (138, 'NORMAL', 953, 'ACTIVE', '2020-05-25 12:53:36', '0000-00-00 00:00:00'), (139, 'NORMAL', 954, 'ACTIVE', '2020-05-26 15:13:18', '0000-00-00 00:00:00'), (140, 'NORMAL', 954, 'ACTIVE', '2020-05-26 15:13:18', '0000-00-00 00:00:00'), (141, 'NORMAL', 954, 'ACTIVE', '2020-05-26 15:13:18', '0000-00-00 00:00:00'), (142, 'NORMAL', 954, 'ACTIVE', '2020-05-26 15:13:19', '0000-00-00 00:00:00'), (143, 'NORMAL', 954, 'ACTIVE', '2020-05-26 15:13:19', '0000-00-00 00:00:00'), (144, 'NORMAL', 955, 'ACTIVE', '2020-05-29 13:30:47', '0000-00-00 00:00:00'), (145, 'NORMAL', 956, 'ACTIVE', '2020-05-29 14:00:49', '0000-00-00 00:00:00'), (146, 'NORMAL', 957, 'ACTIVE', '2020-05-30 13:50:50', '0000-00-00 00:00:00'), (147, 'NORMAL', 958, 'ACTIVE', '2020-06-02 13:58:54', '0000-00-00 00:00:00'), (148, 'NORMAL', 959, 'ACTIVE', '2020-06-02 14:00:50', '0000-00-00 00:00:00'), (149, 'NORMAL', 960, 'ACTIVE', '2020-06-02 14:13:48', '0000-00-00 00:00:00'), (150, 'NORMAL', 961, 'ACTIVE', '2020-06-02 14:26:23', '0000-00-00 00:00:00'), (151, 'NORMAL', 962, 'ACTIVE', '2020-06-02 14:30:40', '0000-00-00 00:00:00'), (152, 'NORMAL', 963, 'ACTIVE', '2020-06-04 13:42:37', '0000-00-00 00:00:00'), (153, 'NORMAL', 964, 'ACTIVE', '2020-06-08 16:16:34', '0000-00-00 00:00:00'), (154, 'NORMAL', 965, 'ACTIVE', '2020-06-11 12:13:26', '0000-00-00 00:00:00'), (155, 'NORMAL', 966, 'ACTIVE', '2020-06-11 13:01:28', '0000-00-00 00:00:00'), (156, 'NORMAL', 967, 'ACTIVE', '2020-06-12 15:27:23', '0000-00-00 00:00:00'), (157, 'NORMAL', 968, 'ACTIVE', '2020-06-15 13:29:16', '0000-00-00 00:00:00'), (158, 'NORMAL', 969, 'ACTIVE', '2020-06-15 13:33:45', '0000-00-00 00:00:00'), (159, 'NORMAL', 970, 'ACTIVE', '2020-06-15 13:36:59', '0000-00-00 00:00:00'), (160, 'NORMAL', 971, 'ACTIVE', '2020-06-16 12:13:42', '0000-00-00 00:00:00'), (161, 'NORMAL', 972, 'ACTIVE', '2020-06-17 15:51:00', '0000-00-00 00:00:00'), (162, 'NORMAL', 973, 'ACTIVE', '2020-06-18 15:06:00', '0000-00-00 00:00:00'), (163, 'NORMAL', 974, 'ACTIVE', '2020-06-19 12:58:21', '0000-00-00 00:00:00'), (164, 'NORMAL', 975, 'ACTIVE', '2020-06-25 18:36:09', '0000-00-00 00:00:00'), (165, 'NORMAL', 976, 'ACTIVE', '2020-06-30 12:30:02', '0000-00-00 00:00:00'), (166, 'NORMAL', 977, 'ACTIVE', '2020-06-30 15:59:10', '0000-00-00 00:00:00'), (167, 'NORMAL', 978, 'ACTIVE', '2020-07-08 12:13:26', '0000-00-00 00:00:00'), (168, 'NORMAL', 979, 'ACTIVE', '2020-07-09 11:40:30', '0000-00-00 00:00:00'), (169, 'NORMAL', 980, 'ACTIVE', '2020-07-10 12:36:51', '0000-00-00 00:00:00'), (170, 'NORMAL', 981, 'ACTIVE', '2020-07-10 14:24:52', '0000-00-00 00:00:00'), (171, 'NORMAL', 982, 'ACTIVE', '2020-07-10 16:09:13', '0000-00-00 00:00:00'), (172, 'PROFORMA', 14, 'ACTIVE', '2020-07-14 13:29:55', '0000-00-00 00:00:00'), (173, 'NORMAL', 983, 'ACTIVE', '2020-07-14 18:33:29', '0000-00-00 00:00:00'), (174, 'NORMAL', 984, 'ACTIVE', '2020-07-16 11:28:44', '0000-00-00 00:00:00'), (175, 'NORMAL', 985, 'ACTIVE', '2020-07-17 13:56:48', '0000-00-00 00:00:00'), (176, 'NORMAL', 986, 'ACTIVE', '2020-07-22 15:43:38', '0000-00-00 00:00:00'), (177, 'NORMAL', 987, 'ACTIVE', '2020-07-24 13:43:06', '0000-00-00 00:00:00'), (178, 'NORMAL', 988, 'ACTIVE', '2020-07-25 18:58:20', '0000-00-00 00:00:00'), (179, 'NORMAL', 989, 'ACTIVE', '2020-07-27 15:55:29', '0000-00-00 00:00:00'), (180, 'NORMAL', 990, 'ACTIVE', '2020-07-30 17:58:56', '0000-00-00 00:00:00'), (181, 'NORMAL', 991, 'ACTIVE', '2020-08-03 16:26:13', '0000-00-00 00:00:00'), (182, 'CASH', 848, 'ACTIVE', '2020-08-06 13:09:18', '0000-00-00 00:00:00'), (183, 'NORMAL', 992, 'ACTIVE', '2020-08-07 11:32:08', '0000-00-00 00:00:00'), (184, 'NORMAL', 993, 'ACTIVE', '2020-08-07 12:41:07', '0000-00-00 00:00:00'), (185, 'NORMAL', 994, 'ACTIVE', '2020-08-10 11:59:10', '0000-00-00 00:00:00'), (186, 'NORMAL', 995, 'ACTIVE', '2020-08-11 12:31:58', '0000-00-00 00:00:00'), (187, 'NORMAL', 996, 'ACTIVE', '2020-08-12 15:30:23', '0000-00-00 00:00:00'), (188, 'NORMAL', 997, 'ACTIVE', '2020-08-12 15:31:50', '0000-00-00 00:00:00'), (189, 'NORMAL', 998, 'ACTIVE', '2020-08-17 19:55:38', '0000-00-00 00:00:00'), (190, 'NORMAL', 998, 'ACTIVE', '2020-08-17 19:56:04', '0000-00-00 00:00:00'), (191, 'NORMAL', 999, 'ACTIVE', '2020-08-19 14:35:22', '0000-00-00 00:00:00'), (192, 'NORMAL', 1000, 'ACTIVE', '2020-08-29 12:58:58', '0000-00-00 00:00:00'), (193, 'NORMAL', 1001, 'ACTIVE', '2020-09-01 12:49:55', '0000-00-00 00:00:00'), (194, 'NORMAL', 1002, 'ACTIVE', '2020-09-04 16:16:48', '0000-00-00 00:00:00'), (195, 'NORMAL', 1003, 'ACTIVE', '2020-09-07 14:30:23', '0000-00-00 00:00:00'), (196, 'NORMAL', 1004, 'ACTIVE', '2020-09-07 14:38:30', '0000-00-00 00:00:00'), (197, 'NORMAL', 1005, 'ACTIVE', '2020-09-07 14:40:55', '0000-00-00 00:00:00'), (198, 'NORMAL', 1006, 'ACTIVE', '2020-09-14 18:43:39', '0000-00-00 00:00:00'), (199, 'NORMAL', 1007, 'ACTIVE', '2020-09-18 18:28:07', '0000-00-00 00:00:00'), (200, 'CASH', 849, 'ACTIVE', '2020-09-22 17:02:45', '0000-00-00 00:00:00'), (201, 'NORMAL', 1008, 'ACTIVE', '2020-09-24 13:32:43', '0000-00-00 00:00:00'), (202, 'NORMAL', 1009, 'ACTIVE', '2020-09-25 15:47:19', '0000-00-00 00:00:00'), (203, 'NORMAL', 1010, 'ACTIVE', '2020-09-28 17:24:25', '0000-00-00 00:00:00'), (204, 'NORMAL', 1011, 'ACTIVE', '2020-10-01 13:44:03', '0000-00-00 00:00:00'), (205, 'NORMAL', 1012, 'ACTIVE', '2020-10-05 16:23:53', '0000-00-00 00:00:00'), (206, 'NORMAL', 1013, 'ACTIVE', '2020-10-06 11:23:11', '0000-00-00 00:00:00'), (207, 'NORMAL', 1014, 'ACTIVE', '2020-10-07 13:53:35', '0000-00-00 00:00:00'), (208, 'NORMAL', 1015, 'ACTIVE', '2020-10-08 10:59:14', '0000-00-00 00:00:00'), (209, 'NORMAL', 1016, 'ACTIVE', '2020-10-09 15:18:50', '0000-00-00 00:00:00'), (210, 'NORMAL', 1017, 'ACTIVE', '2020-10-27 10:48:47', '0000-00-00 00:00:00'), (211, 'NORMAL', 1018, 'ACTIVE', '2020-10-27 10:50:13', '0000-00-00 00:00:00'), (212, 'NORMAL', 1019, 'ACTIVE', '2020-11-06 18:12:21', '0000-00-00 00:00:00'), (213, 'NORMAL', 1020, 'ACTIVE', '2020-11-09 12:43:25', '0000-00-00 00:00:00'), (214, 'NORMAL', 1021, 'ACTIVE', '2020-11-10 12:55:58', '0000-00-00 00:00:00'), (215, 'NORMAL', 1022, 'ACTIVE', '2020-11-10 12:58:48', '0000-00-00 00:00:00'), (216, 'NORMAL', 1023, 'ACTIVE', '2020-11-10 17:44:53', '0000-00-00 00:00:00'), (217, 'NORMAL', 1024, 'ACTIVE', '2020-11-18 17:19:53', '0000-00-00 00:00:00'), (218, 'NORMAL', 1025, 'ACTIVE', '2020-11-19 13:00:34', '0000-00-00 00:00:00'), (219, 'NORMAL', 1026, 'ACTIVE', '2020-11-20 15:26:48', '0000-00-00 00:00:00'), (220, 'CASH', 850, 'ACTIVE', '2020-11-28 18:22:06', '0000-00-00 00:00:00'), (221, 'NORMAL', 1027, 'ACTIVE', '2020-12-02 12:52:05', '0000-00-00 00:00:00'), (222, 'NORMAL', 1028, 'ACTIVE', '2020-12-03 18:13:26', '0000-00-00 00:00:00'), (223, 'NORMAL', 1029, 'ACTIVE', '2020-12-07 15:34:20', '0000-00-00 00:00:00'), (224, 'NORMAL', 1030, 'ACTIVE', '2020-12-07 17:27:19', '0000-00-00 00:00:00'), (225, 'NORMAL', 1031, 'ACTIVE', '2020-12-09 11:55:06', '0000-00-00 00:00:00'), (226, 'NORMAL', 1032, 'ACTIVE', '2020-12-10 11:00:09', '0000-00-00 00:00:00'), (227, 'CASH', 851, 'ACTIVE', '2020-12-11 18:05:02', '0000-00-00 00:00:00'), (228, 'NORMAL', 1033, 'ACTIVE', '2020-12-14 12:05:32', '0000-00-00 00:00:00'), (229, 'NORMAL', 1034, 'ACTIVE', '2020-12-15 17:05:37', '0000-00-00 00:00:00'), (230, 'NORMAL', 1035, 'ACTIVE', '2020-12-24 10:27:51', '0000-00-00 00:00:00'), (231, 'NORMAL', 1036, 'ACTIVE', '2020-12-25 15:15:41', '0000-00-00 00:00:00'), (232, 'NORMAL', 1037, 'ACTIVE', '2020-12-28 13:07:02', '0000-00-00 00:00:00'), (233, 'NORMAL', 1038, 'ACTIVE', '2020-12-29 13:05:30', '0000-00-00 00:00:00'), (234, 'NORMAL', 1039, 'ACTIVE', '2020-12-29 14:28:43', '0000-00-00 00:00:00'), (235, 'NORMAL', 1040, 'ACTIVE', '2021-01-06 12:54:58', '0000-00-00 00:00:00'), (236, 'CASH', 852, 'ACTIVE', '2021-01-15 13:01:04', '0000-00-00 00:00:00'), (237, 'NORMAL', 1041, 'ACTIVE', '2021-01-18 15:58:47', '0000-00-00 00:00:00'), (238, 'NORMAL', 1042, 'ACTIVE', '2021-01-19 11:19:36', '0000-00-00 00:00:00'), (239, 'CASH', 853, 'ACTIVE', '2021-01-25 13:25:23', '0000-00-00 00:00:00'), (240, 'NORMAL', 1043, 'ACTIVE', '2021-01-26 11:15:20', '0000-00-00 00:00:00'), (241, 'NORMAL', 1044, 'ACTIVE', '2021-01-26 11:17:02', '0000-00-00 00:00:00'), (242, 'NORMAL', 1045, 'ACTIVE', '2021-01-29 12:54:30', '0000-00-00 00:00:00'), (243, 'NORMAL', 1046, 'ACTIVE', '2021-01-29 12:58:34', '0000-00-00 00:00:00'), (244, 'CASH', 854, 'ACTIVE', '2021-02-04 19:05:42', '0000-00-00 00:00:00'), (245, 'NORMAL', 1047, 'ACTIVE', '2021-02-10 16:40:19', '0000-00-00 00:00:00'), (246, 'NORMAL', 1048, 'ACTIVE', '2021-02-10 16:41:35', '0000-00-00 00:00:00'), (247, 'NORMAL', 1049, 'ACTIVE', '2021-02-11 17:12:22', '0000-00-00 00:00:00'), (248, 'CASH', 855, 'ACTIVE', '2021-02-18 18:22:05', '0000-00-00 00:00:00'), (249, 'NORMAL', 1050, 'ACTIVE', '2021-02-22 15:32:39', '0000-00-00 00:00:00'), (250, 'NORMAL', 1051, 'ACTIVE', '2021-02-22 15:34:23', '0000-00-00 00:00:00'), (251, 'NORMAL', 1052, 'ACTIVE', '2021-02-25 11:01:21', '0000-00-00 00:00:00'), (252, 'CASH', 856, 'ACTIVE', '2021-03-03 12:44:52', '0000-00-00 00:00:00'), (253, 'CASH', 857, 'ACTIVE', '2021-03-03 13:04:39', '0000-00-00 00:00:00'), (254, 'CASH', 858, 'ACTIVE', '2021-03-03 13:10:00', '0000-00-00 00:00:00'), (255, 'NORMAL', 1053, 'ACTIVE', '2021-03-17 16:02:23', '0000-00-00 00:00:00'), (256, 'NORMAL', 1054, 'ACTIVE', '2021-03-24 18:17:38', '0000-00-00 00:00:00'), (257, 'NORMAL', 1055, 'ACTIVE', '2021-03-31 15:12:51', '0000-00-00 00:00:00'), (258, 'NORMAL', 1056, 'ACTIVE', '2021-04-01 13:31:59', '0000-00-00 00:00:00'), (259, 'NORMAL', 1057, 'ACTIVE', '2021-04-06 16:48:18', '0000-00-00 00:00:00'), (260, 'CASH', 859, 'ACTIVE', '2021-04-09 19:15:23', '0000-00-00 00:00:00'), (261, 'CASH', 860, 'ACTIVE', '2021-04-12 12:21:59', '0000-00-00 00:00:00'), (262, 'NORMAL', 1058, 'ACTIVE', '2021-04-12 16:48:55', '0000-00-00 00:00:00'), (263, 'NORMAL', 1059, 'ACTIVE', '2021-04-22 10:16:46', '0000-00-00 00:00:00'), (264, 'NORMAL', 1060, 'ACTIVE', '2021-05-04 13:55:39', '0000-00-00 00:00:00'), (265, 'NORMAL', 1061, 'ACTIVE', '2021-05-05 15:32:06', '0000-00-00 00:00:00'), (266, 'NORMAL', 1062, 'ACTIVE', '2021-05-05 15:50:33', '0000-00-00 00:00:00'), (267, 'NORMAL', 1063, 'ACTIVE', '2021-05-13 14:29:42', '0000-00-00 00:00:00'), (268, 'NORMAL', 1064, 'ACTIVE', '2021-05-14 19:43:39', '0000-00-00 00:00:00'), (269, 'CASH', 861, 'ACTIVE', '2021-05-15 16:54:07', '0000-00-00 00:00:00'), (270, 'NORMAL', 1065, 'ACTIVE', '2021-05-19 12:38:26', '0000-00-00 00:00:00'), (271, 'NORMAL', 1066, 'ACTIVE', '2021-06-03 17:12:06', '0000-00-00 00:00:00'), (272, 'NORMAL', 1067, 'ACTIVE', '2021-06-05 13:19:20', '0000-00-00 00:00:00'), (273, 'NORMAL', 1068, 'ACTIVE', '2021-06-08 16:46:53', '0000-00-00 00:00:00'), (274, 'NORMAL', 1069, 'ACTIVE', '2021-06-08 16:48:35', '0000-00-00 00:00:00'), (275, 'NORMAL', 1070, 'ACTIVE', '2021-06-12 13:20:08', '0000-00-00 00:00:00'), (276, 'NORMAL', 1071, 'ACTIVE', '2021-06-16 11:34:20', '0000-00-00 00:00:00'), (277, 'CASH', 862, 'ACTIVE', '2021-06-16 11:59:54', '0000-00-00 00:00:00'), (278, 'NORMAL', 1072, 'ACTIVE', '2021-06-16 12:59:46', '0000-00-00 00:00:00'), (279, 'NORMAL', 1073, 'ACTIVE', '2021-06-23 17:52:28', '0000-00-00 00:00:00'), (280, 'NORMAL', 1074, 'ACTIVE', '2021-06-28 14:00:40', '0000-00-00 00:00:00'), (281, 'NORMAL', 1075, 'ACTIVE', '2021-07-12 13:49:50', '0000-00-00 00:00:00'), (282, 'NORMAL', 1076, 'ACTIVE', '2021-07-12 14:06:43', '0000-00-00 00:00:00'), (283, 'CASH', 863, 'ACTIVE', '2021-07-12 20:10:00', '0000-00-00 00:00:00'), (284, 'NORMAL', 1077, 'ACTIVE', '2021-07-21 17:13:02', '0000-00-00 00:00:00'), (285, 'NORMAL', 1078, 'ACTIVE', '2021-07-23 16:48:11', '0000-00-00 00:00:00'), (286, 'NORMAL', 1079, 'ACTIVE', '2021-07-28 11:24:15', '0000-00-00 00:00:00'), (287, 'NORMAL', 1080, 'ACTIVE', '2021-08-02 14:28:28', '0000-00-00 00:00:00'), (288, 'NORMAL', 1081, 'ACTIVE', '2021-08-02 14:30:11', '0000-00-00 00:00:00'), (289, 'NORMAL', 1082, 'ACTIVE', '2021-08-02 14:42:17', '0000-00-00 00:00:00'), (290, 'NORMAL', 1083, 'ACTIVE', '2021-08-02 18:50:36', '0000-00-00 00:00:00'), (291, 'NORMAL', 1084, 'ACTIVE', '2021-08-02 20:04:41', '0000-00-00 00:00:00'), (292, 'CASH', 864, 'ACTIVE', '2021-08-04 11:10:34', '0000-00-00 00:00:00'), (293, 'CASH', 865, 'ACTIVE', '2021-08-04 14:30:32', '0000-00-00 00:00:00'), (294, 'NORMAL', 1085, 'ACTIVE', '2021-08-04 16:31:21', '0000-00-00 00:00:00'), (295, 'CASH', 866, 'ACTIVE', '2021-08-04 18:21:47', '0000-00-00 00:00:00'), (296, 'NORMAL', 1086, 'ACTIVE', '2021-08-06 17:21:10', '0000-00-00 00:00:00'), (297, 'NORMAL', 1087, 'ACTIVE', '2021-08-06 17:44:04', '0000-00-00 00:00:00'), (298, 'NORMAL', 1088, 'ACTIVE', '2021-08-10 12:04:06', '0000-00-00 00:00:00'), (299, 'NORMAL', 1089, 'ACTIVE', '2021-08-11 12:19:41', '0000-00-00 00:00:00'), (300, 'NORMAL', 1090, 'ACTIVE', '2021-08-11 18:03:31', '0000-00-00 00:00:00'), (301, 'NORMAL', 1091, 'ACTIVE', '2021-08-11 18:05:43', '0000-00-00 00:00:00'), (302, 'NORMAL', 1092, 'ACTIVE', '2021-08-13 17:51:47', '0000-00-00 00:00:00'), (303, 'NORMAL', 1093, 'ACTIVE', '2021-08-13 18:22:12', '0000-00-00 00:00:00'), (304, 'NORMAL', 1094, 'ACTIVE', '2021-08-19 12:48:27', '0000-00-00 00:00:00'), (305, 'NORMAL', 1095, 'ACTIVE', '2021-08-20 12:24:23', '0000-00-00 00:00:00'), (306, 'NORMAL', 1096, 'ACTIVE', '2021-08-25 13:14:44', '0000-00-00 00:00:00'), (307, 'NORMAL', 1097, 'ACTIVE', '2021-08-30 16:49:08', '0000-00-00 00:00:00'), (308, 'CASH', 867, 'ACTIVE', '2021-08-30 19:01:31', '0000-00-00 00:00:00'), (309, 'NORMAL', 1098, 'ACTIVE', '2021-08-31 11:25:02', '0000-00-00 00:00:00'), (310, 'NORMAL', 1099, 'ACTIVE', '2021-08-31 15:31:37', '0000-00-00 00:00:00'), (311, 'CASH', 868, 'ACTIVE', '2021-09-06 13:43:02', '0000-00-00 00:00:00'), (312, 'NORMAL', 1100, 'ACTIVE', '2021-09-06 18:20:24', '0000-00-00 00:00:00'), (313, 'NORMAL', 1101, 'ACTIVE', '2021-09-08 11:02:32', '0000-00-00 00:00:00'), (314, 'CASH', 869, 'ACTIVE', '2021-09-20 13:41:52', '0000-00-00 00:00:00'), (315, 'NORMAL', 1102, 'ACTIVE', '2021-09-23 16:40:12', '0000-00-00 00:00:00'), (316, 'NORMAL', 1103, 'ACTIVE', '2021-10-06 18:27:35', '0000-00-00 00:00:00'), (317, 'CASH', 870, 'ACTIVE', '2021-10-11 11:32:47', '0000-00-00 00:00:00'), (318, 'CASH', 870, 'ACTIVE', '2021-10-11 11:32:51', '0000-00-00 00:00:00'), (319, 'CASH', 870, 'ACTIVE', '2021-10-11 11:32:56', '0000-00-00 00:00:00'), (320, 'NORMAL', 1104, 'ACTIVE', '2021-10-11 17:54:47', '0000-00-00 00:00:00'), (321, 'CASH', 871, 'ACTIVE', '2021-10-13 17:07:28', '0000-00-00 00:00:00'), (322, 'NORMAL', 1105, 'ACTIVE', '2021-10-19 19:22:09', '0000-00-00 00:00:00'), (323, 'NORMAL', 1106, 'ACTIVE', '2021-10-19 19:30:46', '0000-00-00 00:00:00'), (324, 'NORMAL', 1107, 'ACTIVE', '2021-10-19 19:36:22', '0000-00-00 00:00:00'), (325, 'NORMAL', 1108, 'ACTIVE', '2021-10-20 11:06:15', '0000-00-00 00:00:00'), (326, 'NORMAL', 1109, 'ACTIVE', '2021-10-22 18:40:48', '0000-00-00 00:00:00'), (327, 'NORMAL', 1110, 'ACTIVE', '2021-10-28 12:38:04', '0000-00-00 00:00:00'), (328, 'NORMAL', 1111, 'ACTIVE', '2021-10-30 18:11:44', '0000-00-00 00:00:00'), (329, 'NORMAL', 1112, 'ACTIVE', '2021-11-08 15:47:29', '0000-00-00 00:00:00'), (330, 'NORMAL', 1113, 'ACTIVE', '2021-11-08 16:17:23', '0000-00-00 00:00:00'), (331, 'NORMAL', 1114, 'ACTIVE', '2021-11-09 11:17:11', '0000-00-00 00:00:00'), (332, 'NORMAL', 1115, 'ACTIVE', '2021-11-23 13:35:39', '0000-00-00 00:00:00'), (333, 'NORMAL', 1116, 'ACTIVE', '2021-11-24 17:29:50', '0000-00-00 00:00:00'), (334, 'NORMAL', 1117, 'ACTIVE', '2021-11-25 13:51:48', '0000-00-00 00:00:00'), (335, 'NORMAL', 1118, 'ACTIVE', '2021-11-25 13:52:54', '0000-00-00 00:00:00'), (336, 'NORMAL', 1119, 'ACTIVE', '2021-11-30 17:12:20', '0000-00-00 00:00:00'), (337, 'NORMAL', 1120, 'ACTIVE', '2021-12-01 16:41:21', '0000-00-00 00:00:00'), (338, 'NORMAL', 1121, 'ACTIVE', '2021-12-03 11:35:21', '0000-00-00 00:00:00'), (339, 'NORMAL', 1122, 'ACTIVE', '2021-12-03 13:56:05', '0000-00-00 00:00:00'), (340, 'NORMAL', 1123, 'ACTIVE', '2021-12-11 13:15:55', '0000-00-00 00:00:00'), (341, 'NORMAL', 1124, 'ACTIVE', '2022-01-06 17:49:35', '0000-00-00 00:00:00'), (342, 'NORMAL', 1125, 'ACTIVE', '2022-01-20 17:46:33', '0000-00-00 00:00:00'), (343, 'NORMAL', 1126, 'ACTIVE', '2022-01-24 13:42:35', '0000-00-00 00:00:00'), (344, 'NORMAL', 1127, 'ACTIVE', '2022-01-29 13:08:18', '0000-00-00 00:00:00'), (345, 'NORMAL', 1128, 'ACTIVE', '2022-02-01 11:08:22', '0000-00-00 00:00:00'), (346, 'NORMAL', 1129, 'ACTIVE', '2022-02-01 11:15:10', '0000-00-00 00:00:00'), (347, 'NORMAL', 1130, 'ACTIVE', '2022-02-04 11:24:03', '0000-00-00 00:00:00'), (348, 'NORMAL', 1131, 'ACTIVE', '2022-02-08 16:09:49', '0000-00-00 00:00:00'), (349, 'NORMAL', 1132, 'ACTIVE', '2022-02-09 11:53:50', '0000-00-00 00:00:00'), (350, 'NORMAL', 1133, 'ACTIVE', '2022-02-11 16:16:24', '0000-00-00 00:00:00'), (351, 'NORMAL', 1134, 'ACTIVE', '2022-02-15 13:33:18', '0000-00-00 00:00:00'), (352, 'NORMAL', 1135, 'ACTIVE', '2022-02-17 11:31:29', '0000-00-00 00:00:00'), (353, 'NORMAL', 1136, 'ACTIVE', '2022-02-18 17:33:44', '0000-00-00 00:00:00'), (354, 'NORMAL', 1137, 'ACTIVE', '2022-02-18 17:34:34', '0000-00-00 00:00:00'), (355, 'NORMAL', 1138, 'ACTIVE', '2022-02-21 11:28:04', '0000-00-00 00:00:00'), (356, 'NORMAL', 1139, 'ACTIVE', '2022-02-22 11:32:16', '0000-00-00 00:00:00'), (357, 'NORMAL', 1140, 'ACTIVE', '2022-03-02 18:03:14', '0000-00-00 00:00:00'), (358, 'NORMAL', 1141, 'ACTIVE', '2022-03-03 16:13:37', '0000-00-00 00:00:00'), (359, 'NORMAL', 1142, 'ACTIVE', '2022-03-10 12:26:57', '0000-00-00 00:00:00'), (360, 'NORMAL', 1143, 'ACTIVE', '2022-03-24 16:55:29', '0000-00-00 00:00:00'), (361, 'NORMAL', 1144, 'ACTIVE', '2022-03-31 13:09:27', '0000-00-00 00:00:00'), (362, 'NORMAL', 1145, 'ACTIVE', '2022-03-31 13:12:48', '0000-00-00 00:00:00'), (363, 'NORMAL', 1146, 'ACTIVE', '2022-04-04 17:03:08', '0000-00-00 00:00:00'), (364, 'NORMAL', 1147, 'ACTIVE', '2022-04-05 13:44:20', '0000-00-00 00:00:00'), (365, 'NORMAL', 1148, 'ACTIVE', '2022-04-12 10:17:19', '0000-00-00 00:00:00'), (366, 'NORMAL', 1149, 'ACTIVE', '2022-04-20 11:56:19', '0000-00-00 00:00:00'), (367, 'NORMAL', 1150, 'ACTIVE', '2022-05-12 16:48:54', '0000-00-00 00:00:00'), (368, 'NORMAL', 1151, 'ACTIVE', '2022-05-12 17:31:54', '0000-00-00 00:00:00'), (369, 'NORMAL', 1152, 'ACTIVE', '2022-05-16 11:32:10', '0000-00-00 00:00:00'), (370, 'NORMAL', 1153, 'ACTIVE', '2022-05-20 11:41:18', '0000-00-00 00:00:00'), (371, 'NORMAL', 1154, 'ACTIVE', '2022-05-20 12:22:22', '0000-00-00 00:00:00'), (372, 'NORMAL', 1155, 'ACTIVE', '2022-05-31 12:44:10', '0000-00-00 00:00:00'), (373, 'NORMAL', 1156, 'ACTIVE', '2022-06-01 13:00:05', '0000-00-00 00:00:00'), (374, 'NORMAL', 1157, 'ACTIVE', '2022-06-01 13:41:10', '0000-00-00 00:00:00'), (375, 'NORMAL', 1158, 'ACTIVE', '2022-06-01 16:25:42', '0000-00-00 00:00:00'), (376, 'NORMAL', 1159, 'ACTIVE', '2022-06-25 17:53:58', '0000-00-00 00:00:00'), (377, 'NORMAL', 1160, 'ACTIVE', '2022-07-05 17:12:07', '0000-00-00 00:00:00'), (378, 'NORMAL', 1161, 'ACTIVE', '2022-07-05 17:13:19', '0000-00-00 00:00:00'), (379, 'NORMAL', 1162, 'ACTIVE', '2022-07-13 16:31:43', '0000-00-00 00:00:00'), (380, 'NORMAL', 1163, 'ACTIVE', '2022-07-18 19:37:49', '0000-00-00 00:00:00'), (381, 'NORMAL', 1164, 'ACTIVE', '2022-08-06 10:39:04', '0000-00-00 00:00:00'), (382, 'NORMAL', 1165, 'ACTIVE', '2022-08-06 10:41:43', '0000-00-00 00:00:00'), (383, 'NORMAL', 1166, 'ACTIVE', '2022-08-10 11:34:56', '0000-00-00 00:00:00'), (384, 'NORMAL', 1167, 'ACTIVE', '2022-08-15 12:18:29', '0000-00-00 00:00:00'), (385, 'NORMAL', 1168, 'ACTIVE', '2022-08-16 11:21:17', '0000-00-00 00:00:00'), (386, 'NORMAL', 1169, 'ACTIVE', '2022-08-16 12:12:17', '0000-00-00 00:00:00'), (387, 'NORMAL', 1170, 'ACTIVE', '2022-08-16 17:24:51', '0000-00-00 00:00:00'), (388, 'NORMAL', 1171, 'ACTIVE', '2022-08-16 17:26:34', '0000-00-00 00:00:00'), (389, 'NORMAL', 1172, 'ACTIVE', '2022-08-19 15:41:00', '0000-00-00 00:00:00'), (390, 'NORMAL', 1173, 'ACTIVE', '2022-08-19 16:27:01', '0000-00-00 00:00:00'), (391, 'NORMAL', 1174, 'ACTIVE', '2022-09-14 11:27:20', '0000-00-00 00:00:00'), (392, 'NORMAL', 1175, 'ACTIVE', '2022-09-14 16:51:55', '0000-00-00 00:00:00'), (393, 'NORMAL', 1176, 'ACTIVE', '2022-09-19 17:54:47', '0000-00-00 00:00:00'), (394, 'NORMAL', 1177, 'ACTIVE', '2022-09-29 16:50:21', '0000-00-00 00:00:00'), (395, 'NORMAL', 1178, 'ACTIVE', '2022-10-04 08:00:30', '0000-00-00 00:00:00'), (396, 'NORMAL', 1179, 'ACTIVE', '2022-10-08 17:41:02', '0000-00-00 00:00:00'), (397, 'NORMAL', 1180, 'ACTIVE', '2022-10-08 17:42:23', '0000-00-00 00:00:00'), (398, 'NORMAL', 1181, 'ACTIVE', '2022-10-11 17:00:02', '0000-00-00 00:00:00'), (399, 'NORMAL', 1182, 'ACTIVE', '2022-10-11 17:03:12', '0000-00-00 00:00:00'), (400, 'NORMAL', 1183, 'ACTIVE', '2022-10-11 17:04:37', '0000-00-00 00:00:00'), (401, 'NORMAL', 1184, 'ACTIVE', '2022-10-12 11:04:00', '0000-00-00 00:00:00'), (402, 'NORMAL', 1185, 'ACTIVE', '2022-10-17 17:03:01', '0000-00-00 00:00:00'), (403, 'NORMAL', 1186, 'ACTIVE', '2022-10-18 12:11:57', '0000-00-00 00:00:00'), (404, 'NORMAL', 1187, 'ACTIVE', '2022-11-19 16:01:43', '0000-00-00 00:00:00'), (405, 'NORMAL', 1187, 'ACTIVE', '2022-11-19 16:01:46', '0000-00-00 00:00:00'), (406, 'NORMAL', 1188, 'ACTIVE', '2022-11-28 18:28:44', '0000-00-00 00:00:00'), (407, 'NORMAL', 1189, 'ACTIVE', '2022-12-08 10:54:43', '0000-00-00 00:00:00'), (408, 'NORMAL', 1190, 'ACTIVE', '2022-12-08 18:24:09', '0000-00-00 00:00:00'), (409, 'NORMAL', 1191, 'ACTIVE', '2022-12-08 18:24:49', '0000-00-00 00:00:00'), (410, 'NORMAL', 1192, 'ACTIVE', '2022-12-09 16:31:13', '0000-00-00 00:00:00'), (411, 'NORMAL', 1193, 'ACTIVE', '2022-12-12 13:45:53', '0000-00-00 00:00:00'), (412, 'NORMAL', 1194, 'ACTIVE', '2022-12-13 13:44:17', '0000-00-00 00:00:00'), (413, 'NORMAL', 1195, 'ACTIVE', '2022-12-15 12:00:13', '0000-00-00 00:00:00'), (414, 'NORMAL', 1196, 'ACTIVE', '2023-01-10 13:28:44', '0000-00-00 00:00:00'), (415, 'CASH', 872, 'ACTIVE', '2023-01-11 12:31:24', '0000-00-00 00:00:00'), (416, 'NORMAL', 1197, 'ACTIVE', '2023-01-17 17:14:31', '0000-00-00 00:00:00'), (417, 'NORMAL', 1198, 'ACTIVE', '2023-02-20 18:53:20', '0000-00-00 00:00:00'), (418, 'NORMAL', 1199, 'ACTIVE', '2023-02-20 18:54:08', '0000-00-00 00:00:00'), (419, 'NORMAL', 1200, 'ACTIVE', '2023-02-22 16:00:02', '0000-00-00 00:00:00'), (420, 'NORMAL', 1201, 'ACTIVE', '2023-02-24 14:56:54', '0000-00-00 00:00:00'), (421, 'NORMAL', 1202, 'ACTIVE', '2023-02-28 14:58:45', '0000-00-00 00:00:00'), (422, 'NORMAL', 1203, 'ACTIVE', '2023-02-28 15:00:35', '0000-00-00 00:00:00'), (423, 'NORMAL', 1204, 'ACTIVE', '2023-03-17 16:21:40', '0000-00-00 00:00:00'), (424, 'NORMAL', 1205, 'ACTIVE', '2023-04-03 18:55:57', '0000-00-00 00:00:00'), (425, 'NORMAL', 1206, 'ACTIVE', '2023-04-19 09:20:19', '0000-00-00 00:00:00'), (426, 'NORMAL', 1207, 'ACTIVE', '2023-04-24 11:51:00', '0000-00-00 00:00:00'), (427, 'NORMAL', 1208, 'ACTIVE', '2023-04-26 18:55:10', '0000-00-00 00:00:00'), (428, 'NORMAL', 1209, 'ACTIVE', '2023-05-02 13:47:50', '0000-00-00 00:00:00'), (429, 'NORMAL', 1210, 'ACTIVE', '2023-05-03 11:41:30', '0000-00-00 00:00:00'), (430, 'NORMAL', 1211, 'ACTIVE', '2023-05-03 12:03:48', '0000-00-00 00:00:00'), (431, 'NORMAL', 1212, 'ACTIVE', '2023-05-31 19:17:03', '0000-00-00 00:00:00'), (432, 'NORMAL', 1213, 'ACTIVE', '2023-06-08 13:49:43', '0000-00-00 00:00:00'), (433, 'NORMAL', 1214, 'ACTIVE', '2023-06-20 18:40:13', '0000-00-00 00:00:00'), (434, 'NORMAL', 1215, 'ACTIVE', '2023-06-20 18:42:22', '0000-00-00 00:00:00'), (435, 'NORMAL', 1216, 'ACTIVE', '2023-07-02 16:04:34', '0000-00-00 00:00:00'), (436, 'PROFORMA', 15, 'ACTIVE', '2023-07-02 20:51:43', '0000-00-00 00:00:00'), (437, 'NORMAL', 1217, 'ACTIVE', '2023-07-06 13:37:53', '0000-00-00 00:00:00'), (438, 'NORMAL', 1218, 'ACTIVE', '2023-08-03 14:53:08', '0000-00-00 00:00:00'), (439, 'NORMAL', 1219, 'ACTIVE', '2023-08-05 16:07:25', '0000-00-00 00:00:00'), (440, 'NORMAL', 1220, 'ACTIVE', '2023-08-05 16:36:55', '0000-00-00 00:00:00'), (441, 'NORMAL', 1221, 'ACTIVE', '2023-08-08 14:26:47', '0000-00-00 00:00:00'), (442, 'NORMAL', 1222, 'ACTIVE', '2023-08-08 14:28:05', '0000-00-00 00:00:00'), (443, 'NORMAL', 1223, 'ACTIVE', '2023-08-08 18:40:46', '0000-00-00 00:00:00'), (444, 'NORMAL', 1224, 'ACTIVE', '2023-08-11 16:04:28', '0000-00-00 00:00:00'), (445, 'NORMAL', 1225, 'ACTIVE', '2023-08-11 17:02:59', '0000-00-00 00:00:00'), (446, 'NORMAL', 1226, 'ACTIVE', '2023-08-28 14:00:02', '0000-00-00 00:00:00'), (447, 'NORMAL', 1227, 'ACTIVE', '2023-08-29 13:58:51', '0000-00-00 00:00:00'), (448, 'NORMAL', 1228, 'ACTIVE', '2023-09-01 17:47:08', '0000-00-00 00:00:00'), (449, 'PROFORMA', 16, 'ACTIVE', '2023-09-28 14:53:39', '0000-00-00 00:00:00'), (450, 'NORMAL', 1229, 'ACTIVE', '2023-10-03 13:00:06', '0000-00-00 00:00:00'), (451, 'NORMAL', 1230, 'ACTIVE', '2023-10-03 13:18:13', '0000-00-00 00:00:00'), (452, 'NORMAL', 1231, 'ACTIVE', '2023-10-06 17:53:33', '0000-00-00 00:00:00'), (453, 'NORMAL', 1232, 'ACTIVE', '2023-10-06 18:02:27', '0000-00-00 00:00:00'), (454, 'NORMAL', 1233, 'ACTIVE', '2023-10-06 18:44:55', '0000-00-00 00:00:00'), (455, 'NORMAL', 1234, 'ACTIVE', '2023-10-25 13:39:24', '0000-00-00 00:00:00'), (456, 'PROFORMA', 17, 'ACTIVE', '2023-10-27 14:55:57', '0000-00-00 00:00:00'), (457, 'NORMAL', 1235, 'ACTIVE', '2023-10-27 15:09:05', '0000-00-00 00:00:00'), (458, 'NORMAL', 1236, 'ACTIVE', '2023-11-01 13:17:24', '0000-00-00 00:00:00'), (459, 'NORMAL', 1237, 'ACTIVE', '2023-11-07 19:42:16', '0000-00-00 00:00:00'), (460, 'NORMAL', 1238, 'ACTIVE', '2023-11-08 13:20:22', '0000-00-00 00:00:00'), (461, 'NORMAL', 1239, 'ACTIVE', '2023-11-18 16:43:42', '0000-00-00 00:00:00'), (462, 'NORMAL', 1240, 'ACTIVE', '2023-11-25 15:13:12', '0000-00-00 00:00:00'), (463, 'NORMAL', 1241, 'ACTIVE', '2023-12-01 21:55:55', '0000-00-00 00:00:00'), (464, 'NORMAL', 1242, 'ACTIVE', '2023-12-12 09:49:54', '0000-00-00 00:00:00'), (465, 'NORMAL', 1243, 'ACTIVE', '2023-12-12 13:42:49', '0000-00-00 00:00:00'), (466, 'NORMAL', 1244, 'ACTIVE', '2023-12-19 12:37:44', '0000-00-00 00:00:00'), (467, 'NORMAL', 1245, 'ACTIVE', '2024-01-05 13:35:16', '0000-00-00 00:00:00'), (468, 'NORMAL', 1246, 'ACTIVE', '2024-01-18 13:11:15', '0000-00-00 00:00:00'), (469, 'NORMAL', 1247, 'ACTIVE', '2024-02-02 14:13:53', '0000-00-00 00:00:00'), (470, 'NORMAL', 1248, 'ACTIVE', '2024-02-12 14:35:31', '0000-00-00 00:00:00'), (471, 'NORMAL', 1249, 'ACTIVE', '2024-02-12 14:37:06', '0000-00-00 00:00:00'), (472, 'NORMAL', 1250, 'ACTIVE', '2024-02-12 14:40:34', '0000-00-00 00:00:00'), (473, 'NORMAL', 1251, 'ACTIVE', '2024-02-12 14:41:16', '0000-00-00 00:00:00'), (474, 'NORMAL', 1252, 'ACTIVE', '2024-02-21 18:42:56', '0000-00-00 00:00:00'), (475, 'NORMAL', 1253, 'ACTIVE', '2024-02-21 18:44:19', '0000-00-00 00:00:00'), (476, 'NORMAL', 1254, 'ACTIVE', '2024-02-26 18:53:13', '0000-00-00 00:00:00'), (477, 'NORMAL', 1255, 'ACTIVE', '2024-02-28 15:02:41', '0000-00-00 00:00:00'), (478, 'NORMAL', 1256, 'ACTIVE', '2024-02-28 18:43:37', '0000-00-00 00:00:00'), (479, 'NORMAL', 1257, 'ACTIVE', '2024-03-02 19:11:02', '0000-00-00 00:00:00'), (480, 'NORMAL', 1258, 'ACTIVE', '2024-03-18 14:23:14', '0000-00-00 00:00:00'), (481, 'NORMAL', 1259, 'ACTIVE', '2024-04-01 12:47:06', '0000-00-00 00:00:00'), (482, 'NORMAL', 1260, 'ACTIVE', '2024-04-01 12:49:26', '0000-00-00 00:00:00'), (483, 'NORMAL', 1261, 'ACTIVE', '2024-04-25 13:55:46', '0000-00-00 00:00:00'), (484, 'NORMAL', 1262, 'ACTIVE', '2024-04-29 17:51:16', '0000-00-00 00:00:00'), (485, 'NORMAL', 1263, 'ACTIVE', '2024-06-07 13:34:00', '0000-00-00 00:00:00'), (486, 'NORMAL', 1264, 'ACTIVE', '2024-06-07 13:35:20', '0000-00-00 00:00:00'), (487, 'NORMAL', 1265, 'ACTIVE', '2024-06-07 13:38:04', '0000-00-00 00:00:00'), (488, 'NORMAL', 1266, 'ACTIVE', '2024-06-07 13:40:35', '0000-00-00 00:00:00'), (489, 'NORMAL', 1267, 'ACTIVE', '2024-06-25 18:25:09', '0000-00-00 00:00:00'), (490, 'NORMAL', 1268, 'ACTIVE', '2024-06-25 18:26:13', '0000-00-00 00:00:00'), (491, 'NORMAL', 1269, 'ACTIVE', '2024-06-26 18:39:41', '0000-00-00 00:00:00'), (492, 'NORMAL', 1270, 'ACTIVE', '2024-06-27 13:23:03', '0000-00-00 00:00:00'), (493, 'NORMAL', 1271, 'ACTIVE', '2024-07-02 13:22:51', '0000-00-00 00:00:00'), (494, 'NORMAL', 1272, 'ACTIVE', '2024-07-22 18:17:10', '0000-00-00 00:00:00'), (495, 'NORMAL', 1273, 'ACTIVE', '2024-08-02 16:09:37', '0000-00-00 00:00:00'), (496, 'NORMAL', 1274, 'ACTIVE', '2024-08-08 17:26:37', '0000-00-00 00:00:00'), (497, 'NORMAL', 1275, 'ACTIVE', '2024-08-08 17:30:58', '0000-00-00 00:00:00'), (498, 'NORMAL', 1276, 'ACTIVE', '2024-08-08 17:31:53', '0000-00-00 00:00:00'), (499, 'NORMAL', 1277, 'ACTIVE', '2024-08-22 13:42:09', '0000-00-00 00:00:00'), (500, 'NORMAL', 1278, 'ACTIVE', '2024-08-29 15:20:08', '0000-00-00 00:00:00'), (501, 'NORMAL', 1279, 'ACTIVE', '2024-09-03 11:33:33', '0000-00-00 00:00:00'), (502, 'NORMAL', 1280, 'ACTIVE', '2024-09-18 15:13:38', '0000-00-00 00:00:00'), (503, 'NORMAL', 1281, 'ACTIVE', '2024-10-04 13:51:15', '0000-00-00 00:00:00'), (504, 'NORMAL', 1282, 'ACTIVE', '2024-10-07 16:17:08', '0000-00-00 00:00:00'), (505, 'NORMAL', 1283, 'ACTIVE', '2024-10-15 17:01:14', '0000-00-00 00:00:00'), (506, 'PROFORMA', 18, 'ACTIVE', '2024-10-16 12:21:44', '0000-00-00 00:00:00'), (507, 'NORMAL', 1284, 'ACTIVE', '2024-10-25 13:20:21', '0000-00-00 00:00:00'), (508, 'NORMAL', 1285, 'ACTIVE', '2024-10-25 14:40:19', '0000-00-00 00:00:00'), (509, 'NORMAL', 1286, 'ACTIVE', '2024-11-04 12:15:25', '0000-00-00 00:00:00'), (510, 'NORMAL', 1287, 'ACTIVE', '2024-11-05 17:07:31', '0000-00-00 00:00:00'), (511, 'NORMAL', 1288, 'ACTIVE', '2024-11-07 16:46:21', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `invoice_payments` -- CREATE TABLE `invoice_payments` ( `payment_id` int(11) NOT NULL, `invoice_id` int(11) NOT NULL, `favour_of` varchar(256) NOT NULL, `payment_type` varchar(256) NOT NULL, `amount` decimal(10,0) NOT NULL, `cheque_no` varchar(256) NOT NULL, `cheque_date` varchar(256) NOT NULL, `bank_name` varchar(256) NOT NULL, `branch_name` varchar(256) NOT NULL, `dd_no` varchar(256) NOT NULL, `dd_date` varchar(256) NOT NULL, `utr_no` varchar(256) NOT NULL, `online_date` varchar(256) NOT NULL, `collected_by` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `added_by` varchar(256) NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `invoice_payments` -- INSERT INTO `invoice_payments` (`payment_id`, `invoice_id`, `favour_of`, `payment_type`, `amount`, `cheque_no`, `cheque_date`, `bank_name`, `branch_name`, `dd_no`, `dd_date`, `utr_no`, `online_date`, `collected_by`, `delete_status`, `added_by`, `created_at`, `updated_at`) VALUES (1, 54, 'SBH', 'Cash', 5000, '', '', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (2, 56, '', 'Cash', 30000, '', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (3, 59, 'SBH', 'Netbanking', 22151, '', '', 'NetBanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (4, 60, 'SBH', 'NetBanking', 104125, '', '', 'NetBanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (5, 457, 'SBH', 'Netbanking', 25000, '', '', 'Online', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (6, 62, 'SBH', 'Netbanking', 15000, '', '', 'From SBH Netbankig', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (7, 63, 'HDFC', 'Cheque', 15000, '377731', '', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (8, 64, 'HDFC', 'Cheque', 15000, '54147', '', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (9, 65, 'SBH', '', 10000, '', '', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (10, 66, 'HDFC,', 'Cheque', 10000, '', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '2018-08-25'), (11, 67, 'HDFC', 'Cheque', 8000, '748185', '', 'Corporation bank', 'Koramangala', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (12, 68, 'SBH', 'Netbanking', 120000, '', '', 'From Swiss Account', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (13, 69, 'SBH', 'Online', 2850, '', '', 'Online', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (14, 70, 'SBH', 'Online', 35000, '', '', 'Online', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (15, 71, 'HDFC', 'Cheque', 9000, '748187', '', 'Corporation bank', 'Koramangala', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (16, 72, 'HDFC', 'Cheque', 25000, '000833', '', 'HDFC', 'Mosque road,bangalore', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '2018-08-25'), (17, 73, 'SBH', 'Netbanking', 35000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (18, 74, 'SBH', 'Netbanking', 120000, '', '', 'Swiss account', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (19, 76, 'SBH', 'Netbanking', 20000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (20, 77, 'SBH', 'Netbanking', 15000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (21, 78, 'HDFC', 'Cheque', 10000, '540426', '', 'City Union bank', 'jayanagar', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (22, 79, 'Ajay', 'cash', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (23, 80, 'SBH', 'Netbanking', 25000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (24, 81, 'SBH', 'Netbanking', 1400, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (25, 82, 'HDFC', 'Cheque', 50000, '29490', '', 'SBM', 'Shivrampet', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (26, 83, 'SBH', 'Netbanking', 2000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (27, 84, 'SBH', 'Netbanking', 1000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (28, 85, 'SBH', 'Netbanking', 80000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (29, 86, 'SBH', 'Netbanking', 20000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (30, 87, 'HDFC', 'Cash', 12650, '', '', 'Cash', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (31, 88, 'Hdfc', 'AXIS Bank, Cox town', 7500, '', '', 'Cheque', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (32, 89, 'HDFC', 'Cash', 7500, '', '', 'Cash', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (33, 90, 'SBH', 'Netbanking', 29250, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (34, 91, 'SBH', 'Netbanking', 47250, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (35, 92, 'SBH', 'Netbanking', 4600, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (36, 93, 'SBH', 'Netbanking', 4600, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (37, 94, 'HDFC', 'Cheque', 15000, '332052', '', 'Cheque Axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (38, 96, 'SBH', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (39, 97, 'SBH', 'NEFT', 50000, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (40, 98, 'HDFC', 'Cheque', 16675, '', '', 'Kotak mahendra', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (41, 99, 'SBH', 'Cash', 9200, '', '', 'Cash', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (42, 100, 'HDFC', 'cheque', 8050, '420716', '', 'SBM', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (43, 101, 'SBH', 'NEFT', 25000, '', '', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (44, 102, 'HDFC', 'cheque', 4000, '41', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (45, 103, 'SBH', 'Online Payment', 56025, '', '', 'Netbanking', '', '', '', '123', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '2018-08-25'), (46, 460, 'SBH', 'Netbanking', 24651, '', '', 'Netbanking', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (47, 461, 'SBH', 'PayuMoney', 3450, '', '', 'PayuMoney', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (48, 462, 'HDFC', 'Cheque-000046', 3000, '', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (49, 463, 'HDFC', 'Cheque- 483162', 123750, '', '', 'Indusind bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (50, 464, 'SBH', 'Netbanking', 8100, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (51, 465, 'SBH', 'Yes Bank', 5750, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (52, 104, 'SBH', 'Netbanking', 7187, '', '', 'Netbanking', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (53, 105, 'HDFC', 'Cheque', 5000, '000171', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (54, 106, 'SBH', 'PayuMoney', 5175, '', '', 'PayuMoney', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (55, 107, 'HDFC', 'Cheque', 10000, '491535', '', 'IOB', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (56, 108, 'HDFC', 'Cheque', 25000, '000666', '', 'Axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (57, 467, 'Subbu', 'Cash', 1000, '', '', 'Cash', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (58, 468, 'SBH', 'NEFT', 6900, '', '', 'NEFT', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (59, 114, 'Subbu', 'Cash', 2500, '', '', 'Cash', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (60, 115, 'HDFC', 'NEFT', 10000, '', '', 'IMPS (Varadharajalu)', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (61, 116, 'SBH', 'NEFT', 109883, '', '', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (62, 117, 'HDFC', 'NEFT HSBC', 88275, '', '', 'HSBC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (63, 118, 'HDFC', 'Cheque', 10000, '969365', '', 'Kotak', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (64, 119, 'HDFC', 'Cheque', 10000, '769108', '', 'SBM', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (65, 120, 'HDFC', 'Cheque', 10000, '000011', '', 'Kotak', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (66, 121, 'HDFC', 'NEFT', 5000, '', '', 'IMPS (Varadharajalu)', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (67, 122, 'HDFC', 'Cheque', 10000, '', '', 'IDBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (68, 123, 'HDFC', 'Cheque', 15000, '', '', 'Andra Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (69, 124, 'HDFC', 'NEFT', 20775, '', '', 'HSBC', 'calgary Cannada', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (70, 125, 'SBH', 'Cheque', 37500, '', '', 'SBH', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (71, 126, 'HDFC', 'Cheque', 10000, '', '', 'ICICI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (72, 127, 'HDFC', 'Cheque', 24265, '004618', '', 'axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (73, 130, 'HDFC', 'IMPS', 1000, '', '', 'IMPS', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (74, 131, 'HDFC', 'Cheque', 6500, '', '', 'Panjab national Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (75, 132, 'HDFC', 'NEFT', 15000, '', '', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (76, 133, 'HDFC', 'NEFT', 22500, '', '', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (77, 134, 'HDFC', 'Cheque', 24265, '830554', '', 'SBM', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (78, 135, 'HDFC', 'NEFT', 75000, '', '', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (79, 137, 'HDFC', 'IMPS', 11500, '', '', 'IMPS', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (80, 138, 'HDFC', 'Cheque', 15000, '232', '', 'icici', 'battarahalli', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (81, 139, 'HDFC', 'Cheque', 63250, '', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (82, 63, 'HDFC', 'Cheque', 15000, '182547', '03-30-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (83, 66, 'HDFC', 'Cheque', 15000, '000555', '08-10-2016', 'HDFC', 'RVS PAaradise branch', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (84, 76, 'HDFC', 'Netbanking', 15000, '', '', 'Corporation Bank', '', '', '', '', '08-24-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (85, 77, '', 'Cheque', 25000, '428130', '09-07-2016', 'State bank of Mysore', 'jog falls', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (86, 79, '', 'Cash', 25000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (87, 84, 'SBH', 'Netbanking', 7000, '', '', '', '', '', '', '', '09-03-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (88, 86, 'SBH', 'Netbanking', 20000, '', '', '', '', '', '', '', '10-05-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (89, 89, 'HDFC', 'Cash', 11850, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (90, 90, 'SBH', 'Netbanking', 39000, '', '', '', '', '', '', '', '10-24-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (91, 91, 'SBH', 'Netbanking', 47250, '', '', '', '', '', '', '', '10-05-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (92, 96, 'SBH', 'Payumoney', 9770, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (93, 102, 'HDFC', 'Cheque', 6925, '44', '', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (94, 462, 'HDFC', 'Cheque', 5912, '000003', '12-10-2016', 'Kotak Mahendra', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (95, 105, 'HDFC', 'Cheque', 6500, '000181', '01-11-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (96, 106, 'SBH', 'PayuMoney', 5175, '', '', 'PayuMoney', '', '', '', '', '12-24-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (97, 467, 'HDFC', 'Cheque', 8050, '277106', '01-16-2017', 'Bank of Maharastra', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (98, 115, 'HDFC', 'NEFT', 8000, '', '', '', '', '', '', '', '03-06-2017', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (99, 119, 'HDFC', 'Cheque', 7250, '967964', '03-24-2017', 'SBM', 'vv puram', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (100, 120, 'HDFC', 'Cheque', 8400, '000019', '02-22-2017', 'kotak mahendra', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (101, 123, 'HDFC', 'Cheque', 10000, '291491', '04-29-2017', 'Andra bank', 'Jpnagar', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (102, 130, 'HDFC', 'IMPS', 1000, '', '', 'IMPS', '', '', '', '', '03-16-2017', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (103, 139, 'HDFC', 'Cheque', 8000, '238', '04-03-2017', 'ICICI', 'battarahalli', '', '', '', '', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (104, 84, 'SBH', 'Netbanking', 8000, '', '', '', '', '', '', '', '10-05-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (105, 86, 'SBH', 'NetBanking', 15000, '', '', '', '', '', '', '', '12-07-2016', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (106, 115, 'HDFC', 'NEFT', 8587, '', '', '', '', '', '', '', '04-20-2017', '', 'ACTIVE', '', '2018-07-24 12:48:12', '0000-00-00'), (107, 468, 'HDFC Jayblues', 'Online Payment', 23600, '', '', '', '', '', '', '', '18-05-2018', '', 'ACTIVE', '', '2018-07-25 19:04:43', '2018-08-17'), (108, 148, 'HDFC Jayblues', 'Cheque', 6900, '248643', '24-04-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 12:48:18', '0000-00-00'), (109, 149, 'HDFC Jayblues', 'Cheque', 5175, '319487', '14-06-2017', 'AXIS', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 12:57:37', '0000-00-00'), (110, 150, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-26 15:26:18', '0000-00-00'), (111, 150, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-26 15:26:18', '0000-00-00'), (112, 150, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 15:26:18', '0000-00-00'), (113, 151, 'HDFC Jayblues', 'Cheque', 15000, '830561', '11-04-2017', 'SBM', 'Vinayaka Layout', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 15:28:14', '0000-00-00'), (114, 156, 'HDFC Jayblues', 'Cheque', 3450, '000078', '27-04-2017', 'HDFC', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-26 17:34:11', '0000-00-00'), (115, 157, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 17:36:55', '0000-00-00'), (116, 158, 'HDFC Jayblues', 'Cheque', 20000, '333722', '27-04-2017', 'Karnataka Bank', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-26 17:38:23', '0000-00-00'), (117, 161, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 17:42:42', '0000-00-00'), (118, 164, 'HDFC Jayblues', 'Online Payment', 48750, '', '', '', '', '', '', '', '23-05-2017', '', 'INACTIVE', '', '2018-07-26 18:17:35', '0000-00-00'), (119, 166, 'HDFC Jayblues', 'Cheque', 5865, '371605', '12-04-2017', 'Canara Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 18:25:27', '0000-00-00'), (120, 167, 'HDFC Jayblues', 'Cash', 5500, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-26 18:34:27', '0000-00-00'), (121, 156, 'HDFC Jayblues', 'Cheque', 3450, '000078', '27-04-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:01:47', '0000-00-00'), (122, 157, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-27 12:16:37', '0000-00-00'), (123, 158, 'HDFC Jayblues', 'Cheque', 20000, '333722', '27-04-2017', 'Karnataka Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:18:30', '0000-00-00'), (124, 164, 'HDFC Jayblues', 'Online Payment', 48750, '', '', '', '', '', '', '', '23-05-2017', '', 'ACTIVE', '', '2018-07-27 12:26:14', '0000-00-00'), (125, 169, 'HDFC Jayblues', 'Online Payment', 9000, '', '', '', '', '', '', '', '09-05-2017', '', 'ACTIVE', '', '2018-07-27 12:28:31', '0000-00-00'), (126, 143, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:29:05', '0000-00-00'), (127, 172, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '16-06-2017', '', 'ACTIVE', '', '2018-07-27 12:32:55', '0000-00-00'), (128, 173, 'HDFC Jayblues', 'Cash', 7500, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:33:27', '0000-00-00'), (129, 174, 'HDFC Jayblues', 'Cheque', 7000, '', '12-05-2017', 'Bank of baroda', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:35:40', '0000-00-00'), (130, 175, 'HDFC Jayblues', 'Cheque', 6000, '125957', '18-05-2017', 'IDBI Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:36:53', '0000-00-00'), (131, 176, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:37:44', '0000-00-00'), (132, 179, 'HDFC Jayblues', 'Online Payment', 24750, '', '', '', '', '', '', '', '19-06-2017', '', 'ACTIVE', '', '2018-07-27 12:38:38', '0000-00-00'), (133, 163, 'HDFC Jayblues', 'Online Payment', 43125, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:41:14', '0000-00-00'), (134, 182, 'HDFC Jayblues', 'Online Payment', 12000, '', '', '', '', '', '', '', '30-05-2017', '', 'ACTIVE', '', '2018-07-27 12:42:34', '0000-00-00'), (135, 183, 'HDFC Jayblues', 'Online Payment', 2875, '', '', '', '', '', '', '', '31-05-2017', '', 'ACTIVE', '', '2018-07-27 12:43:17', '0000-00-00'), (136, 184, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '02-06-2017', '', 'ACTIVE', '', '2018-07-27 12:45:12', '0000-00-00'), (137, 185, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:45:45', '0000-00-00'), (138, 188, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:46:30', '0000-00-00'), (139, 189, 'HDFC Jayblues', 'Cheque', 7500, '969372', '14-06-2017', 'kotak mahendra', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:47:29', '0000-00-00'), (140, 190, 'HDFC Jayblues', 'Cheque', 10000, '291491', '29-04-2017', 'Andra bank', 'JP nagar', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:49:11', '0000-00-00'), (141, 191, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:49:37', '0000-00-00'), (142, 163, 'HDFC Jayblues', 'Online Payment', 28125, '', '', '', '', '', '', '', '17-06-2017', '', 'INACTIVE', '', '2018-07-27 12:51:27', '0000-00-00'), (143, 193, 'HDFC Jayblues', 'Cheque', 8625, '136953', '18-06-2017', 'Axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:53:14', '0000-00-00'), (144, 194, 'HDFC Jayblues', 'Cheque', 6900, '136955', '19-06-2017', 'Axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:54:24', '0000-00-00'), (145, 195, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:54:55', '0000-00-00'), (146, 197, 'HDFC Jayblues', 'Cheque', 5000, '244698', '22-06-2017', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 12:57:36', '0000-00-00'), (147, 200, 'HDFC Jayblues', 'Online Payment', 67562, '', '', '', '', '', '', '', '28-06-2017', '', 'ACTIVE', '', '2018-07-27 13:04:58', '0000-00-00'), (148, 201, 'HDFC Jayblues', 'Cheque', 21450, '649558', '30-06-2017', 'Karanataka Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:10:25', '0000-00-00'), (149, 202, 'HDFC Jayblues', 'Online Payment', 4600, '', '', '', '', '', '', '', '30-06-2017', '', 'ACTIVE', '', '2018-07-27 13:13:03', '0000-00-00'), (150, 203, 'HDFC Jayblues', 'Online Payment', 57574, '', '', '', '', '', '', '', '07-07-2017', '', 'ACTIVE', '', '2018-07-27 13:14:38', '0000-00-00'), (151, 204, 'HDFC Jayblues', 'Cheque', 70000, '', '25-07-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:15:34', '0000-00-00'), (152, 205, 'HDFC Jayblues', 'Cash', 20000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:16:07', '0000-00-00'), (153, 206, 'HDFC Jayblues', 'Cheque', 79650, '228017', '03-07-2017', 'Oriental Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:17:37', '0000-00-00'), (154, 207, 'HDFC Jayblues', 'Cheque', 9000, '913364', '05-07-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:18:22', '0000-00-00'), (155, 208, 'HDFC Jayblues', 'Online Payment', 38478, '', '', '', '', '', '', '', '11-07-2017', '', 'ACTIVE', '', '2018-07-27 13:19:46', '0000-00-00'), (156, 209, 'HDFC Jayblues', 'Online Payment', 10620, '', '', '', '', '', '', '', '06-07-2017', '', 'ACTIVE', '', '2018-07-27 13:20:29', '0000-00-00'), (157, 211, 'HDFC Jayblues', 'Cash', 30000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:21:26', '0000-00-00'), (158, 212, 'HDFC Jayblues', 'Cheque', 17000, '74216', '12-07-2017', 'ICICI bank', 'JP Nagar', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:22:50', '0000-00-00'), (159, 266, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', 'NO', '10-10-2017', 'NEFT', 'ACTIVE', '', '2018-07-27 13:29:34', '2018-08-06'), (160, 214, 'HDFC Jayblues', 'Cheque', 29500, '1333', '12-07-2017', 'HDFC bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 13:30:50', '0000-00-00'), (161, 215, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '14-04-2017', '', 'ACTIVE', '', '2018-07-27 13:46:51', '0000-00-00'), (162, 216, 'HDFC Jayblues', 'Cheque', 23000, '145176', '17-07-2017', 'Axis Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 14:11:15', '0000-00-00'), (163, 217, 'HDFC Jayblues', 'Online Payment', 4750, '', '', '', '', '', '', '', '21-07-2017', '', 'ACTIVE', '', '2018-07-27 14:13:25', '0000-00-00'), (164, 220, 'HDFC Jayblues', 'Cheque', 158850, '228104', '31-07-2017', 'Oriental bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:30:01', '0000-00-00'), (165, 221, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '01-07-2017', '', 'ACTIVE', '', '2018-07-27 15:30:48', '0000-00-00'), (166, 222, 'HDFC Jayblues', 'Cash', 4500, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:31:15', '0000-00-00'), (167, 223, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:31:43', '0000-00-00'), (168, 224, 'HDFC Jayblues', 'Cash', 100000, '', '', '', '', '', '', '', '', '27-07-2017', 'ACTIVE', '', '2018-07-27 15:33:16', '0000-00-00'), (169, 225, 'HDFC Jayblues', 'Cheque', 10000, '89', '29-07-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:34:28', '0000-00-00'), (170, 226, 'HDFC Jayblues', 'Cheque', 7000, '621195', '25-07-2017', 'Corporation Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:35:23', '0000-00-00'), (171, 264, 'HDFC Jayblues', 'Online Payment', 43200, '', '', '', '', '', '', '', '22-09-2017', '', 'INACTIVE', '', '2018-07-27 15:38:10', '0000-00-00'), (172, 242, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', '', '16-08-2017', '', 'INACTIVE', '', '2018-07-27 15:39:54', '0000-00-00'), (173, 229, 'HDFC Jayblues', 'Online Payment', 12000, '', '', '', '', '', '', '', '01-08-2017', '', 'ACTIVE', '', '2018-07-27 15:40:29', '0000-00-00'), (174, 230, 'HDFC Jayblues', 'Cheque', 6000, '824534', '04-08-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:41:52', '0000-00-00'), (175, 232, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '04-08-2017', '', 'ACTIVE', '', '2018-07-27 15:43:42', '0000-00-00'), (176, 233, 'HDFC Jayblues', 'Cheque', 4500, '39363', '05-08-2017', 'National cooperative bank Ltd', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:45:12', '0000-00-00'), (177, 234, 'HDFC Jayblues', 'Cheque', 27458, '228157', '17-08-2017', 'Oriental bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:48:11', '0000-00-00'), (178, 235, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '09-08-2017', '', 'ACTIVE', '', '2018-07-27 15:48:59', '0000-00-00'), (179, 236, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '12-08-2017', '', 'ACTIVE', '', '2018-07-27 15:49:40', '0000-00-00'), (180, 237, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '12-08-2017', '', 'ACTIVE', '', '2018-07-27 15:50:20', '0000-00-00'), (181, 238, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '17-08-2017', '', 'ACTIVE', '', '2018-07-27 15:51:04', '0000-00-00'), (182, 239, 'HDFC Jayblues', 'Cheque', 10000, '589', '18-08-2017', 'HDFC', 'Vijaynagar', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:52:38', '0000-00-00'), (183, 241, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:53:59', '0000-00-00'), (184, 266, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', '', '29-08-2017', '', 'ACTIVE', '', '2018-07-27 15:55:24', '0000-00-00'), (185, 243, 'HDFC Jayblues', 'Cheque', 7000, '94', '22-08-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:56:47', '0000-00-00'), (186, 244, 'HDFC Jayblues', 'Cash', 5300, '', '', '', '', '', '', '', '', '23-08-2017', 'ACTIVE', '', '2018-07-27 15:57:27', '0000-00-00'), (187, 245, 'HDFC Jayblues', 'Cheque', 8000, '622856', '28-08-2017', 'Vijaya Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 15:59:12', '0000-00-00'), (188, 246, 'HDFC Jayblues', 'Cheque', 5000, '294148', '28-08-2017', 'Axis Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:03:17', '0000-00-00'), (189, 247, 'HDFC Jayblues', 'Cheque', 7670, '28', '28-08-2017', 'Kotak Mahendra Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:04:13', '0000-00-00'), (190, 248, 'HDFC Jayblues', 'Cash', 9000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:04:40', '0000-00-00'), (191, 249, 'HDFC Jayblues', 'Online Payment', 10800, '', '', '', '', '', '', '', '20-09-2017', '', 'ACTIVE', '', '2018-07-27 16:06:11', '0000-00-00'), (192, 306, 'HDFC Jayblues', 'Cheque', 45000, '174363', '08-09-2017', 'Oriental bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:07:40', '0000-00-00'), (193, 251, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '14-09-2017', '', 'ACTIVE', '', '2018-07-27 16:08:19', '0000-00-00'), (194, 252, 'HDFC Jayblues', 'Cheque', 9152, '174362', '08-09-2017', 'Oriental bank of commerce', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:09:22', '0000-00-00'), (195, 242, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', '', '16-09-2017', '', 'ACTIVE', '', '2018-07-27 16:10:13', '0000-00-00'), (196, 255, 'HDFC Jayblues', 'Cheque', 4200, '239640', '07-09-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:11:06', '0000-00-00'), (197, 256, 'HDFC Jayblues', 'Cheque', 191816, '1404', '14-09-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:12:08', '0000-00-00'), (198, 257, 'HDFC Jayblues', 'Cheque', 7610, '30', '13-03-2017', 'Kotak Mahendra bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:12:59', '0000-00-00'), (199, 258, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '13-03-2017', '', 'ACTIVE', '', '2018-07-27 16:13:33', '0000-00-00'), (200, 259, 'HDFC Jayblues', 'Cheque', 5900, '540798', '06-10-2017', 'City union bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:15:26', '0000-00-00'), (201, 260, 'HDFC Jayblues', 'Cheque', 4130, '361336', '14-03-2017', 'Canara Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:16:07', '0000-00-00'), (202, 245, 'HDFC Jayblues', 'Cheque', 8000, '622857', '14-03-2017', 'Vijaya Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:17:02', '0000-00-00'), (203, 306, 'HDFC Jayblues', 'Cheque', 67500, '174406', '21-09-2017', 'Oriental bank of commerce', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:18:03', '0000-00-00'), (204, 263, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:18:27', '0000-00-00'), (205, 264, 'HDFC Jayblues', 'Online Payment', 43200, '', '', '', '', '', '', '', '03-11-2017', '', 'ACTIVE', '', '2018-07-27 16:21:12', '0000-00-00'), (206, 242, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', '', '10-10-2017', '', 'INACTIVE', '', '2018-07-27 16:21:56', '0000-00-00'), (207, 267, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '05-09-2017', '', 'ACTIVE', '', '2018-07-27 16:22:48', '0000-00-00'), (208, 268, 'HDFC Jayblues', 'Cheque', 4720, '553499', '26-09-2017', 'Allahabad bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:23:50', '0000-00-00'), (209, 269, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', 'AJAY', 'ACTIVE', '', '2018-07-27 16:31:42', '0000-00-00'), (210, 345, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'AJAY', 'ACTIVE', '', '2018-07-27 16:32:08', '0000-00-00'), (211, 271, 'HDFC Jayblues', 'Cheque', 4130, '361345', '05-10-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:33:13', '0000-00-00'), (212, 272, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:33:54', '0000-00-00'), (213, 273, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:34:32', '0000-00-00'), (214, 277, 'HDFC Jayblues', 'Online Payment', 2360, '', '', '', '', '', '', '', '17-10-2017', '', 'ACTIVE', '', '2018-07-27 16:35:20', '0000-00-00'), (215, 278, 'HDFC Jayblues', 'Cash', 5900, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:36:01', '0000-00-00'), (216, 279, 'HDFC Jayblues', 'Cheque', 143862, '1789', '06-11-2017', 'SBI', 'Treasury branch', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:37:03', '0000-00-00'), (217, 280, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:37:29', '0000-00-00'), (218, 281, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '20-10-2017', '', 'ACTIVE', '', '2018-07-27 16:38:32', '0000-00-00'), (219, 312, 'HDFC Jayblues', 'Cash', 1000, '', '', '', '', '', '', '', '', 'AJAY', 'ACTIVE', '', '2018-07-27 16:50:00', '0000-00-00'), (220, 515, 'HDFC Jayblues', 'Cheque', 6000, '353016', '02-11-2017', 'Yes bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:55:29', '0000-00-00'), (221, 282, 'HDFC Jayblues', 'Cheque', 8260, '801293', '10-11-2017', 'ICICI Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:56:31', '0000-00-00'), (222, 283, 'HDFC Jayblues', 'Cheque', 4000, '761784', '08-11-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:58:24', '0000-00-00'), (223, 284, 'HDFC Jayblues', 'Cheque', 12000, '792639', '09-11-2017', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 16:59:29', '0000-00-00'), (224, 285, 'HDFC Jayblues', 'Cheque', 5000, '16541', '09-11-2017', 'Axis bank ', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 17:00:20', '0000-00-00'), (225, 286, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '10-11-2017', '', 'ACTIVE', '', '2018-07-27 17:00:53', '0000-00-00'), (226, 287, 'HDFC Jayblues', 'Cheque', 4250, '141398', '13-11-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 17:02:33', '0000-00-00'), (227, 288, 'HDFC Jayblues', 'Online Payment', 3990, '', '', '', '', '', '', '', '14-11-2017', '', 'ACTIVE', '', '2018-07-27 17:03:32', '0000-00-00'), (228, 289, 'HDFC Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '15-11-2017', '', 'ACTIVE', '', '2018-07-27 17:04:17', '0000-00-00'), (229, 290, 'HDFC Jayblues', 'Cheque', 10500, '876629', '16-11-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 17:05:13', '0000-00-00'), (230, 353, 'HDFC Jayblues', 'Cash', 50000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 17:14:35', '0000-00-00'), (231, 292, 'HDFC Jayblues', 'Cheque', 4720, '983', '21-11-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:06:34', '0000-00-00'), (232, 293, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '22-11-2017', '', 'ACTIVE', '', '2018-07-27 18:07:13', '0000-00-00'), (233, 294, 'HDFC Jayblues', 'Cheque', 4130, '1532', '24-11-2017', 'HDFC', 'HDFC', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:08:16', '0000-00-00'), (234, 295, 'HDFC Jayblues', 'Cheque', 10000, '898763', '23-11-2017', 'SBM', 'SBH', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:10:50', '0000-00-00'), (235, 296, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:11:18', '0000-00-00'), (236, 316, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:11:41', '0000-00-00'), (237, 298, 'HDFC Jayblues', 'Cash', 7770, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:12:07', '0000-00-00'), (238, 299, 'HDFC Jayblues', 'Cheque', 4500, '497325', '28-11-2017', 'Syndicate bank', 'HDFC', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:13:16', '0000-00-00'), (239, 303, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '11-12-2017', '', 'ACTIVE', '', '2018-07-27 18:14:08', '0000-00-00'), (240, 325, 'HDFC Jayblues', 'Online Payment', 132000, '', '', '', '', '', '', '', '03-01-2017', '', 'ACTIVE', '', '2018-07-27 18:18:51', '2018-08-17'), (241, 307, 'HDFC Jayblues', 'Cheque', 4250, '141400', '02-12-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:20:17', '0000-00-00'), (242, 308, 'HDFC Jayblues', 'Cheque', 4500, '658256', '02-12-2017', 'Yes Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:21:14', '0000-00-00'), (243, 309, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '04-12-2017', '', 'ACTIVE', '', '2018-07-27 18:22:03', '0000-00-00'), (244, 310, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:22:35', '0000-00-00'), (245, 311, 'HDFC Jayblues', 'Online Payment', 85550, '', '', '', '', '', '', '', '06-12-2017', '', 'ACTIVE', '', '2018-07-27 18:23:32', '0000-00-00'), (246, 312, 'HDFC Jayblues', 'Cheque', 7000, '563855', '12-12-2017', 'IndusInd bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:24:56', '0000-00-00'), (247, 313, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '15-12-2017', '', 'ACTIVE', '', '2018-07-27 18:25:39', '0000-00-00'), (248, 314, 'HDFC Jayblues', 'Cash', 3900, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:26:09', '0000-00-00'), (249, 315, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:26:50', '0000-00-00'), (250, 297, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:27:13', '0000-00-00'), (251, 318, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '16-12-2017', '', 'ACTIVE', '', '2018-07-27 18:27:52', '0000-00-00'), (252, 319, 'HDFC Jayblues', 'Cheque', 4500, '518152', '18-12-2017', 'Syndicate bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:28:41', '0000-00-00'), (253, 320, 'HDFC Jayblues', 'Cheque', 5000, '418836', '18-12-2017', 'Vijaya Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:29:24', '0000-00-00'), (254, 311, 'HDFC Jayblues', 'Online Payment', 85500, '', '', '', '', '', '', '', '27-12-2017', '', 'INACTIVE', '', '2018-07-27 18:30:08', '0000-00-00'), (255, 322, 'HDFC Jayblues', 'Online Payment', 24780, '', '', '', '', '', '', '', '21-12-2017', '', 'ACTIVE', '', '2018-07-27 18:30:46', '0000-00-00'), (256, 323, 'HDFC Jayblues', 'Online Payment', 1500, '', '', '', '', '', '', '', '20-12-2017', '', 'ACTIVE', '', '2018-07-27 18:31:40', '0000-00-00'), (257, 324, 'HDFC Jayblues', 'Online Payment', 93500, '', '', '', '', '', '', '', '29-12-2017', '', 'ACTIVE', '', '2018-07-27 18:32:32', '0000-00-00'), (258, 250, 'HDFC Jayblues', 'Online Payment', 132000, '', '', '', '', '', '', '', '03-01-2018', '', 'ACTIVE', '', '2018-07-27 18:34:51', '0000-00-00'), (259, 326, 'HDFC Jayblues', 'Online Payment', 10620, '', '', '', '', '', '', '', '03-01-2018', '', 'ACTIVE', '', '2018-07-27 18:35:34', '0000-00-00'), (260, 327, 'HDFC Jayblues', 'Cash', 30000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:36:24', '0000-00-00'), (261, 328, 'HDFC Jayblues', 'Cheque', 7000, '761785', '28-12-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:37:15', '0000-00-00'), (262, 329, 'HDFC Jayblues', 'Cheque', 20000, '260', '27-12-2017', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:39:03', '0000-00-00'), (263, 330, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:39:31', '0000-00-00'), (264, 331, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', '', '2018-07-27 18:40:05', '0000-00-00'), (265, 332, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '20-12-2017', '', 'ACTIVE', '', '2018-07-27 18:40:34', '0000-00-00'), (266, 334, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '31-01-2018', '', 'ACTIVE', '', '2018-07-27 18:42:04', '0000-00-00'), (267, 335, 'HDFC Jayblues', 'Cheque', 23600, '474605', '05-01-2018', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:42:52', '0000-00-00'), (268, 336, 'HDFC Jayblues', 'Cheque', 10000, '475106', '05-01-2018', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:43:37', '0000-00-00'), (269, 337, 'HDFC Jayblues', 'Cheque', 13570, '99836', '16-01-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:44:26', '0000-00-00'), (270, 338, 'HDFC Jayblues', 'Cheque', 5900, '65', '08-01-2018', 'Kotak Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:45:37', '0000-00-00'), (271, 339, 'HDFC Jayblues', 'Cheque', 32400, '198813', '16-01-2018', 'Oriental bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:46:30', '0000-00-00'), (272, 339, 'HDFC Jayblues', 'Cheque', 32400, '198813', '16-01-2018', 'Oriental bank', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-27 18:46:30', '0000-00-00'), (273, 340, 'HDFC Jayblues', 'Cheque', 9240, '898765', '11-01-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:47:36', '0000-00-00'), (274, 341, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-01-2018', '', 'ACTIVE', '', '2018-07-27 18:48:13', '0000-00-00'), (275, 343, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '17-01-2018', '', 'ACTIVE', '', '2018-07-27 18:48:55', '0000-00-00'), (276, 344, 'HDFC Jayblues', 'Cheque', 5900, '66', '18-01-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:49:42', '0000-00-00'), (277, 347, 'HDFC Jayblues', 'Online Payment', 4250, '', '', '', '', '', '', '', '27-12-2017', '', 'ACTIVE', '', '2018-07-27 18:50:14', '0000-00-00'), (278, 348, 'HDFC Jayblues', 'Online Payment', 10068, '', '', '', '', '', '', '', '24-01-2018', '', 'ACTIVE', '', '2018-07-27 18:50:49', '0000-00-00'), (279, 350, 'HDFC Jayblues', 'Cash', 35000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:51:24', '0000-00-00'), (280, 352, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '24-01-2018', '', 'ACTIVE', '', '2018-07-27 18:51:57', '0000-00-00'), (281, 354, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '24-01-2018', '', 'ACTIVE', '', '2018-07-27 18:52:33', '0000-00-00'), (282, 356, 'HDFC Jayblues', 'Cash', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:53:07', '0000-00-00'), (283, 358, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '31-01-2018', '', 'ACTIVE', '', '2018-07-27 18:53:49', '0000-00-00'), (284, 359, 'HDFC Jayblues', 'Cheque', 4000, '10', '01-02-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 18:55:06', '0000-00-00'), (285, 360, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:09:35', '0000-00-00'), (286, 361, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:10:04', '0000-00-00'), (287, 362, 'HDFC Jayblues', 'Cheque', 4130, '1428', '14-02-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:11:32', '0000-00-00'), (288, 363, 'HDFC Jayblues', 'Online Payment', 9100, '', '', '', '', '', '', '', '12-02-2018', '', 'ACTIVE', '', '2018-07-27 19:12:12', '0000-00-00'), (289, 364, 'HDFC Jayblues', 'Online Payment', 6160, '', '', '', '', '', '', '', '14-02-2018', '', 'ACTIVE', '', '2018-07-27 19:12:49', '0000-00-00'), (290, 365, 'HDFC Jayblues', 'Online Payment', 9250, '', '', '', '', '', '', '', '20-02-2018', '', 'ACTIVE', '', '2018-07-27 19:13:21', '0000-00-00'), (291, 367, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '19-02-2018', '', 'ACTIVE', '', '2018-07-27 19:13:54', '0000-00-00'), (292, 368, 'HDFC Jayblues', 'Cheque', 11800, '144', '19-02-2018', 'Kotak', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:14:42', '0000-00-00'), (293, 388, 'HDFC Jayblues', 'Cheque', 9000, '55915', '21-02-2018', 'Corporation Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:15:44', '0000-00-00'), (294, 370, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:16:10', '0000-00-00'), (295, 371, 'HDFC Jayblues', 'Cheque', 2500, '658', '22-02-2018', 'ICICI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:17:21', '0000-00-00'), (296, 372, 'HDFC Jayblues', 'Cheque', 8500, '810909', '22-02-2018', 'Yes bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:18:09', '0000-00-00'), (297, 374, 'HDFC Jayblues', 'Cash', 7080, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:18:45', '0000-00-00'), (298, 376, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:19:34', '0000-00-00'), (299, 377, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:19:54', '0000-00-00'), (300, 378, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:20:38', '0000-00-00'), (301, 379, 'HDFC Jayblues', 'Cheque', 5000, '15', '02-03-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:21:30', '0000-00-00'), (302, 343, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '02-03-2018', '', 'INACTIVE', '', '2018-07-27 19:22:19', '0000-00-00'), (303, 381, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '05-03-2018', '', 'ACTIVE', '', '2018-07-27 19:23:27', '0000-00-00'), (304, 383, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:25:36', '0000-00-00'), (305, 384, 'HDFC Jayblues', 'Cheque', 8850, '737', '08-03-2018', 'ICICI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-27 19:26:19', '0000-00-00'), (306, 385, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '08-03-2018', '', 'ACTIVE', '', '2018-07-27 19:26:49', '0000-00-00'), (307, 386, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:40:20', '0000-00-00'), (308, 387, 'HDFC Jayblues', 'Cheque', 8850, '', '', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:41:12', '0000-00-00'), (309, 369, 'HDFC Jayblues', 'Cheque', 9000, '64885', '16-03-2018', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:45:23', '0000-00-00'), (310, 389, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:46:33', '0000-00-00'), (311, 390, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '20-03-2018', '', 'ACTIVE', '', '2018-07-28 11:47:07', '0000-00-00'), (312, 391, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '15-03-2018', '', 'ACTIVE', '', '2018-07-28 11:47:39', '0000-00-00'), (313, 392, 'HDFC Jayblues', 'Cheque', 11000, '16429', '21-03-2018', 'J & K Bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:48:45', '0000-00-00'), (314, 393, 'HDFC Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '22-03-2018', '', 'ACTIVE', '', '2018-07-28 11:49:21', '0000-00-00'), (315, 395, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:51:38', '0000-00-00'), (316, 397, 'HDFC Jayblues', 'Cash', 25000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:52:05', '0000-00-00'), (317, 398, 'HDFC Jayblues', 'Cash', 1000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:52:32', '0000-00-00'), (318, 399, 'HDFC Jayblues', 'Cheque', 20500, '51', '28-03-2018', 'Hdfc bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 11:53:21', '0000-00-00'), (319, 400, 'HDFC Jayblues', 'Online Payment', 110000, '', '', '', '', '', '', '', '29-03-2018', '', 'ACTIVE', '', '2018-07-28 12:13:15', '0000-00-00'), (320, 401, 'HDFC Jayblues', 'Cash', 3000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:13:45', '0000-00-00'), (321, 317, 'HDFC Jayblues', 'Cheque', 143862, '', '18-05-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:17:57', '0000-00-00'), (322, 220, 'HDFC Jayblues', 'Online Payment', 162000, '', '', '', '', '', '', '', '09-04-2018', '', 'ACTIVE', '', '2018-07-28 12:19:44', '0000-00-00'), (323, 411, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:20:18', '0000-00-00'), (324, 403, 'HDFC Jayblues', 'Cheque', 5900, '', '20-04-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:21:03', '0000-00-00'), (325, 404, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '10-04-2018', '', 'ACTIVE', '', '2018-07-28 12:21:41', '0000-00-00'), (326, 405, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '11-04-2018', '', 'ACTIVE', '', '2018-07-28 12:22:17', '0000-00-00'), (327, 406, 'HDFC Jayblues', 'Cash', 8500, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:22:42', '0000-00-00'), (328, 407, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-04-2018', '', 'ACTIVE', '', '2018-07-28 12:23:15', '0000-00-00'), (329, 407, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-04-2018', '', 'INACTIVE', '', '2018-07-28 12:23:15', '0000-00-00'), (330, 409, 'HDFC Jayblues', 'Online Payment', 14750, '', '', '', '', '', '', '', '20-04-2018', '', 'ACTIVE', '', '2018-07-28 12:24:13', '0000-00-00'), (331, 486, 'HDFC Jayblues', 'Cheque', 11210, '683666', '17-04-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:26:15', '0000-00-00'), (332, 412, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '19-04-2018', '', 'ACTIVE', '', '2018-07-28 12:27:04', '0000-00-00'), (333, 423, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '21-04-2018', '', 'ACTIVE', '', '2018-07-28 12:32:13', '0000-00-00'), (334, 415, 'SBI Jayblues', 'Cash', 12000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:33:52', '0000-00-00'), (335, 416, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:34:16', '0000-00-00'), (336, 417, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '26-04-2018', '', 'ACTIVE', '', '2018-07-28 12:34:49', '0000-00-00'), (337, 418, 'HDFC Jayblues', 'Cheque', 6000, '', '30-04-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 12:35:54', '0000-00-00'), (338, 419, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '27-04-2018', '', 'ACTIVE', '', '2018-07-28 12:36:31', '0000-00-00'), (339, 468, 'HDFC Jayblues', 'Online Payment', 23600, '', '', '', '', '', '', '', '18-05-18', '', 'INACTIVE', '', '2018-07-28 13:10:28', '0000-00-00'), (340, 472, 'HDFC Jayblues', 'Online Payment', 6900, '', '', '', '', '', '', '', '03-05-2018', '', 'ACTIVE', '', '2018-07-28 13:11:35', '2019-03-21'), (341, 422, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '03-05-18', '', 'ACTIVE', '', '2018-07-28 13:12:09', '0000-00-00'), (342, 481, 'HDFC Jayblues', 'Cheque', 8000, '000287', '08-05-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:13:05', '0000-00-00'), (343, 508, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '08-05-2018', '', 'ACTIVE', '', '2018-07-28 13:13:37', '0000-00-00'), (344, 483, 'HDFC Jayblues', 'Online Payment', 147500, '', '', '', '', '', '', '', '18-05-2018', '', 'ACTIVE', '', '2018-07-28 13:14:20', '0000-00-00'), (345, 416, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-28 13:14:56', '0000-00-00'), (346, 414, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:15:25', '0000-00-00'), (347, 486, 'HDFC Jayblues', 'Online Payment', 11210, '', '', '', '', '', '', '', '18-05-2018', '', 'INACTIVE', '', '2018-07-28 13:16:49', '0000-00-00'), (348, 425, 'HDFC Jayblues', 'Online Payment', 8295, '', '', '', '', '', '', '', '28-07-2018', '', 'ACTIVE', '', '2018-07-28 13:17:22', '0000-00-00'), (349, 488, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '14-05-2018', '', 'ACTIVE', '', '2018-07-28 13:17:53', '0000-00-00'), (350, 427, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '22-05-2018', '', 'ACTIVE', '', '2018-07-28 13:18:31', '2018-08-17'); INSERT INTO `invoice_payments` (`payment_id`, `invoice_id`, `favour_of`, `payment_type`, `amount`, `cheque_no`, `cheque_date`, `bank_name`, `branch_name`, `dd_no`, `dd_date`, `utr_no`, `online_date`, `collected_by`, `delete_status`, `added_by`, `created_at`, `updated_at`) VALUES (351, 490, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '24-05-2018', '', 'ACTIVE', '', '2018-07-28 13:21:11', '0000-00-00'), (352, 429, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '25-05-2018', '', 'ACTIVE', '', '2018-07-28 13:22:10', '0000-00-00'), (353, 492, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '25-05-2018', '', 'ACTIVE', '', '2018-07-28 13:22:47', '2018-08-14'), (354, 493, 'HDFC Jayblues', 'Cheque', 4720, '', '29-05-2018', 'NEFT', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:24:50', '0000-00-00'), (355, 432, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '18-05-2018', '', 'ACTIVE', '', '2018-07-28 13:25:22', '0000-00-00'), (356, 496, 'HDFC Jayblues', 'Online Payment', 9000, '', '', '', '', '', '', '', '11-07-2018', '', 'ACTIVE', '', '2018-07-28 13:26:40', '2018-08-17'), (357, 450, 'HDFC Jayblues', 'Online Payment', 12270, '', '', '', '', '', '', '', '16-07-2018', '', 'ACTIVE', '', '2018-07-28 13:27:17', '0000-00-00'), (358, 146, 'HDFC Jayblues', 'Cheque', 6000, '786465', '09-04-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:33:08', '0000-00-00'), (359, 146, 'HDFC Jayblues', 'Cheque', 6650, '786466', '12-04-2017', 'canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:34:56', '0000-00-00'), (360, 150, 'HDFC Jayblues', 'Cash', 4900, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:35:45', '0000-00-00'), (361, 167, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:46:28', '0000-00-00'), (362, 166, 'HDFC Jayblues', 'Cheque', 13685, '371614', '17-05-2017', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:51:02', '0000-00-00'), (363, 169, 'HDFC Jayblues', 'Online Payment', 9400, '', '', '', '', '', '', '', '04-06-2017', '', 'ACTIVE', '', '2018-07-28 13:51:39', '0000-00-00'), (364, 143, 'HDFC Jayblues', 'Online Payment', 6500, '', '', '', '', '', '', '', '10-05-2017', '', 'ACTIVE', '', '2018-07-28 13:55:22', '0000-00-00'), (365, 173, 'HDFC Jayblues', 'Cash', 7450, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:55:53', '0000-00-00'), (366, 176, 'HDFC Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:56:42', '0000-00-00'), (367, 184, 'HDFC Jayblues', 'Online Payment', 17500, '', '', '', '', '', '', '', '19-06-2017', '', 'ACTIVE', '', '2018-07-28 13:57:38', '0000-00-00'), (368, 185, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:58:13', '0000-00-00'), (369, 188, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:58:54', '0000-00-00'), (370, 190, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 13:59:45', '0000-00-00'), (371, 196, 'HDFC Jayblues', 'Cheque', 15000, '39256', '28-06-2017', 'National Co-operative bank ', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 14:01:00', '0000-00-00'), (372, 223, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 14:02:28', '0000-00-00'), (373, 229, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '26-10-2017', '', 'ACTIVE', '', '2018-07-28 14:03:23', '0000-00-00'), (374, 230, 'SBI Jayblues', 'Cheque', 10000, '824543', '23-08-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 14:04:31', '0000-00-00'), (375, 235, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '30-10-2017', '', 'ACTIVE', '', '2018-07-28 14:05:12', '0000-00-00'), (376, 246, 'HDFC Jayblues', 'Cheque', 5000, '294150', '06-09-2017', 'Axis bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 14:06:17', '0000-00-00'), (377, 247, 'HDFC Jayblues', 'Cheque', 7610, '30', '13-03-2017', 'Kotak Mahendra bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 14:07:35', '0000-00-00'), (378, 258, 'HDFC Jayblues', 'Cheque', 8000, '88868', '21-09-2017', 'Bank of India', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:35:29', '0000-00-00'), (379, 269, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:36:33', '0000-00-00'), (380, 273, 'SBI Jayblues', 'Cheque', 8000, '118009', '20-10-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:37:35', '0000-00-00'), (381, 280, 'HDFC Jayblues', 'Cash', 2700, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:38:09', '0000-00-00'), (382, 312, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:38:44', '0000-00-00'), (383, 515, 'HDFC Jayblues', 'Cheque', 6000, '353031', '14-11-2017', 'Yes bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:39:34', '0000-00-00'), (384, 351, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '05-12-2017', '', 'ACTIVE', '', '2018-07-28 15:40:33', '0000-00-00'), (385, 312, 'SBI Jayblues', 'Cheque', 7420, '981070', '15-12-2017', 'SBI', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:41:35', '0000-00-00'), (386, 411, 'HDFC Jayblues', 'Cash', 14000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:43:05', '0000-00-00'), (387, 409, 'HDFC Jayblues', 'Cash', 14000, '', '', '', '', '', '', '', '', '', 'INACTIVE', '', '2018-07-28 15:43:38', '0000-00-00'), (388, 411, 'SBI Jayblues', 'Cash', 14000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:44:39', '0000-00-00'), (389, 432, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '31-05-2018', '', 'ACTIVE', '', '2018-07-28 15:45:20', '0000-00-00'), (390, 158, 'HDFC Jayblues', 'Cheque', 16450, '333724', '23-05-2017', 'Karnataka bank', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:46:48', '0000-00-00'), (391, 161, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:47:48', '0000-00-00'), (392, 210, 'HDFC Jayblues', 'Cheque', 9000, '4', '07-08-2017', 'bank of baroda', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:49:03', '0000-00-00'), (393, 223, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', '', '2018-07-28 15:50:08', '0000-00-00'), (394, 519, 'HDFC Jayblues', 'Online Payment', 19650, '', '', '', '', '', '', '', '31-07-2018', '', 'ACTIVE', '', '2018-07-31 16:51:59', '0000-00-00'), (395, 520, 'HDFC Jayblues', 'Cash', 1750, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Admin', '2018-08-06 11:41:28', '0000-00-00'), (396, 521, 'HDFC Jayblues', 'Cheque', 12650, '606513', '03-07-2017', 'SBI', 'CV raman nagar', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 11:50:57', '0000-00-00'), (397, 526, 'HDFC Jayblues', 'Cheque', 6000, '786465', '04-09-2017', 'CANARA BANK', ' KSFC complex ', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 12:29:40', '0000-00-00'), (398, 526, 'HDFC Jayblues', 'Cheque', 6650, '786466', '04-12-2017', 'CANARA BANK', ' KSFC complex ', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 12:32:53', '0000-00-00'), (399, 527, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 13:33:20', '0000-00-00'), (400, 529, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 13:51:42', '0000-00-00'), (401, 529, 'HDFC Jayblues', 'Cheque', 10000, '7552', '29-05-2017', 'AXIS BANK', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 13:54:18', '0000-00-00'), (402, 529, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 13:56:27', '0000-00-00'), (403, 531, 'HDFC Jayblues', 'Online Payment', 9150, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 15:38:38', '0000-00-00'), (404, 170, 'HDFC Jayblues', 'Online Payment', 8338, '', '', '', '', '', '', 'NO', '08-06-2017', 'IMPS', 'ACTIVE', 'Admin', '2018-08-06 15:42:01', '2018-08-06'), (405, 170, 'HDFC Jayblues', 'Online Payment', 8338, '', '', '', '', '', '', 'no', '10-06-2017', 'cash', 'ACTIVE', 'Admin', '2018-08-06 15:43:27', '2018-08-06'), (406, 171, 'HDFC Jayblues', 'Online Payment', 6500, '', '', '', '', '', '', '', '10-05-2017', '', 'ACTIVE', 'Admin', '2018-08-06 15:50:01', '0000-00-00'), (407, 537, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', 'HDFC-ajay', 'ACTIVE', 'Admin', '2018-08-06 16:04:36', '0000-00-00'), (408, 537, 'HDFC Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 16:06:11', '0000-00-00'), (409, 537, 'HDFC Jayblues', 'Online Payment', 2625, '', '', '', '', '', '', 'IMPS', '21-05-2017', '', 'ACTIVE', 'Admin', '2018-08-06 16:07:37', '0000-00-00'), (410, 187, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 16:21:45', '0000-00-00'), (411, 191, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 16:28:14', '0000-00-00'), (412, 192, 'HDFC Jayblues', 'Online Payment', 28125, '', '', '', '', '', '', 'NIFT', '17-06-2017', '', 'ACTIVE', 'Admin', '2018-08-06 16:31:43', '0000-00-00'), (413, 198, 'HDFC Jayblues', 'Cheque', 5750, '69051', '22-06-2017', 'CORPARATION BANK', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 16:43:29', '0000-00-00'), (414, 493, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Admin', '2018-08-06 16:49:31', '0000-00-00'), (415, 430, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 16:56:21', '0000-00-00'), (416, 429, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Admin', '2018-08-06 17:00:17', '0000-00-00'), (417, 544, 'HDFC Jayblues', 'Cheque', 17000, '74216', '12-07-2017', 'ICICI BANK', 'JP NAGAR', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:07:18', '0000-00-00'), (418, 213, 'HDFC Jayblues', 'Online Payment', 126900, '', '', '', '', '', '', '', '16-08-2017', '', 'ACTIVE', 'Admin', '2018-08-06 17:09:41', '2018-08-10'), (419, 426, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:10:05', '0000-00-00'), (420, 217, 'HDFC Jayblues', 'Online Payment', 4750, '', '', '', '', '', '', 'IMPS', '07-08-2017', '', 'ACTIVE', 'Admin', '2018-08-06 17:15:30', '0000-00-00'), (421, 424, 'HDFC Jayblues', 'Online Payment', 11210, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:17:33', '0000-00-00'), (422, 423, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:24:55', '0000-00-00'), (423, 545, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:30:35', '0000-00-00'), (424, 483, 'HDFC Jayblues', 'Online Payment', 147500, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Admin', '2018-08-06 17:33:37', '0000-00-00'), (425, 546, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:38:46', '0000-00-00'), (426, 481, 'HDFC Jayblues', 'Cheque', 8000, '', '', 'idfc', '', '', '', '', '', '', 'INACTIVE', 'Admin', '2018-08-06 17:44:15', '0000-00-00'), (427, 480, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:46:02', '0000-00-00'), (428, 474, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:48:20', '0000-00-00'), (429, 420, 'HDFC Jayblues', 'Online Payment', 23600, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 17:51:19', '0000-00-00'), (430, 413, 'HDFC Jayblues', 'Cheque', 8500, '', '', 'hdfc', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:00:50', '0000-00-00'), (431, 410, 'HDFC Jayblues', 'Cheque', 11210, '', '', 'hdfc', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:06:36', '0000-00-00'), (432, 494, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:09:44', '0000-00-00'), (433, 261, 'HDFC Jayblues', 'Cheque', 8000, '622857', '14-03-2017', 'VIJAYA BANK', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:29:18', '0000-00-00'), (434, 220, 'HDFC Jayblues', 'Online Payment', 162000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:30:29', '0000-00-00'), (435, 262, 'HDFC Jayblues', 'Cheque', 67500, '174406', '06-08-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:33:24', '0000-00-00'), (436, 551, 'HDFC Jayblues', 'Cheque', 143862, '', '', 'hdfc', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:37:58', '0000-00-00'), (437, 552, 'HDFC Jayblues', 'Online Payment', 32055, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:41:59', '2019-03-27'), (438, 553, 'SBI Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 18:44:39', '0000-00-00'), (439, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (440, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (441, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (442, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (443, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (444, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (445, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (446, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:04', '0000-00-00'), (447, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'ACTIVE', 'Admin', '2018-08-06 18:46:05', '0000-00-00'), (448, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:05', '0000-00-00'), (449, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:05', '0000-00-00'), (450, 270, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', 'CASH', 'INACTIVE', 'Admin', '2018-08-06 18:46:05', '0000-00-00'), (451, 554, 'HDFC Jayblues', 'Cheque', 4000, '761784', '08-11-2017', 'canara bank', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-06 19:07:16', '0000-00-00'), (452, 321, 'HDFC Jayblues', 'Online Payment', 85500, '', '', '', '', '', '', '', '27-12-2017', '', 'ACTIVE', 'Admin', '2018-08-07 11:01:09', '0000-00-00'), (453, 555, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '17-01-2018', '', 'ACTIVE', 'Admin', '2018-08-07 11:23:45', '0000-00-00'), (454, 556, 'HDFC Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', 'SBI', 'ACTIVE', 'Admin', '2018-08-07 11:52:12', '0000-00-00'), (455, 382, 'HDFC Jayblues', 'Cheque', 4720, '74241', '06-03-2018', 'ICICI', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-07 11:58:39', '0000-00-00'), (456, 557, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', '10000', 'ACTIVE', 'Admin', '2018-08-07 12:04:29', '0000-00-00'), (457, 556, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '29-03-2018', '', 'ACTIVE', 'Admin', '2018-08-07 12:12:15', '0000-00-00'), (458, 560, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '07-08-2018', '', 'ACTIVE', 'Admin', '2018-08-09 17:33:28', '0000-00-00'), (459, 561, 'HDFC Jayblues', 'Online Payment', 5400, '', '', '', '', '', '', '', '06-08-2018', '', 'ACTIVE', 'Admin', '2018-08-09 17:39:47', '0000-00-00'), (460, 562, 'SBI Jayblues', 'Cheque', 4720, '20067', '01-08-2018', 'Axis Bank', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-09 17:48:30', '0000-00-00'), (461, 563, 'SBI Jayblues', 'Cheque', 7500, '921225', '08-08-2018', 'Canarabank', 'Jayanagar Shopping complex', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-09 20:02:32', '0000-00-00'), (462, 516, 'HDFC Jayblues', 'Online Payment', 5283, '', '', '', '', '', '', '', '04-08-2018', '', 'ACTIVE', 'Admin', '2018-08-09 20:04:28', '0000-00-00'), (463, 564, 'HDFC Jayblues', 'Online Payment', 1750, '', '', '', '', '', '', '', '11-08-2018', '', 'ACTIVE', 'Admin', '2018-08-11 15:59:59', '0000-00-00'), (468, 565, 'SBI Jayblues', 'Cheque', 8000, '046576', '20-08-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-13 13:27:58', '2018-08-22'), (469, 566, 'SBI Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '13-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-13 17:36:34', '2018-08-13'), (470, 517, 'HDFC Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '13-08-2018', '', 'ACTIVE', 'Admin', '2018-08-13 19:29:13', '0000-00-00'), (471, 506, 'HDFC Jayblues', 'Online Payment', 79650, '', '', '', '', '', '', '', '11-07-2018', '', 'ACTIVE', 'Admin', '2018-08-14 13:21:38', '0000-00-00'), (472, 525, 'SBI Jayblues', 'Cheque', 30000, '', '25-07-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-08-14 13:45:19', '0000-00-00'), (473, 569, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '14-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-14 15:42:58', '0000-00-00'), (474, 570, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '14-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-14 16:38:13', '0000-00-00'), (475, 574, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '17-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-17 17:37:44', '0000-00-00'), (476, 575, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-08-20 11:40:02', '0000-00-00'), (477, 572, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '18-08-2018', '', 'ACTIVE', 'Admin', '2018-08-22 12:20:55', '2018-08-22'), (480, 577, 'HDFC Jayblues', 'Online Payment', 5614, '', '', '', '', '', '', '', '22-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-22 16:36:07', '2019-03-20'), (481, 348, 'HDFC Jayblues', 'Online Payment', 10068, '', '', '', '', '', '', '', '13-03-2018', '', 'ACTIVE', 'Admin', '2018-08-22 20:15:16', '2018-08-22'), (482, 578, 'HDFC Jayblues', 'Online Payment', 21900, '', '', '', '', '', '', '', '23-08-2018', '', 'INACTIVE', 'Admin', '2018-08-23 20:22:11', '0000-00-00'), (483, 579, 'HDFC Jayblues', 'Online Payment', 21900, '', '', '', '', '', '', '', '23-08-2018', '', 'ACTIVE', 'Admin', '2018-08-23 20:22:49', '0000-00-00'), (484, 460, 'HDFC Jayblues', 'Online Payment', 3450, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-25 16:45:22', '0000-00-00'), (485, 460, 'HDFC Jayblues', 'Online Payment', 3450, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-25 16:45:22', '0000-00-00'), (486, 460, 'HDFC Jayblues', 'Online Payment', 3450, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-25 16:45:22', '0000-00-00'), (487, 460, 'HDFC Jayblues', 'Online Payment', 3450, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-25 16:52:58', '0000-00-00'), (488, 461, 'HDFC Jayblues', 'Online Payment', 8912, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-25 16:54:18', '0000-00-00'), (489, 394, 'HDFC Jayblues', 'Online Payment', 108000, '', '', '', '', '', '', '', '04-04-2018', '', 'ACTIVE', 'Admin', '2018-08-25 16:58:45', '0000-00-00'), (490, 580, 'HDFC Jayblues', 'Online Payment', 4400, '', '', '', '', '', '', '', '27-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-27 13:43:06', '0000-00-00'), (491, 580, 'HDFC Jayblues', 'Online Payment', 320, '', '', '', '', '', '', '', '28-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-27 13:47:15', '0000-00-00'), (492, 25, 'HDFC Jayblues', 'Online Payment', 22151, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-27 17:20:16', '0000-00-00'), (493, 581, 'HDFC Jayblues', 'Online Payment', 104125, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-27 18:24:41', '0000-00-00'), (494, 582, 'SBI Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-27 18:28:41', '0000-00-00'), (495, 27, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-27 18:32:25', '0000-00-00'), (496, 584, 'HDFC Jayblues', 'Cheque', 15000, '54147', '', 'Corporation bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-27 19:02:38', '0000-00-00'), (497, 1, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '15-10-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-27 19:15:32', '0000-00-00'), (498, 585, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '27-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 11:21:07', '0000-00-00'), (499, 588, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '27-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 12:27:20', '0000-00-00'), (500, 2, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '12-10-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 14:55:51', '0000-00-00'), (501, 3, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '02-11-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 14:58:30', '0000-00-00'), (502, 4, 'HDFC Jayblues', 'Online Payment', 57000, '', '', '', '', '', '', '', '02-11-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 14:59:27', '0000-00-00'), (503, 5, 'HDFC Jayblues', 'Online Payment', 28750, '', '', '', '', '', '', '', '01-12-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:00:29', '0000-00-00'), (504, 6, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-12-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:01:50', '0000-00-00'), (505, 7, 'HDFC Jayblues', 'Online Payment', 10550, '', '', '', '', '', '', '', '28-12-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:03:17', '0000-00-00'), (506, 8, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:04:06', '0000-00-00'), (507, 9, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '25-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:09:50', '0000-00-00'), (508, 10, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '20-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:11:11', '0000-00-00'), (509, 11, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:12:00', '0000-00-00'), (510, 12, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '15-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:13:11', '0000-00-00'), (511, 13, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '05-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:14:09', '0000-00-00'), (512, 15, 'HDFC Jayblues', 'Online Payment', 26227, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:15:02', '0000-00-00'), (513, 16, 'HDFC Jayblues', 'Online Payment', 21100, '', '', '', '', '', '', '', '19-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:18:32', '0000-00-00'), (514, 17, 'HDFC Jayblues', 'Online Payment', 17535, '', '', '', '', '', '', '', '22-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:19:17', '0000-00-00'), (515, 18, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-03-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:19:51', '0000-00-00'), (516, 20, 'HDFC Jayblues', 'Online Payment', 21000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:21:25', '0000-00-00'), (517, 21, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '05-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:23:47', '0000-00-00'), (518, 22, 'HDFC Jayblues', 'Online Payment', 106250, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:25:40', '0000-00-00'), (519, 24, 'HDFC Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '11-03-2016', '', 'ACTIVE', 'Admin', '2018-08-28 15:34:07', '0000-00-00'), (520, 26, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '06-04-2016', '', 'ACTIVE', 'Admin', '2018-08-28 15:36:29', '0000-00-00'), (521, 23, 'HDFC Jayblues', 'Online Payment', 14580, '', '', '', '', '', '', '', '04-03-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 15:39:00', '0000-00-00'), (522, 28, 'HDFC Jayblues', 'Online Payment', 5983, '', '', '', '', '', '', '', '26-04-2016', '', 'ACTIVE', 'Admin', '2018-08-28 15:46:23', '0000-00-00'), (523, 29, 'HDFC Jayblues', 'Online Payment', 35000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 16:08:28', '0000-00-00'), (524, 30, 'HDFC Jayblues', 'Online Payment', 26375, '', '', '', '', '', '', '', '07-05-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 16:09:26', '0000-00-00'), (525, 31, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '15-05-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:10:29', '0000-00-00'), (526, 32, 'HDFC Jayblues', 'Online Payment', 26375, '', '', '', '', '', '', '', '20-07-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:17:44', '0000-00-00'), (527, 33, 'HDFC Jayblues', 'Online Payment', 24265, '', '', '', '', '', '', '', '02-11-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:20:39', '0000-00-00'), (528, 34, 'HDFC Jayblues', 'Online Payment', 23000, '', '', '', '', '', '', '', '08-11-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:21:19', '0000-00-00'), (529, 35, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '02-09-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:22:20', '0000-00-00'), (530, 36, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-10-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:22:49', '0000-00-00'), (531, 37, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '02-11-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:23:33', '0000-00-00'), (532, 38, 'HDFC Jayblues', 'Online Payment', 57000, '', '', '', '', '', '', '', '02-11-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:24:36', '0000-00-00'), (533, 39, 'HDFC Jayblues', 'Online Payment', 28750, '', '', '', '', '', '', '', '01-12-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:25:19', '0000-00-00'), (534, 40, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-12-2015', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:25:47', '0000-00-00'), (535, 41, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:26:16', '0000-00-00'), (536, 42, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '25-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:26:51', '0000-00-00'), (537, 43, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '20-01-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:27:14', '0000-00-00'), (538, 44, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:27:36', '0000-00-00'), (539, 45, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '15-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:28:54', '0000-00-00'), (540, 46, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '05-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:29:32', '0000-00-00'), (541, 47, 'HDFC Jayblues', 'Online Payment', 106250, '', '', '', '', '', '', '', '15-02-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:30:02', '0000-00-00'), (542, 49, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '01-03-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:30:53', '0000-00-00'), (543, 51, 'HDFC Jayblues', 'Online Payment', 21000, '', '', '', '', '', '', '', '03-03-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:31:30', '0000-00-00'), (544, 52, 'HDFC Jayblues', 'Online Payment', 60000, '', '', '', '', '', '', '', '04-04-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:32:07', '0000-00-00'), (545, 53, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '06-04-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:46:28', '0000-00-00'), (546, 55, 'HDFC Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '14-05-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:46:59', '0000-00-00'), (547, 57, 'HDFC Jayblues', 'Online Payment', 6800, '', '', '', '', '', '', '', '26-05-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:47:56', '0000-00-00'), (548, 58, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '31-05-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:48:27', '0000-00-00'), (549, 61, 'HDFC Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '01-06-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:49:04', '0000-00-00'), (550, 75, 'HDFC Jayblues', 'Online Payment', 23500, '', '', '', '', '', '', '', '01-08-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:55:06', '0000-00-00'), (551, 95, 'HDFC Jayblues', 'Online Payment', 5750, '', '', '', '', '', '', '', '04-10-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:56:37', '0000-00-00'), (552, 109, 'HDFC Jayblues', 'Online Payment', 56062, '', '', '', '', '', '', '', '24-12-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:57:50', '0000-00-00'), (553, 110, 'HDFC Jayblues', 'Online Payment', 24265, '', '', '', '', '', '', '', '05-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 17:59:01', '0000-00-00'), (554, 111, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '09-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:13:21', '0000-00-00'), (555, 112, 'HDFC Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '09-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:13:53', '0000-00-00'), (556, 113, 'HDFC Jayblues', 'Online Payment', 1000, '', '', '', '', '', '', '', '09-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:14:25', '0000-00-00'), (557, 128, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '02-03-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:15:01', '0000-00-00'), (558, 129, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '07-03-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:15:36', '0000-00-00'), (559, 136, 'HDFC Jayblues', 'Online Payment', 18000, '', '', '', '', '', '', '', '23-03-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:16:07', '0000-00-00'), (560, 140, 'HDFC Jayblues', 'Online Payment', 13500, '', '', '', '', '', '', '', '17-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:16:37', '0000-00-00'), (561, 141, 'HDFC Jayblues', 'Online Payment', 12500, '', '', '', '', '', '', '', '03-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:17:10', '0000-00-00'), (562, 142, 'HDFC Jayblues', 'Cash', 14000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:18:29', '0000-00-00'), (563, 144, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:18:53', '0000-00-00'), (564, 145, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '08-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:19:45', '0000-00-00'), (565, 152, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '17-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:20:40', '0000-00-00'), (566, 153, 'HDFC Jayblues', 'Online Payment', 9920, '', '', '', '', '', '', '', '18-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:21:51', '0000-00-00'), (567, 154, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '24-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:25:19', '0000-00-00'), (568, 155, 'HDFC Jayblues', 'Online Payment', 27000, '', '', '', '', '', '', '', '26-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:29:40', '0000-00-00'), (569, 159, 'HDFC Jayblues', 'Online Payment', 1150, '', '', '', '', '', '', '', '28-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:30:13', '0000-00-00'), (570, 160, 'HDFC Jayblues', 'Online Payment', 43125, '', '', '', '', '', '', '', '24-07-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:30:55', '0000-00-00'), (571, 162, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '05-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:31:33', '0000-00-00'), (572, 165, 'HDFC Jayblues', 'Online Payment', 37500, '', '', '', '', '', '', '', '05-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:32:07', '0000-00-00'), (573, 168, 'HDFC Jayblues', 'Online Payment', 9150, '', '', '', '', '', '', '', '06-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:32:46', '0000-00-00'), (574, 177, 'HDFC Jayblues', 'Online Payment', 4140, '', '', '', '', '', '', '', '24-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:33:58', '0000-00-00'), (575, 180, 'HDFC Jayblues', 'Online Payment', 37500, '', '', '', '', '', '', '', '31-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:35:11', '0000-00-00'), (576, 181, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '30-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:35:56', '0000-00-00'), (577, 186, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '07-06-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:45:44', '0000-00-00'), (578, 199, 'HDFC Jayblues', 'Online Payment', 5750, '', '', '', '', '', '', '', '23-06-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:46:05', '0000-00-00'), (579, 218, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '27-07-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:50:38', '0000-00-00'), (580, 231, 'HDFC Jayblues', 'Online Payment', 70800, '', '', '', '', '', '', '', '04-08-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:51:08', '0000-00-00'), (581, 240, 'HDFC Jayblues', 'Online Payment', 9500, '', '', '', '', '', '', '', '07-08-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:51:38', '0000-00-00'), (582, 254, 'HDFC Jayblues', 'Online Payment', 6500, '', '', '', '', '', '', '', '06-09-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:52:41', '0000-00-00'), (583, 265, 'HDFC Jayblues', 'Online Payment', 70800, '', '', '', '', '', '', '', '20-09-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:53:03', '0000-00-00'), (584, 274, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '11-10-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:53:23', '0000-00-00'), (585, 275, 'HDFC Jayblues', 'Online Payment', 35000, '', '', '', '', '', '', '', '12-10-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:53:43', '0000-00-00'), (586, 276, 'HDFC Jayblues', 'Online Payment', 18800, '', '', '', '', '', '', '', '12-10-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:54:11', '0000-00-00'), (587, 291, 'HDFC Jayblues', 'Cash', 50000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:54:28', '0000-00-00'), (588, 300, 'HDFC Jayblues', 'Online Payment', 86140, '', '', '', '', '', '', '', '27-11-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:56:13', '0000-00-00'), (589, 301, 'HDFC Jayblues', 'Online Payment', 236000, '', '', '', '', '', '', '', '27-11-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:56:39', '0000-00-00'), (590, 302, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '29-11-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:57:08', '0000-00-00'), (591, 302, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '01-12-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:58:07', '0000-00-00'), (592, 304, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '01-12-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:58:33', '0000-00-00'), (593, 305, 'HDFC Jayblues', 'Online Payment', 77000, '', '', '', '', '', '', '', '01-12-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:58:57', '0000-00-00'), (594, 333, 'HDFC Jayblues', 'Online Payment', 354000, '', '', '', '', '', '', '', '01-01-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 18:59:23', '0000-00-00'), (595, 342, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:00:23', '0000-00-00'), (596, 346, 'HDFC Jayblues', 'Cash', 3500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:00:35', '0000-00-00'), (597, 349, 'HDFC Jayblues', 'Online Payment', 118000, '', '', '', '', '', '', '', '23-01-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:01:29', '0000-00-00'), (598, 355, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '30-01-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:01:51', '0000-00-00'), (599, 357, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '31-01-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:02:20', '2018-08-28'), (600, 366, 'HDFC Jayblues', 'Online Payment', 118000, '', '', '', '', '', '', '', '19-02-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:03:32', '0000-00-00'), (601, 373, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '24-02-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:03:54', '0000-00-00'), (602, 375, 'HDFC Jayblues', 'Cash', 9000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-28 19:04:10', '0000-00-00'), (603, 380, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '02-03-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:27:19', '0000-00-00'), (604, 396, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '26-03-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:28:10', '0000-00-00'), (605, 402, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '08-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:28:59', '0000-00-00'), (606, 428, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '25-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:31:58', '0000-00-00'), (607, 431, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '28-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:33:30', '0000-00-00'), (608, 433, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '31-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:36:15', '0000-00-00'), (609, 434, 'HDFC Jayblues', 'Online Payment', 9000, '', '', '', '', '', '', '', '01-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:36:34', '0000-00-00'), (610, 435, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:36:55', '0000-00-00'), (611, 436, 'HDFC Jayblues', 'Cash', 12500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:37:08', '0000-00-00'), (612, 438, 'HDFC Jayblues', 'Online Payment', 11500, '', '', '', '', '', '', '', '06-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:38:34', '0000-00-00'), (613, 439, 'HDFC Jayblues', 'Online Payment', 9500, '', '', '', '', '', '', '', '06-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:38:55', '0000-00-00'), (614, 440, 'HDFC Jayblues', 'Online Payment', 9350, '', '', '', '', '', '', '', '28-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:41:41', '0000-00-00'), (615, 441, 'HDFC Jayblues', 'Online Payment', 12390, '', '', '', '', '', '', '', '29-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:42:09', '0000-00-00'), (616, 443, 'HDFC Jayblues', 'Online Payment', 31152, '', '', '', '', '', '', '', '29-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:42:36', '0000-00-00'), (617, 444, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:42:54', '0000-00-00'), (618, 446, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '18-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:43:48', '0000-00-00'), (619, 447, 'HDFC Jayblues', 'Cash', 2360, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:44:06', '2019-03-27'), (620, 449, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '08-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:45:15', '0000-00-00'), (621, 451, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '23-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:47:06', '0000-00-00'), (622, 452, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '29-08-2018,29-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:47:33', '0000-00-00'), (623, 453, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '19-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:47:52', '0000-00-00'), (624, 454, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '09-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:48:11', '0000-00-00'), (625, 456, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '16-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:48:27', '0000-00-00'), (626, 458, 'HDFC Jayblues', 'Online Payment', 1749, '', '', '', '', '', '', '', '19-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:48:48', '0000-00-00'), (627, 459, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '06-12-2016', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:49:02', '0000-00-00'), (628, 466, 'HDFC Jayblues', 'Online Payment', 2875, '', '', '', '', '', '', '', '09-01-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:49:52', '0000-00-00'), (629, 477, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '29-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:50:17', '0000-00-00'), (630, 479, 'HDFC Jayblues', 'Online Payment', 5865, '', '', '', '', '', '', '', '10-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:50:35', '0000-00-00'), (631, 482, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '08-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:50:49', '0000-00-00'), (632, 484, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:51:02', '0000-00-00'), (633, 485, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:51:14', '0000-00-00'), (634, 487, 'HDFC Jayblues', 'Online Payment', 8295, '', '', '', '', '', '', '', '18-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:51:37', '0000-00-00'), (635, 489, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '22-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:52:02', '0000-00-00'), (636, 491, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '26-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:52:24', '0000-00-00'), (637, 495, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '31-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:53:25', '0000-00-00'), (638, 497, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:59:20', '0000-00-00'), (639, 498, 'HDFC Jayblues', 'Cash', 12500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 11:59:39', '0000-00-00'), (640, 499, 'HDFC Jayblues', 'Online Payment', 11500, '', '', '', '', '', '', '', '06-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:00:03', '0000-00-00'), (641, 500, 'HDFC Jayblues', 'Online Payment', 8500, '', '', '', '', '', '', '', '26-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:00:27', '0000-00-00'), (642, 502, 'HDFC Jayblues', 'Online Payment', 9500, '', '', '', '', '', '', '', '26-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:00:56', '0000-00-00'), (643, 503, 'HDFC Jayblues', 'Online Payment', 9350, '', '', '', '', '', '', '', '28-06-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:01:23', '0000-00-00'), (644, 505, 'HDFC Jayblues', 'Online Payment', 12390, '', '', '', '', '', '', '', '26-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:01:40', '0000-00-00'), (645, 507, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:02:05', '0000-00-00'), (646, 509, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:02:33', '0000-00-00'), (647, 511, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '23-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:02:53', '0000-00-00'), (648, 512, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '19-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:03:11', '0000-00-00'), (649, 513, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:03:30', '0000-00-00'), (650, 514, 'HDFC Jayblues', 'Cheque', 6750, '', '22-07-2018', 'Canara Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:09:31', '0000-00-00'), (651, 518, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '31-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:11:52', '0000-00-00'), (652, 522, 'HDFC Jayblues', 'Online Payment', 15576, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:12:15', '0000-00-00'), (653, 523, 'HDFC Jayblues', 'Online Payment', 14000, '', '', '', '', '', '', '', '28-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:12:38', '0000-00-00'), (654, 524, 'HDFC Jayblues', 'Online Payment', 2875, '', '', '', '', '', '', '', '08-04-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:12:57', '0000-00-00'), (655, 528, 'HDFC Jayblues', 'Online Payment', 43125, '', '', '', '', '', '', '', '24-04-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:13:15', '0000-00-00'), (656, 530, 'HDFC Jayblues', 'Online Payment', 43125, '', '', '', '', '', '', '', '05-05-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:13:39', '0000-00-00'), (657, 532, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '23-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:13:58', '0000-00-00'), (658, 533, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '23-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:14:13', '0000-00-00'), (659, 534, 'HDFC Jayblues', 'Online Payment', 2360, '', '', '', '', '', '', '', '20-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:14:29', '0000-00-00'), (660, 535, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '16-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:14:51', '2018-11-23'), (661, 536, 'HDFC Jayblues', 'Online Payment', 8625, '', '', '', '', '', '', '', '29-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:15:27', '0000-00-00'), (662, 538, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:15:44', '0000-00-00'), (663, 539, 'HDFC Jayblues', 'Online Payment', 15756, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:16:00', '0000-00-00'), (664, 540, 'HDFC Jayblues', 'Online Payment', 9350, '', '', '', '', '', '', '', '09-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:16:15', '0000-00-00'), (665, 541, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:16:26', '0000-00-00'), (666, 542, 'HDFC Jayblues', 'Online Payment', 15576, '', '', '', '', '', '', '', '12-07-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:16:48', '0000-00-00'), (667, 543, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '28-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:17:05', '0000-00-00'), (668, 547, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '08-05-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:17:23', '0000-00-00'), (669, 548, 'HDFC Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:17:41', '0000-00-00'), (670, 549, 'HDFC Jayblues', 'Online Payment', 177000, '', '', '', '', '', '', '', '09-04-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:19:23', '0000-00-00'), (671, 550, 'HDFC Jayblues', 'Online Payment', 94400, '', '', '', '', '', '', '', '09-04-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:19:45', '0000-00-00'), (672, 558, 'HDFC Jayblues', 'Online Payment', 9920, '', '', '', '', '', '', '', '07-08-2018', '', 'INACTIVE', 'Shri priya ', '2018-08-29 12:20:05', '0000-00-00'), (673, 559, 'HDFC Jayblues', 'Online Payment', 9920, '', '', '', '', '', '', '', '18-04-2017', '', 'ACTIVE', 'Shri priya ', '2018-08-29 12:20:25', '0000-00-00'), (674, 591, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '29-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-08-29 14:07:49', '2018-08-29'), (675, 595, 'SBI Jayblues', 'Cheque', 37350, '878172', '30-08-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-09-01 11:38:23', '0000-00-00'), (676, 589, 'HDFC Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '30-08-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-01 11:39:44', '0000-00-00'), (677, 506, 'SBI Jayblues', 'Cheque', 27350, '878172', '01-09-2018', 'SBI', 'JSS branch', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-09-01 12:34:32', '2018-09-01'), (678, 568, 'SBI Jayblues', 'Cheque', 10000, '878172', '01-09-2018', 'SBI', 'JSS Branch', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-09-01 12:35:57', '0000-00-00'), (679, 578, 'HDFC Jayblues', 'Online Payment', 25370, '', '', '', '', '', '', '', '23-08-2018', '', 'ACTIVE', 'Admin', '2018-09-01 12:38:38', '2018-09-01'), (680, 597, 'SBI Jayblues', 'Cash', 2950, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Shri priya ', '2018-09-01 15:53:58', '0000-00-00'), (681, 590, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '03-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-03 18:17:58', '0000-00-00'); INSERT INTO `invoice_payments` (`payment_id`, `invoice_id`, `favour_of`, `payment_type`, `amount`, `cheque_no`, `cheque_date`, `bank_name`, `branch_name`, `dd_no`, `dd_date`, `utr_no`, `online_date`, `collected_by`, `delete_status`, `added_by`, `created_at`, `updated_at`) VALUES (682, 599, 'SBI Jayblues', 'Online Payment', 14000, '', '', '', '', '', '', '', '04-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-04 09:37:26', '2018-09-04'), (683, 600, 'SBI Jayblues', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-09-04 12:49:26', '0000-00-00'), (684, 587, 'HDFC Jayblues', 'Online Payment', 46500, '', '', '', '', '', '', '', '04-09-2018', '', 'ACTIVE', 'Admin', '2018-09-04 18:40:50', '0000-00-00'), (685, 596, 'SBI Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '04-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-05 12:25:07', '0000-00-00'), (686, 602, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '05-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-05 14:06:18', '0000-00-00'), (687, 597, 'SBI Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '01-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-05 18:18:19', '0000-00-00'), (688, 601, 'HDFC Jayblues', 'Cheque', 90000, '188122', '09-09-2018', 'Oriental Bank of commerce', 'Jayanagar Bangalore', '', '', '', '', '', 'ACTIVE', 'Admin', '2018-09-07 18:24:46', '0000-00-00'), (689, 604, 'SBI Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '08-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-08 17:29:21', '0000-00-00'), (690, 606, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '12-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-14 09:57:16', '0000-00-00'), (691, 605, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '12-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-17 11:50:14', '2019-03-21'), (692, 607, 'SBI Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2018-09-17 11:58:18', '0000-00-00'), (693, 608, 'SBI Jayblues', 'Cash', 14000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2018-09-17 11:58:34', '0000-00-00'), (694, 609, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '15-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-17 11:59:37', '0000-00-00'), (695, 567, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '15-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-17 12:22:00', '0000-00-00'), (696, 610, 'SBI Jayblues', 'PAYTM', 3000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-09-17 12:35:31', '0000-00-00'), (697, 603, 'SBI Jayblues', 'Cheque', 7080, '766684', '24-09-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-09-22 09:43:41', '0000-00-00'), (698, 611, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '19-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-22 09:44:28', '0000-00-00'), (699, 613, 'SBI Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '24-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-24 11:56:02', '0000-00-00'), (700, 614, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '24-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-24 15:39:06', '0000-00-00'), (701, 612, 'HDFC Jayblues', 'Online Payment', 1180, '', '', '', '', '', '', '', '25-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-25 11:56:15', '0000-00-00'), (702, 615, 'HDFC Jayblues', 'Cheque', 5500, '865350', '26-09-2018', 'punjab national Bank', 'chickpete,Bangalore', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-09-27 11:59:11', '0000-00-00'), (703, 617, 'SBI Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '28-09-2018', '', 'ACTIVE', 'Shri priya ', '2018-09-28 17:04:04', '0000-00-00'), (704, 618, 'HDFC Jayblues', 'Cash', 15500, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2018-10-01 12:25:18', '0000-00-00'), (705, 621, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '02-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-02 18:10:05', '2019-03-21'), (706, 620, 'SBI Jayblues', 'PAYTM', 40000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-10-03 15:59:26', '0000-00-00'), (707, 622, 'SBI Jayblues', 'Cash', 25000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Admin', '2018-10-04 16:53:22', '0000-00-00'), (708, 624, 'HDFC Jayblues', 'Cheque', 5500, '865354', '08-10-2018', 'panjab national bank', 'chickpete', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-10-08 15:03:30', '0000-00-00'), (709, 619, 'SBI Jayblues', 'Online Payment', 2360, '', '', '', '', '', '', '', '08-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-08 18:02:08', '2018-10-09'), (710, 625, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '09-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-09 17:23:47', '0000-00-00'), (711, 622, 'SBI Jayblues', 'Online Payment', 39000, '', '', '', '', '', '', '', '09-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-10 10:59:38', '0000-00-00'), (712, 626, 'HDFC Jayblues', 'Cheque', 7000, '221458', '09-10-2018', 'Indian Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-10-11 11:37:23', '0000-00-00'), (713, 627, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-11 17:23:25', '0000-00-00'), (714, 628, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '11-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-11 17:23:41', '0000-00-00'), (715, 629, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '15-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-15 11:54:59', '0000-00-00'), (716, 630, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '15-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-15 17:52:59', '0000-00-00'), (717, 631, 'SBI Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '15-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-16 12:38:07', '0000-00-00'), (718, 632, 'HDFC Jayblues', 'Cheque', 5900, '858594', '15-10-2018', 'Canara Bank', 'D.V.G Road', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-10-16 13:12:54', '0000-00-00'), (719, 633, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-23 11:29:27', '0000-00-00'), (720, 634, 'SBI Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-23 13:10:58', '0000-00-00'), (721, 638, 'HDFC Jayblues', 'Online Payment', 11210, '', '', '', '', '', '', '', '18-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-24 18:04:35', '0000-00-00'), (722, 639, 'SBI Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-26 12:36:47', '0000-00-00'), (723, 641, 'SBI Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-26 19:15:48', '0000-00-00'), (724, 642, 'SBI Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-26 19:19:25', '0000-00-00'), (725, 636, 'HDFC Jayblues', 'Online Payment', 3510, '', '', '', '', '', '', '', '29-10-2018', '', 'ACTIVE', 'Shri priya ', '2018-10-29 18:41:00', '0000-00-00'), (726, 643, 'SBI Jayblues', 'Cheque', 5900, '730371', '29-10-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-10-30 10:04:00', '0000-00-00'), (727, 645, 'SBI Jayblues', 'Cash', 6800, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-30 17:43:07', '0000-00-00'), (728, 646, 'SBI Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-10-30 17:48:46', '0000-00-00'), (729, 605, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '01-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-01 17:41:00', '0000-00-00'), (730, 647, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '02-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-02 17:52:33', '0000-00-00'), (731, 635, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '02-11-2018', '', 'INACTIVE', 'Shri priya ', '2018-11-02 17:53:11', '0000-00-00'), (732, 649, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '02-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-02 17:55:29', '0000-00-00'), (733, 651, 'SBI Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '02-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-02 18:18:45', '0000-00-00'), (734, 653, 'SBI Jayblues', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Shri priya ', '2018-11-05 16:56:16', '0000-00-00'), (735, 652, 'SBI Jayblues', 'Cheque', 45000, '997418', '05-11-2018', 'SBI', 'Ramanuja road', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-11-06 12:57:07', '2018-11-09'), (736, 648, 'SBI Jayblues', 'Online Payment', 1770, '', '', '', '', '', '', '', '12-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-12 18:28:56', '0000-00-00'), (737, 635, 'HDFC Jayblues', 'Online Payment', 43200, '', '', '', '', '', '', '', '13-11-2018', '', 'ACTIVE', 'Admin', '2018-11-13 18:46:53', '0000-00-00'), (738, 654, 'HDFC Jayblues', 'Online Payment', 3894, '', '', '', '', '', '', '', '14-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-15 10:34:34', '0000-00-00'), (739, 658, 'SBI Jayblues', 'Cash', 5900, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-11-20 13:36:27', '0000-00-00'), (740, 659, 'HDFC Jayblues', 'Cheque', 17250, '734508', '12-11-2018', 'Induslnd Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-11-20 13:48:04', '0000-00-00'), (741, 660, 'Cash', 'Cash', 1000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Shri priya ', '2018-11-20 13:59:31', '0000-00-00'), (742, 657, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-11-20 14:00:18', '0000-00-00'), (743, 661, 'Cash', 'Cash', 1700, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-11-20 18:02:38', '0000-00-00'), (744, 663, 'SBI Jayblues', 'Online Payment', 16000, '', '', '', '', '', '', '', '22-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-22 16:02:26', '0000-00-00'), (745, 662, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-11-22 16:02:46', '0000-00-00'), (746, 665, 'Cash', 'Cash', 14000, '', '', '', '', '', '', '', '', 'subramanya', 'ACTIVE', 'Shri priya ', '2018-11-23 10:53:56', '0000-00-00'), (747, 667, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '26-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-26 16:45:07', '0000-00-00'), (748, 668, 'HDFC Jayblues', 'Cheque', 11800, '001883', '26-11-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-11-27 13:51:44', '0000-00-00'), (749, 669, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '27-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-27 17:12:35', '0000-00-00'), (750, 670, 'SBI Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '28-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-11-28 12:29:32', '0000-00-00'), (751, 666, 'HDFC Jayblues', 'Cheque', 6500, '000144', '24-11-2018', 'Kotak mahendra', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-11-28 12:39:29', '0000-00-00'), (752, 671, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Shri priya ', '2018-11-30 09:48:48', '0000-00-00'), (753, 672, 'HDFC Jayblues', 'Cheque', 14000, '580177', '30-11-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-04 15:27:40', '0000-00-00'), (754, 644, 'HDFC Jayblues', 'Online Payment', 33300, '', '', '', '', '', '', '', '22-11-2018', '', 'ACTIVE', 'Ajay', '2018-12-05 14:00:00', '0000-00-00'), (755, 605, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '05-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-06 09:16:52', '0000-00-00'), (756, 677, 'SBI Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '07-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-07 10:54:35', '0000-00-00'), (757, 659, 'SBI Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '28-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-07 13:52:58', '2019-03-20'), (758, 679, 'HDFC Jayblues', 'Online Payment', 5850, '', '', '', '', '', '', '', '28-11-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-08 12:07:40', '0000-00-00'), (759, 680, 'Cash', 'Cash', 5900, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Shri priya ', '2018-12-11 18:11:49', '0000-00-00'), (760, 681, 'HDFC Jayblues', 'Cheque', 6500, '000147', '12-12-2018', 'Kotak Mahindra', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-13 10:34:58', '0000-00-00'), (761, 682, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-12-13 11:29:54', '0000-00-00'), (762, 683, 'SBI', 'Online Payment', 2200, '', '', '', '', '', '', '00000000', '12-12-2018', 'Subbu', 'ACTIVE', 'Shri priya ', '2018-12-13 13:37:13', '2019-03-27'), (763, 684, 'Cash', 'Cash', 4720, '', '', '', '', '', '', '', '', 'subramanya', 'INACTIVE', 'Shri priya ', '2018-12-14 11:25:39', '0000-00-00'), (764, 684, 'HDFC Jayblues', 'Cheque', 4720, '001849', '13-12-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-14 12:07:24', '0000-00-00'), (765, 685, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '14-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-14 13:41:30', '0000-00-00'), (766, 686, 'SBI Jayblues', 'Online Payment', 6520, '', '', '', '', '', '', '', '15-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-17 16:03:38', '0000-00-00'), (767, 687, 'HDFC Jayblues', 'Cheque', 24840, '000078', '18-12-2018', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-18 10:02:03', '0000-00-00'), (768, 673, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '19-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-19 12:16:12', '0000-00-00'), (769, 690, 'SBI Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '19-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-19 17:15:58', '0000-00-00'), (770, 689, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '21-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-21 12:05:02', '0000-00-00'), (771, 601, 'HDFC Jayblues', 'Cheque', 153000, '', '20-12-2018', 'central Bank of commerece', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-21 13:23:18', '0000-00-00'), (772, 692, 'HDFC Jayblues', 'Online Payment', 26000, '', '', '', '', '', '', '', '21-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-21 16:26:12', '0000-00-00'), (773, 693, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-12-22 11:33:15', '0000-00-00'), (774, 694, 'Cash', 'Cash', 1000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2018-12-22 12:05:40', '0000-00-00'), (775, 695, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Shri priya ', '2018-12-22 13:15:26', '0000-00-00'), (776, 696, 'SBI', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Subbu', 'ACTIVE', 'Shri priya ', '2018-12-26 16:22:10', '2018-12-26'), (777, 697, 'SBI Jayblues', 'Online Payment', 1200, '', '', '', '', '', '', '', '27-12-2018', '', 'ACTIVE', 'Shri priya ', '2018-12-27 18:32:53', '0000-00-00'), (778, 698, 'Cash', 'Cash', 8000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2018-12-28 17:41:05', '2018-12-28'), (779, 699, 'HDFC Jayblues', 'Cheque', 2000, '448827', '24-12-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-29 16:26:08', '0000-00-00'), (780, 700, 'HDFC Jayblues', 'Cheque', 6000, '174431', '27-12-2018', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2018-12-29 16:31:42', '0000-00-00'), (781, 676, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '02-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-02 10:50:28', '2019-03-27'), (782, 691, 'SBI Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '03-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-03 11:27:04', '0000-00-00'), (783, 702, 'SBI Jayblues', 'Cheque', 13200, '952503', '02-01-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-01-03 12:10:07', '0000-00-00'), (784, 703, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '03-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-03 19:30:18', '0000-00-00'), (785, 705, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-01-04 14:10:40', '0000-00-00'), (786, 706, 'Cash', 'Cash', 1000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-01-04 18:01:35', '0000-00-00'), (787, 707, 'HDFC Jayblues', 'Cheque', 6000, '74432', '02-01-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-01-07 18:56:04', '0000-00-00'), (788, 708, 'HDFC Jayblues', 'Cheque', 2000, '005986', '05-01-2019', 'Axis bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-01-09 11:47:38', '0000-00-00'), (789, 709, 'Cash', 'Cash', 12000, '', '', '', '', '', '', '', '', 'subbu', 'ACTIVE', 'Shri priya ', '2019-01-10 12:30:01', '0000-00-00'), (790, 710, 'Cash', 'Cash', 5500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-01-11 11:44:07', '0000-00-00'), (791, 711, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-01-11 13:12:17', '0000-00-00'), (792, 713, 'SBI Jayblues', 'Cheque', 3540, '588855', '10-01-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-01-12 18:29:15', '0000-00-00'), (793, 714, 'SBI Jayblues', 'Online Payment', 10700, '', '', '', '', '', '', '', '12-01-2019', '', 'INACTIVE', 'Shri priya ', '2019-01-12 18:34:28', '0000-00-00'), (794, 704, 'Cash', 'Cash', 19000, '', '', '', '', '', '', '', '', 'subbu', 'ACTIVE', 'Shri priya ', '2019-01-14 12:54:23', '0000-00-00'), (795, 714, 'HDFC Jayblues', 'Online Payment', 10447, '', '', '', '', '', '', '', '12-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-14 18:53:10', '2019-03-20'), (796, 713, 'SBI Jayblues', 'Online Payment', 2360, '', '', '', '', '', '', '', '16-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-16 14:17:21', '0000-00-00'), (797, 712, 'SBI Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '16-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-17 18:14:42', '0000-00-00'), (798, 715, 'Pay U Money', 'Online Payment', 3000, '', '', '', '', '', '', '', '14-01-2019', '', 'ACTIVE', 'Admin', '2019-01-17 18:25:22', '0000-00-00'), (799, 716, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-01-18 18:57:49', '0000-00-00'), (800, 717, 'SBI Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '21-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-21 12:42:24', '0000-00-00'), (801, 718, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-01-21 12:55:21', '0000-00-00'), (802, 719, 'Pay U Money', 'Online Payment', 6000, '', '', '', '', '', '', '', '21-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-21 15:52:37', '0000-00-00'), (803, 720, 'HDFC Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '22-01-2019', '', 'ACTIVE', 'Admin', '2019-01-22 13:53:22', '0000-00-00'), (804, 721, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Admin', '2019-01-22 13:55:51', '0000-00-00'), (805, 722, 'SBI Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '22-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-22 18:16:48', '0000-00-00'), (806, 723, 'Cash', 'Cash', 5500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-01-23 12:23:05', '0000-00-00'), (807, 724, 'SBI Jayblues', 'Online Payment', 5500, '', '', '', '', '', '', '', '24-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-24 10:17:25', '0000-00-00'), (808, 725, 'SBI Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '24-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-01-24 17:56:52', '0000-00-00'), (809, 726, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-01-25 13:45:48', '0000-00-00'), (810, 727, 'Cash', 'Cash', 37500, '', '', '', '', '', '', '', '', 'Subbu ', 'ACTIVE', 'Shri priya ', '2019-01-30 13:49:37', '0000-00-00'), (811, 686, 'SBI Jayblues', 'Online Payment', 11180, '', '', '', '', '', '', '', '31-01-2019', '', 'ACTIVE', 'Admin', '2019-01-31 15:20:02', '0000-00-00'), (812, 728, 'Pay U Money', 'Online Payment', 3200, '', '', '', '', '', '', '', '31-01-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-01 12:24:14', '0000-00-00'), (813, 729, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '01-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-01 16:56:22', '0000-00-00'), (814, 730, 'HDFC Jayblues', 'Cheque', 11000, '000182', '28-02-2019', 'Andra Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-01 18:35:04', '0000-00-00'), (815, 731, 'SBI Jayblues', 'Online Payment', 1180, '', '', '', '', '', '', '', '04-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-04 13:38:03', '0000-00-00'), (816, 732, 'Cash', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-04 14:20:10', '0000-00-00'), (817, 733, 'Cash', 'Cash', 2400, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-04 14:21:40', '2019-02-05'), (818, 734, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '04-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-04 14:25:42', '0000-00-00'), (819, 735, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '04-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-04 15:59:36', '0000-00-00'), (820, 736, 'Cash', 'Cash', 8000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-05 10:55:08', '2019-02-05'), (821, 737, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-05 16:37:33', '0000-00-00'), (822, 738, 'SBI Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '06-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-06 13:35:44', '0000-00-00'), (823, 739, 'Cash', 'Cash', 2500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-06 16:20:53', '0000-00-00'), (824, 740, 'HDFC Jayblues', 'Cheque', 5000, '566596', '01-02-2019', 'SBI', 'Gangenahalli', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-06 18:50:31', '0000-00-00'), (825, 741, 'Cash', 'Cash', 5500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-07 10:40:17', '0000-00-00'), (826, 742, 'SBI Jayblues', 'Cheque', 14530, '952505', '05-02-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-07 11:43:05', '0000-00-00'), (827, 743, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '07-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-07 12:32:48', '0000-00-00'), (828, 691, 'SBI Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '07-12-2018', '', 'ACTIVE', 'Shri priya ', '2019-02-08 17:35:50', '0000-00-00'), (829, 691, 'SBI Jayblues', 'Online Payment', 2520, '', '', '', '', '', '', '', '08-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-08 17:36:17', '0000-00-00'), (830, 744, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-02-08 18:00:40', '0000-00-00'), (831, 745, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-09 13:59:48', '0000-00-00'), (832, 746, 'SBI Jayblues', 'PAYTM', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-11 12:21:15', '0000-00-00'), (833, 747, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-13 11:56:11', '0000-00-00'), (834, 748, 'Cash', 'Cash', 3900, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-14 17:32:26', '0000-00-00'), (835, 749, 'Pay U Money', 'Online Payment', 4000, '', '', '', '', '', '', '', '15-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-15 14:04:10', '0000-00-00'), (836, 750, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-15 15:57:06', '0000-00-00'), (837, 751, 'Cash', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Shri priya ', '2019-02-15 15:58:26', '0000-00-00'), (838, 752, 'HDFC Jayblues', 'Cheque', 4000, '001047', '13-02-2019', 'Kotak Mahindra', 'MG Road', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-18 12:23:14', '0000-00-00'), (839, 753, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '16-02-2019', '', 'INACTIVE', 'Shri priya ', '2019-02-18 13:09:03', '0000-00-00'), (840, 754, 'Cash', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-18 16:29:25', '0000-00-00'), (841, 755, 'SBI Jayblues', 'Online Payment', 2900, '', '', '', '', '', '', '', '19-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-20 17:45:05', '0000-00-00'), (842, 757, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '19-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-20 17:52:59', '0000-00-00'), (843, 756, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '19-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-20 17:54:18', '0000-00-00'), (844, 758, 'Pay U Money', 'Online Payment', 10300, '', '', '', '', '', '', '', '20-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-20 17:58:26', '0000-00-00'), (845, 759, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '20-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-20 18:05:28', '0000-00-00'), (846, 760, 'Cash', 'Cash', 2500, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-02-20 19:17:10', '2019-02-27'), (847, 761, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-20 19:18:18', '0000-00-00'), (848, 762, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-20 19:29:06', '0000-00-00'), (849, 763, 'SBI Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '21-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-21 12:23:59', '0000-00-00'), (850, 764, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-21 12:24:19', '2019-02-21'), (851, 765, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-21 12:52:32', '0000-00-00'), (852, 766, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-22 16:19:52', '0000-00-00'), (853, 767, 'HDFC Jayblues', 'Online Payment', 11323, '', '', '', '', '', '', '', '22-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-22 16:31:29', '0000-00-00'), (854, 770, 'Cash', 'Cash', 1000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-23 16:07:24', '0000-00-00'), (855, 771, 'HDFC Jayblues', 'Online Payment', 22500, '', '', '', '', '', '', '', '25-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-25 11:02:35', '0000-00-00'), (856, 772, 'HDFC Jayblues', 'Online Payment', 21060, '', '', '', '', '', '', '', '25-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-25 15:36:58', '0000-00-00'), (857, 773, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-25 17:17:06', '0000-00-00'), (858, 774, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-02-26 11:23:23', '0000-00-00'), (859, 775, 'HDFC Jayblues', 'Cheque', 5000, '001588', '21-02-2019', 'ICIC bank', 'OTC Road ', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-26 11:47:39', '0000-00-00'), (860, 776, 'SBI Jayblues', 'Online Payment', 1000, '', '', '', '', '', '', '', '25-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-26 17:39:40', '0000-00-00'), (861, 777, 'SBI Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '27-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-28 10:04:26', '0000-00-00'), (862, 778, 'HDFC Jayblues', 'Cheque', 30000, '830151', '21-02-2019', 'Yes Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-28 12:08:57', '0000-00-00'), (863, 779, 'HDFC Jayblues', 'Cheque', 5540, '001055', '22-02-2019', 'Kotak mahindra', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-28 12:11:17', '0000-00-00'), (864, 780, 'HDFC Jayblues', 'Cheque', 8850, '000911', '22-02-2019', 'ICICI Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-28 12:14:37', '0000-00-00'), (865, 781, 'HDFC Jayblues', 'Cheque', 10000, '365397', '23-02-2019', 'IDBI Bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-02-28 12:17:49', '0000-00-00'), (866, 782, 'SBI Jayblues', 'Online Payment', 1500, '', '', '', '', '', '', '', '28-02-2019', '', 'ACTIVE', 'Shri priya ', '2019-02-28 17:19:41', '0000-00-00'), (867, 783, 'Cash', 'Cash', 1500, '', '', '', '', '', '', '', '', 'shripriya', 'ACTIVE', 'Shri priya ', '2019-03-01 19:13:41', '0000-00-00'), (868, 784, 'HDFC Jayblues', 'Online Payment', 16000, '', '', '', '', '', '', '', '01-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-05 16:03:49', '0000-00-00'), (869, 785, 'Cash', 'Cash', 2500, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Shri priya ', '2019-03-06 11:22:45', '0000-00-00'), (870, 786, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '06-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-06 11:58:20', '0000-00-00'), (871, 787, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '06-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-07 13:22:02', '0000-00-00'), (872, 788, 'SBI Jayblues', 'Online Payment', 4130, '', '', '', '', '', '', '', '07-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-07 16:38:15', '0000-00-00'), (873, 789, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-07 16:43:45', '0000-00-00'), (874, 791, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', 'shripriya', 'ACTIVE', 'Shri priya ', '2019-03-08 18:00:51', '0000-00-00'), (875, 794, 'SBI Jayblues', 'Online Payment', 19220, '', '', '', '', '', '', '', '11-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-11 17:24:45', '0000-00-00'), (876, 795, 'HDFC Jayblues', 'Cheque', 4720, '002009', '11-03-2019', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-12 13:00:03', '0000-00-00'), (877, 796, 'SBI Jayblues', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-12 16:00:36', '0000-00-00'), (878, 797, 'Cash', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-12 16:33:24', '0000-00-00'), (879, 798, 'SBI Jayblues', 'Online Payment', 9000, '', '', '', '', '', '', '', '12-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-13 10:33:41', '0000-00-00'), (880, 799, 'HDFC Jayblues', 'Online Payment', 22000, '', '', '', '', '', '', '', '12-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-13 12:13:21', '0000-00-00'), (881, 800, 'HDFC Jayblues', 'Online Payment', 4130, '', '', '', '', '', '', '', '13-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-14 10:38:48', '0000-00-00'), (882, 801, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '14-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-14 12:08:11', '0000-00-00'), (883, 802, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-14 15:30:39', '0000-00-00'), (884, 803, 'HDFC Jayblues', 'Online Payment', 12000, '', '', '', '', '', '', '', '16-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-18 11:01:11', '2019-03-18'), (885, 804, 'SBI Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '16-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-18 11:11:45', '0000-00-00'), (886, 805, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-18 12:33:00', '0000-00-00'), (887, 793, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '14-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-18 12:57:21', '0000-00-00'), (888, 807, 'Cash', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-18 17:30:54', '0000-00-00'), (889, 808, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-19 18:40:22', '0000-00-00'), (890, 810, 'HDFC Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '20-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-20 12:46:10', '2019-03-21'), (891, 675, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '15-12-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-20 16:56:49', '0000-00-00'), (892, 812, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-20 18:23:25', '0000-00-00'), (893, 813, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '20-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-20 18:40:02', '0000-00-00'), (894, 792, 'HDFC Jayblues', 'Online Payment', 3668, '', '', '', '', '', '', '', '20-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-21 11:28:18', '0000-00-00'), (895, 814, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '21-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-21 17:10:15', '0000-00-00'), (896, 815, 'SBI Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '21-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-21 18:40:36', '0000-00-00'), (897, 816, 'SBI Jayblues', 'Online Payment', 24000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-22 12:05:25', '0000-00-00'), (898, 816, 'SBI Jayblues', 'Online Payment', 30448, '', '', '', '', '', '', '', '29-12-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-22 12:05:51', '0000-00-00'), (899, 816, 'SBI Jayblues', 'Online Payment', 2950, '', '', '', '', '', '', '', '31-12-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-22 12:09:26', '0000-00-00'), (900, 790, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '23-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-23 11:11:47', '0000-00-00'), (901, 809, 'SBI Jayblues', 'Online Payment', 10200, '', '', '', '', '', '', '', '22-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-23 11:34:48', '0000-00-00'), (902, 817, 'SBI Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '23-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-25 14:25:35', '2019-03-25'), (903, 819, 'SBI Jayblues', 'Online Payment', 14000, '', '', '', '', '', '', '', '25-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-25 14:28:10', '0000-00-00'), (904, 820, 'SBI Jayblues', 'PAYTM', 1500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-25 14:30:08', '0000-00-00'), (905, 818, 'HDFC Jayblues', 'Cheque', 49461, '747171', '21-03-2019', 'Canara bank', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-25 17:17:46', '0000-00-00'), (906, 823, 'Cash', 'Cash', 7840, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-26 15:28:07', '0000-00-00'), (907, 824, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '27-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-27 12:14:06', '0000-00-00'), (908, 825, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-27 14:18:15', '0000-00-00'), (909, 827, 'HDFC Jayblues', 'Online Payment', 26270, '', '', '', '', '', '', '', '14-05-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 15:40:51', '0000-00-00'), (910, 828, 'SBI Jayblues', 'Online Payment', 4484, '', '', '', '', '', '', '', '18-08-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 15:53:40', '0000-00-00'), (911, 829, 'HDFC Jayblues', 'Online Payment', 16000, '', '', '', '', '', '', '', '03-12-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 16:12:01', '0000-00-00'), (912, 830, 'HDFC Jayblues', 'Online Payment', 91600, '', '', '', '', '', '', '', '16-06-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 16:17:19', '0000-00-00'), (913, 831, 'HDFC Jayblues', 'Online Payment', 27000, '', '', '', '', '', '', '', '03-07-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 16:20:45', '0000-00-00'), (914, 832, 'HDFC Jayblues', 'Online Payment', 12683, '', '', '', '', '', '', '', '15-05-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 16:47:18', '0000-00-00'), (915, 731, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '29-06-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 17:04:42', '0000-00-00'), (916, 731, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '04-07-2018', '', 'ACTIVE', 'Shri priya ', '2019-03-27 17:05:22', '0000-00-00'), (917, 833, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '27-03-2019', '', 'ACTIVE', 'Shri priya ', '2019-03-28 11:10:44', '0000-00-00'), (918, 834, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-03-28 16:46:36', '0000-00-00'), (919, 834, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'INACTIVE', 'Shri priya ', '2019-03-28 16:46:37', '0000-00-00'), (920, 836, 'Cash', 'PAYTM', 40000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-03-29 11:42:02', '0000-00-00'), (921, 838, 'HDFC Jayblues', 'Online Payment', 10325, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-04-04 18:21:08', '0000-00-00'), (922, 835, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-04-04 18:27:30', '0000-00-00'), (923, 837, 'SBI Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-04-10 11:47:42', '0000-00-00'), (924, 839, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-04-15 10:54:13', '0000-00-00'), (925, 840, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-04-15 11:08:47', '0000-00-00'), (926, 841, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-04-15 11:31:55', '0000-00-00'), (927, 842, 'SBI Jayblues', 'Online Payment', 7520, '', '', '', '', '', '', '', '09-04-2019', '', 'ACTIVE', 'Shri priya ', '2019-04-15 11:50:27', '0000-00-00'), (928, 837, 'SBI Jayblues', 'Cheque', 7080, '989874', '05-04-2019', 'SBI', 'Sajapura Road', '', '', '', '', '', 'ACTIVE', 'Shri priya ', '2019-04-15 12:27:23', '0000-00-00'), (929, 843, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Shri priya ', '2019-04-15 12:34:52', '0000-00-00'), (930, 844, 'SBI Jayblues', 'Online Payment', 21000, '', '', '', '', '', '', '', '11-04-2019', '', 'ACTIVE', 'Shri priya ', '2019-04-15 12:45:50', '0000-00-00'), (931, 845, 'SBI Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '11-04-2019', '', 'ACTIVE', 'Shri priya ', '2019-04-15 12:52:02', '0000-00-00'), (932, 846, 'SBI Jayblues', 'Online Payment', 4130, '', '', '', '', '', '', '', '12-04-2019', '', 'ACTIVE', 'Shri priya ', '2019-04-15 12:53:42', '0000-00-00'), (933, 847, 'SBI Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '13-04-2019', '', 'ACTIVE', 'Shri priya ', '2019-04-15 13:10:09', '0000-00-00'), (934, 849, 'SBI Jayblues', 'Online Payment', 13124, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Subramanya', '2019-05-08 17:53:30', '0000-00-00'), (935, 849, 'SBI Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-05-08 17:54:28', '0000-00-00'), (936, 850, 'SBI Jayblues', 'Online Payment', 13124, '', '', '', '', '', '', '', '22-04-2019', '', 'ACTIVE', 'Subramanya', '2019-05-08 17:55:16', '0000-00-00'), (937, 851, 'SBI Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-05-08 18:00:46', '0000-00-00'), (938, 852, 'HDFC Jayblues', 'Online Payment', 11210, '', '', '', '', '', '', '', '30-04-2019', '', 'ACTIVE', 'Subramanya', '2019-05-08 18:29:26', '0000-00-00'), (939, 855, 'HDFC Jayblues', 'Online Payment', 72000, '', '', '', '', '', '', '', '03-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-08 18:31:07', '0000-00-00'), (940, 854, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '02-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-08 18:31:31', '0000-00-00'), (941, 853, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '01-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-08 18:31:59', '0000-00-00'), (942, 856, 'HDFC Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-05-11 11:34:19', '0000-00-00'), (943, 860, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:41:21', '0000-00-00'), (944, 861, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '02-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:41:38', '0000-00-00'), (945, 857, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-05-11 11:42:04', '0000-00-00'), (946, 858, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '10-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:42:26', '0000-00-00'), (947, 859, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:42:43', '0000-00-00'), (948, 862, 'HDFC Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '05-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:44:20', '2019-06-06'), (949, 863, 'HDFC Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '08-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 11:47:21', '0000-00-00'), (950, 848, 'SBI Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '10-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-11 17:13:54', '0000-00-00'), (951, 864, 'SBI Jayblues', 'Online Payment', 21236, '', '', '', '', '', '', '', '22-04-2019', '', 'ACTIVE', 'Subramanya', '2019-05-13 20:09:20', '0000-00-00'), (952, 865, 'SBI Jayblues', 'Online Payment', 9160, '', '', '', '', '', '', '', '13-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-14 11:42:49', '0000-00-00'), (953, 866, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '14-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-14 11:45:09', '0000-00-00'), (954, 867, 'HDFC Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '13-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-14 12:10:15', '0000-00-00'), (955, 821, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '26-03-2019', '', 'INACTIVE', 'Subramanya', '2019-05-17 11:40:36', '0000-00-00'), (956, 821, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '26-03-2019', '', 'INACTIVE', 'Subramanya', '2019-05-17 11:40:36', '0000-00-00'), (957, 821, 'HDFC Jayblues', 'Online Payment', 24152, '', '', '', '', '', '', 'CR-CORP0000376', '27-03-2019', '', 'ACTIVE', 'Ajay', '2019-05-17 17:47:08', '0000-00-00'), (958, 821, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '05-10-2018', '', 'ACTIVE', 'Ajay', '2019-05-17 18:23:34', '0000-00-00'), (959, 869, 'HDFC Jayblues', 'Online Payment', 12000, '', '', '', '', '', '', '', '20-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-23 11:56:06', '0000-00-00'), (960, 868, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '23-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-23 11:56:29', '0000-00-00'), (961, 871, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '09-04-2019', '', 'ACTIVE', 'Subramanya', '2019-05-23 12:02:57', '0000-00-00'), (962, 872, 'SBI Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-05-23 13:39:59', '0000-00-00'), (963, 874, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '248375220', '24-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-24 14:17:24', '0000-00-00'), (964, 875, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '26-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-27 13:21:51', '0000-00-00'), (965, 873, 'HDFC Jayblues', 'Online Payment', 7906, '', '', '', '', '', '', '', '27-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-27 14:20:03', '0000-00-00'), (966, 877, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '29-05-2019', '', 'ACTIVE', 'Subramanya', '2019-05-29 18:23:18', '0000-00-00'), (967, 878, 'HDFC Jayblues', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Subramanya', '2019-06-04 13:25:53', '0000-00-00'), (968, 879, 'Cash', 'Cash', 30000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Subramanya', '2019-06-04 13:28:17', '0000-00-00'), (969, 880, 'Pay U Money', 'Online Payment', 10000, '', '', '', '', '', '', '', '03-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-04 18:12:27', '0000-00-00'), (970, 881, 'SBI Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '04-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-04 18:18:12', '0000-00-00'), (971, 883, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '05-04-2019', '', 'ACTIVE', 'Subramanya', '2019-06-06 17:33:46', '0000-00-00'), (972, 884, 'HDFC Jayblues', 'Cash', 4720, '', '', '', '', '', '', '', '', '6/6/19', 'ACTIVE', 'Subramanya', '2019-06-06 17:34:19', '2020-01-08'), (973, 885, 'SBI Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '06-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-06 17:34:43', '0000-00-00'), (974, 882, 'SBI Jayblues', 'Online Payment', 8350, '', '', '', '', '', '', '', '10-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-10 17:23:32', '0000-00-00'), (975, 888, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '12-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-12 13:29:23', '0000-00-00'), (976, 655, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '12-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-12 13:29:42', '0000-00-00'), (977, 886, 'HDFC Jayblues', 'Online Payment', 62500, '', '', '', '', '', '', '', '11-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-12 17:34:56', '0000-00-00'), (978, 887, 'HDFC Jayblues', 'Online Payment', 62500, '', '', '', '', '', '', '', '11-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-12 17:35:15', '0000-00-00'), (979, 876, 'HDFC Jayblues', 'Online Payment', 3668, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-06-17 16:08:48', '0000-00-00'), (980, 890, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '21-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-21 18:34:07', '0000-00-00'), (981, 891, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '24-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-24 13:05:28', '0000-00-00'), (982, 892, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '04-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:13:31', '0000-00-00'), (983, 892, 'SBI Jayblues', 'Online Payment', 14500, '', '', '', '', '', '', '', '26-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:13:55', '0000-00-00'), (984, 893, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '06-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:45:37', '0000-00-00'), (985, 894, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '06-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:47:26', '0000-00-00'), (986, 895, 'HDFC Jayblues', 'Online Payment', 10414, '', '', '', '', '', '', '', '08-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:51:11', '0000-00-00'), (987, 896, 'HDFC Jayblues', 'Online Payment', 5800, '', '', '', '', '', '', '', '10-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 12:54:52', '0000-00-00'), (988, 897, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '10-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 13:47:22', '0000-00-00'), (989, 898, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '11-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 13:50:54', '0000-00-00'), (990, 899, 'SBI Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-06-26 13:53:34', '0000-00-00'), (991, 900, 'SBI Jayblues', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-06-26 14:11:42', '0000-00-00'), (992, 901, 'SBI Jayblues', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-06-26 14:11:57', '0000-00-00'), (993, 902, 'SBI Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-06-26 14:17:17', '0000-00-00'), (994, 902, 'SBI Jayblues', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Nithin', 'INACTIVE', 'Subramanya', '2019-06-26 14:17:23', '0000-00-00'), (995, 903, 'SBI Jayblues', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Subramanya', '2019-06-26 14:25:34', '0000-00-00'), (996, 904, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '18-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 14:25:51', '0000-00-00'), (997, 905, 'HDFC Jayblues', 'PAYTM', 30680, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Subramanya', '2019-06-26 14:27:36', '0000-00-00'), (998, 906, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '20-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 14:29:17', '0000-00-00'), (999, 907, 'SBI Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '21-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 14:31:02', '0000-00-00'), (1000, 906, 'SBI Jayblues', 'Online Payment', 5620, '', '', '', '', '', '', '', '26-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 15:48:41', '0000-00-00'), (1001, 908, 'HDFC Jayblues', 'Online Payment', 3000, '', '', '', '', '', '', '', '26-06-2019', '', 'ACTIVE', 'Subramanya', '2019-06-26 16:23:46', '0000-00-00'), (1002, 889, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '02-07-2019', '', 'ACTIVE', 'Subramanya', '2019-07-03 12:28:36', '0000-00-00'), (1003, 889, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '02-07-2019', '', 'INACTIVE', 'Subramanya', '2019-07-03 12:28:36', '0000-00-00'), (1004, 910, 'SBI Jayblues', 'Online Payment', 100000, '', '', '', '', '', '', '', '01-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 17:42:36', '0000-00-00'), (1005, 911, 'HDFC Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '01-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 17:45:40', '0000-00-00'); INSERT INTO `invoice_payments` (`payment_id`, `invoice_id`, `favour_of`, `payment_type`, `amount`, `cheque_no`, `cheque_date`, `bank_name`, `branch_name`, `dd_no`, `dd_date`, `utr_no`, `online_date`, `collected_by`, `delete_status`, `added_by`, `created_at`, `updated_at`) VALUES (1006, 912, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '02-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 17:48:47', '0000-00-00'), (1007, 913, 'Cash', 'Cash', 10000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ashwini', '2019-07-30 17:50:42', '0000-00-00'), (1008, 914, 'HDFC Jayblues', 'Online Payment', 8800, '', '', '', '', '', '', '', '02-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 17:57:15', '0000-00-00'), (1009, 915, 'SBI Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '17-05-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 18:06:16', '0000-00-00'), (1010, 915, 'SBI Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '27-06-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 18:07:18', '0000-00-00'), (1011, 915, 'SBI Jayblues', 'Online Payment', 16200, '', '', '', '', '', '', '', '04-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-30 18:08:15', '0000-00-00'), (1012, 916, 'HDFC Jayblues', 'Online Payment', 5450, '', '', '', '', '', '', '', '11-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 10:56:26', '0000-00-00'), (1013, 897, 'HDFC Jayblues', 'Online Payment', 12420, '', '', '', '', '', '', '', '11-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 11:00:22', '0000-00-00'), (1014, 917, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '12-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 11:38:26', '0000-00-00'), (1015, 919, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '18-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 12:38:47', '0000-00-00'), (1016, 920, 'Cash', 'Cash', 4500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ashwini', '2019-07-31 12:56:09', '0000-00-00'), (1017, 909, 'HDFC Jayblues', 'Online Payment', 22500, '', '', '', '', '', '', '', '20-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 13:14:14', '0000-00-00'), (1018, 921, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '23-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 13:19:32', '0000-00-00'), (1019, 882, 'SBI Jayblues', 'Online Payment', 2000, '', '', '', '', '', '', '', '26-07-2019', '', 'ACTIVE', 'Ashwini', '2019-07-31 13:52:20', '0000-00-00'), (1020, 745, 'Cash', 'Cash', 3000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ashwini', '2019-08-01 12:17:17', '0000-00-00'), (1021, 924, 'HDFC Jayblues', 'Cheque', 6000, '017782', '29-07-2019', 'IDBI', 'BANNERGATTA', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-01 12:18:59', '0000-00-00'), (1022, 856, 'Cash', 'Online Payment', 3500, '', '', '', '', '', '', '', '01-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-01 15:26:06', '0000-00-00'), (1023, 915, 'HDFC Jayblues', 'Online Payment', 49000, '', '', '', '', '', '', '', '01-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-02 11:35:00', '0000-00-00'), (1024, 928, 'HDFC Jayblues', 'Cheque', 5000, '224242', '05-08-2019', 'SBI', 'Bhogadhi ', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-05 14:09:06', '0000-00-00'), (1025, 929, 'HDFC Jayblues', 'Online Payment', 9000, '', '', '', '', '', '', '', '12-03-2019', '', 'ACTIVE', 'Ashwini', '2019-08-06 14:05:53', '0000-00-00'), (1026, 930, 'HDFC Jayblues', 'Online Payment', 7520, '', '', '', '', '', '', '', '09-04-2019', '', 'ACTIVE', 'Ashwini', '2019-08-06 14:06:30', '0000-00-00'), (1027, 931, 'Cash', 'Cash', 72000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-07 16:08:05', '0000-00-00'), (1028, 931, 'Cash', 'Cash', 22500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-07 16:10:22', '0000-00-00'), (1029, 932, 'Cash', 'Cash', 20000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-10 11:36:10', '0000-00-00'), (1030, 910, 'SBI Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '07-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-10 11:37:45', '0000-00-00'), (1031, 910, 'Cash', 'Cash', 70000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-10 11:44:51', '0000-00-00'), (1032, 869, 'HDFC Jayblues', 'Online Payment', 13960, '', '', '', '', '', '', '', '09-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-10 12:01:10', '0000-00-00'), (1033, 892, 'SBI Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '14-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-14 11:09:41', '0000-00-00'), (1034, 920, 'SBI Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '14-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-14 14:21:41', '0000-00-00'), (1035, 926, 'HDFC Jayblues', 'Online Payment', 22000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:35:51', '0000-00-00'), (1036, 926, 'HDFC Jayblues', 'Online Payment', 22000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:35:51', '0000-00-00'), (1037, 926, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:37:45', '0000-00-00'), (1038, 927, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:47:13', '0000-00-00'), (1039, 922, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:47:29', '0000-00-00'), (1040, 923, 'HDFC Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-19 11:47:46', '0000-00-00'), (1041, 933, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '19-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-19 13:44:17', '0000-00-00'), (1042, 935, 'HDFC Jayblues', 'Online Payment', 21000, '', '', '', '', '', '', '', '11-04-2019', '', 'ACTIVE', 'Ashwini', '2019-08-20 12:29:20', '0000-00-00'), (1043, 935, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '20-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-20 12:34:05', '0000-00-00'), (1044, 936, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '20-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-20 18:13:41', '0000-00-00'), (1045, 936, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '20-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-20 18:13:41', '0000-00-00'), (1046, 935, 'SBI Jayblues', 'Online Payment', 3560, '', '', '', '', '', '', '', '19-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-22 12:36:51', '0000-00-00'), (1047, 938, 'SBI Jayblues', 'Cheque', 10000, '200247', '22-08-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-24 11:41:34', '0000-00-00'), (1048, 938, 'SBI Jayblues', 'Cheque', 10000, '200247', '22-08-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-24 11:41:34', '0000-00-00'), (1049, 938, 'SBI Jayblues', 'Cheque', 10000, '200247', '22-08-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-24 11:41:35', '0000-00-00'), (1050, 939, 'SBI Jayblues', 'Cheque', 10000, '200247', '22-08-2019', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-24 11:56:50', '0000-00-00'), (1051, 940, 'HDFC Jayblues', 'Online Payment', 5858, '', '', '', '', '', '', '', '20-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-24 12:00:56', '0000-00-00'), (1052, 940, 'HDFC Jayblues', 'Online Payment', 5858, '', '', '', '', '', '', '', '20-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-24 12:00:56', '0000-00-00'), (1053, 922, 'SBI Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '19-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-24 12:02:30', '0000-00-00'), (1054, 941, 'HDFC Jayblues', 'Online Payment', 5384, '', '', '', '', '', '', '', '23-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-24 12:16:14', '0000-00-00'), (1055, 943, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-26 16:01:42', '0000-00-00'), (1056, 942, 'Cash', 'Cash', 5500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-26 16:02:08', '0000-00-00'), (1057, 944, 'HDFC Jayblues', 'Online Payment', 8300, '', '', '', '', '', '', '', '27-08-2019', '', 'ACTIVE', 'Ashwini', '2019-08-27 17:31:03', '0000-00-00'), (1058, 945, 'HDFC Jayblues', 'Online Payment', 7160, '', '', '', '', '', '', '', '18-06-2019', '', 'ACTIVE', 'Subramanya', '2019-08-29 13:32:42', '0000-00-00'), (1059, 946, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-08-30 11:42:32', '0000-00-00'), (1060, 949, 'HDFC Jayblues', 'Cheque', 7500, '000080', '31-08-2019', 'IDFC First bank', 'Bangalore', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-03 10:47:41', '0000-00-00'), (1061, 950, 'Cash', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-03 10:49:41', '0000-00-00'), (1062, 948, 'SBI Jayblues', 'Online Payment', 7500, '', '', '', '', '', '', '', '03-08-2019', '', 'ACTIVE', 'Subramanya', '2019-09-03 18:10:28', '0000-00-00'), (1063, 948, 'SBI Jayblues', 'Online Payment', 10790, '', '', '', '', '', '', '', '03-09-2019', '', 'ACTIVE', 'Subramanya', '2019-09-03 18:11:09', '0000-00-00'), (1064, 953, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '03-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-04 11:39:07', '0000-00-00'), (1065, 954, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-04 11:42:28', '0000-00-00'), (1066, 945, 'SBI Jayblues', 'Online Payment', 10790, '', '', '', '', '', '', '', '03-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-04 11:44:05', '0000-00-00'), (1067, 886, 'HDFC Jayblues', 'Online Payment', 45500, '', '', '', '', '', '', '', '08-11-2019', '', 'ACTIVE', 'Ashwini', '2019-09-04 11:45:06', '2019-11-11'), (1068, 887, 'HDFC Jayblues', 'Online Payment', 45500, '', '', '', '', '', '', '', '08-11-2019', '', 'ACTIVE', 'Ashwini', '2019-09-04 11:46:26', '2019-11-11'), (1069, 955, 'Cash', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-06 15:19:18', '0000-00-00'), (1070, 924, 'HDFC Jayblues', 'Cheque', 5800, '017797', '06-09-2019', 'IDBI bank', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-06 15:22:05', '0000-00-00'), (1071, 898, 'HDFC Jayblues', 'Online Payment', 27000, '', '', '', '', '', '', '', '08-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-10 15:24:34', '0000-00-00'), (1072, 958, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-10 15:38:45', '0000-00-00'), (1073, 960, 'HDFC Jayblues', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-10 18:06:00', '0000-00-00'), (1074, 915, 'HDFC Jayblues', 'Online Payment', 67000, '', '', '', '', '', '', '', '12-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-12 16:26:53', '0000-00-00'), (1075, 915, 'SBI Jayblues', 'Online Payment', 4640, '', '', '', '', '', '', '', '16-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-17 11:22:39', '0000-00-00'), (1076, 574, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '16-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-17 11:23:50', '0000-00-00'), (1077, 963, 'Cash', 'Cash', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-17 13:20:12', '0000-00-00'), (1078, 964, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-19 11:30:04', '0000-00-00'), (1079, 962, 'HDFC Jayblues', 'Online Payment', 90720, '', '', '', '', '', '', '', '18-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-19 11:30:59', '0000-00-00'), (1080, 942, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-20 13:23:21', '0000-00-00'), (1081, 942, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-20 13:23:21', '0000-00-00'), (1082, 591, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '20-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-20 13:25:35', '0000-00-00'), (1083, 933, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '20-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-20 17:22:39', '0000-00-00'), (1084, 941, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '23-09-2019', '', 'ACTIVE', 'Ashwini', '2019-09-24 13:56:40', '0000-00-00'), (1085, 969, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ashwini', '2019-09-26 17:59:45', '0000-00-00'), (1086, 970, 'SBI Jayblues', 'Online Payment', 20500, '', '', '', '', '', '', '21216', '16-03-2010', '', 'ACTIVE', 'Ajay', '2019-09-27 12:36:17', '2019-09-27'), (1087, 964, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ashwini', '2019-09-30 13:12:23', '0000-00-00'), (1088, 971, 'HDFC Jayblues', 'Cheque', 10000, '22424', '01-10-2019', 'SBI', 'Bogadi', '', '', '', '', '', 'ACTIVE', 'Ajay', '2019-10-01 13:40:16', '0000-00-00'), (1089, 972, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '25-09-2019', '', 'ACTIVE', 'Ashwini', '2019-10-01 17:13:49', '0000-00-00'), (1090, 974, 'HDFC Jayblues', 'Online Payment', 150000, '', '', '', '', '', '', '', '02-10-2019', '', 'ACTIVE', 'Subramanya', '2019-10-02 12:32:21', '0000-00-00'), (1091, 965, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '28-09-2019', '', 'ACTIVE', 'Subramanya', '2019-10-02 12:35:10', '0000-00-00'), (1092, 950, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '09-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-09 11:55:10', '0000-00-00'), (1093, 973, 'SBI Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '30-09-2019', '', 'ACTIVE', 'Ajay', '2019-10-09 12:10:14', '0000-00-00'), (1094, 978, 'HDFC Jayblues', 'Cheque', 64900, '002141', '09-10-2019', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Ajay', '2019-10-09 19:00:14', '0000-00-00'), (1095, 950, 'Cash', 'Cash', 1000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ajay', '2019-10-09 19:07:02', '0000-00-00'), (1096, 981, 'HDFC Jayblues', 'Cash', 10000, '', '', '', '', '', '', '', '', 'nithin', 'ACTIVE', 'Ajay', '2019-10-11 14:58:04', '0000-00-00'), (1097, 982, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ajay', '2019-10-11 16:11:30', '0000-00-00'), (1098, 966, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-16 11:40:18', '0000-00-00'), (1099, 976, 'SBI Jayblues', 'Online Payment', 21600, '', '', '', '', '', '', '', '16-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-16 17:49:21', '0000-00-00'), (1100, 983, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ajay', '2019-10-17 15:52:50', '0000-00-00'), (1101, 984, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ajay', '2019-10-17 16:11:21', '0000-00-00'), (1102, 986, 'Cash', 'Cash', 11000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Subramanya', '2019-10-19 12:46:49', '0000-00-00'), (1103, 987, 'HDFC Jayblues', 'Online Payment', 32000, '', '', '', '', '', '', '', '21-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-21 18:54:57', '0000-00-00'), (1104, 967, 'HDFC Jayblues', 'Online Payment', 1500, '', '', '', '', '', '', '', '21-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-21 18:55:51', '2019-10-21'), (1105, 988, 'HDFC Jayblues', 'Online Payment', 90720, '', '', '', '', '', '', '', '18-09-2019', '', 'ACTIVE', 'Subramanya', '2019-10-22 14:11:38', '0000-00-00'), (1106, 989, 'Cash', 'Cash', 7000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Ajay', '2019-10-23 12:12:36', '0000-00-00'), (1107, 994, 'HDFC Jayblues', 'Online Payment', 4882, '', '', '', '', '', '', '', '29-10-2019', '', 'ACTIVE', 'Ajay', '2019-10-30 18:12:32', '0000-00-00'), (1108, 1003, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '05-11-2019', '', 'ACTIVE', 'Subramanya', '2019-11-05 14:18:14', '0000-00-00'), (1109, 1005, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '28-08-2019', '', 'ACTIVE', 'Subramanya', '2019-11-07 17:07:53', '0000-00-00'), (1110, 1006, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '28-08-2019', '', 'ACTIVE', 'Subramanya', '2019-11-07 17:08:20', '0000-00-00'), (1111, 1007, 'HDFC Jayblues', 'Online Payment', 6490, '', '', '', '', '', '', '', '13-11-2019', '', 'ACTIVE', 'Ajay', '2019-11-14 14:07:42', '0000-00-00'), (1112, 1009, 'HDFC Jayblues', 'Online Payment', 45000, '', '', '', '', '', '', '', '14-11-2019', '', 'ACTIVE', 'Ajay', '2019-11-14 17:43:13', '0000-00-00'), (1113, 1001, 'HDFC Jayblues', 'Online Payment', 40000, '', '', '', '', '', '', '', '02-11-2019', '', 'ACTIVE', 'Ajay', '2019-11-15 12:03:22', '0000-00-00'), (1114, 1014, 'Cash', 'Cash', 10000, '', '', '', '', '', '', '', '', 'Swathi Account', 'ACTIVE', 'Ajay', '2019-11-19 12:43:48', '0000-00-00'), (1115, 1010, 'SBI Jayblues', 'Online Payment', 8880, '', '', '', '', '', '', '', '21-11-2019', '', 'ACTIVE', 'Ajay', '2019-11-21 17:02:36', '2019-11-21'), (1116, 1016, 'Cash', 'Cash', 15000, '', '', '', '', '', '', '', '', 'Swathi Account', 'ACTIVE', 'Ajay', '2019-11-21 17:04:34', '2019-11-21'), (1117, 1018, 'SBI Jayblues', 'Online Payment', 8160, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-11-26 12:59:27', '0000-00-00'), (1118, 1019, 'SBI Jayblues', 'Cash', 7160, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-11-26 13:05:00', '0000-00-00'), (1119, 1021, 'UPI', 'PAYTM', 2000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-11-26 16:21:41', '0000-00-00'), (1120, 1022, 'SBI Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', ' N330190990973063', '26-11-2019', '', 'ACTIVE', 'Rekha', '2019-11-26 18:24:36', '0000-00-00'), (1121, 1023, 'HDFC Jayblues', 'Online Payment', 53100, '', '', '', '', '', '', '', '26-11-2019', '', 'ACTIVE', 'Ajay', '2019-11-26 18:26:59', '0000-00-00'), (1122, 1024, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Ajay sir', 'ACTIVE', 'Rekha', '2019-11-27 17:22:04', '0000-00-00'), (1123, 1013, 'SBI Jayblues', 'Cheque', 5900, '730390', '27-11-2019', 'SBI', 'NIMHANS', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-11-28 15:28:02', '0000-00-00'), (1124, 1025, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Rekha', 'ACTIVE', 'Rekha', '2019-11-30 13:12:17', '0000-00-00'), (1125, 1026, 'UPI', 'PAYTM', 3540, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-12-02 16:11:43', '0000-00-00'), (1126, 1027, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '933615938633', '02-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-02 16:22:48', '0000-00-00'), (1127, 1028, 'Pay U Money', 'Online Payment', 4720, '', '', '', '', '', '', '288544159', '02-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-02 17:38:05', '0000-00-00'), (1128, 1029, 'Cash', 'Cash', 60000, '', '', '', '', '', '', '', '', 'Ajay sir 04.12.2019', 'ACTIVE', 'Rekha', '2019-12-05 12:44:20', '0000-00-00'), (1129, 1030, 'SBI Jayblues', 'Online Payment', 25960, '', '', '', '', '', '', '', '04-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-05 13:11:19', '2019-12-06'), (1130, 1031, 'UPI', 'PAYTM', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-12-06 10:57:31', '0000-00-00'), (1131, 1032, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '05-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-06 11:22:00', '0000-00-00'), (1132, 1033, 'UPI', 'PAYTM', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-12-06 13:48:22', '0000-00-00'), (1133, 1034, 'SBI Jayblues', 'Online Payment', 5500, '', '', '', '', '', '', '934013509713', '06-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-06 13:54:29', '0000-00-00'), (1134, 1004, 'HDFC Jayblues', 'Online Payment', 90720, '', '', '', '', '', '', '', '18-09-2019', '', 'ACTIVE', 'Ajay', '2019-12-06 15:21:44', '0000-00-00'), (1135, 1004, 'HDFC Jayblues', 'Online Payment', 61992, '', '', '', '', '', '', '', '06-12-2019', '', 'ACTIVE', 'Ajay', '2019-12-06 15:22:41', '0000-00-00'), (1136, 1035, 'HDFC Jayblues', 'Cash', 7200, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Rekha', '2019-12-10 10:53:40', '0000-00-00'), (1137, 1036, 'SBI Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '594023779', '10-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-10 11:19:41', '0000-00-00'), (1138, 1037, 'HDFC Jayblues', 'Online Payment', 30200, '', '', '', '', '', '', '', '09-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-10 14:11:34', '0000-00-00'), (1139, 1038, 'HDFC Jayblues', 'Online Payment', 3776, '', '', '', '', '', '', '', '12-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-12 17:57:36', '0000-00-00'), (1140, 1039, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '12-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-16 12:27:56', '0000-00-00'), (1141, 1040, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '12-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-16 13:19:31', '0000-00-00'), (1142, 1043, 'HDFC Jayblues', 'Cheque', 7200, '308030', '18-12-2019', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-12-24 12:21:11', '0000-00-00'), (1143, 1044, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '21-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:18:37', '0000-00-00'), (1144, 1045, 'HDFC Jayblues', 'Online Payment', 4130, '', '', '', '', '', '', '', '23-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:21:19', '0000-00-00'), (1145, 1041, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '23-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:24:13', '2020-01-16'), (1146, 1042, 'HDFC Jayblues', 'Online Payment', 3100, '', '', '', '', '', '', '', '23-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:24:38', '2020-01-16'), (1147, 1048, 'HDFC Jayblues', 'Online Payment', 5400, '', '', '', '', '', '', '', '23-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:43:18', '0000-00-00'), (1148, 1049, 'HDFC Jayblues', 'Online Payment', 3100, '', '', '', '', '', '', '', '23-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:45:15', '0000-00-00'), (1149, 1009, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '24-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-24 13:46:49', '0000-00-00'), (1150, 1047, 'HDFC Jayblues', 'Cheque', 5900, '174455', '19-12-2019', 'SBI', 'J P Nagar,1st phase', '', '', '', '', '', 'ACTIVE', 'Rekha', '2019-12-25 17:45:15', '0000-00-00'), (1151, 1050, 'SBI Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '300300660', '26-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-26 12:58:59', '0000-00-00'), (1152, 1051, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '26-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-26 13:08:45', '0000-00-00'), (1153, 1052, 'HDFC Jayblues', 'Online Payment', 14500, '', '', '', '', '', '', '', '27-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-27 18:31:38', '0000-00-00'), (1154, 1053, 'SBI Jayblues', 'Online Payment', 11284, '', '', '', '', '', '', 'IMPS936119358002', '27-12-2019', '', 'ACTIVE', 'Rekha', '2019-12-28 11:39:40', '0000-00-00'), (1155, 1054, 'Cash', 'Cash', 2000, '', '', '', '', '', '', '', '', 'Deposited to hdfc bank', 'ACTIVE', 'Rekha', '2019-12-28 12:06:39', '0000-00-00'), (1156, 1055, 'HDFC Jayblues', 'Cheque', 11346, '652860', '03-01-2020', 'Syndicate bank', 'Basavanagudi branch', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-03 13:14:24', '0000-00-00'), (1157, 1056, 'SBI Jayblues', 'Online Payment', 4500, '', '', '', '', '', '', '', '03-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-03 13:16:56', '0000-00-00'), (1158, 1057, 'HDFC Jayblues', 'Cash', 1000, '', '', '', '', '', '', '', '', 'deposited to hdfc bank', 'ACTIVE', 'Rekha', '2020-01-03 13:18:41', '0000-00-00'), (1159, 1039, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', 'BM93600876763067', '26-12-2019', '', 'ACTIVE', 'Rekha', '2020-01-03 13:29:12', '0000-00-00'), (1160, 1059, 'HDFC Jayblues', 'Cheque', 54000, '', '02-01-2020', 'HDFC', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-03 16:25:48', '0000-00-00'), (1161, 1039, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '03-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-03 17:02:40', '0000-00-00'), (1162, 1061, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '936516783582', '31-12-2019', '', 'ACTIVE', 'Rekha', '2020-01-06 17:33:35', '0000-00-00'), (1163, 1062, 'HDFC Jayblues', 'Online Payment', 37500, '', '', '', '', '', '', '', '08-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-08 11:58:07', '0000-00-00'), (1164, 1060, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '06-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-08 16:02:21', '0000-00-00'), (1165, 1058, 'HDFC Jayblues', 'Online Payment', 100000, '', '', '', '', '', '', '', '03-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-08 16:05:44', '0000-00-00'), (1166, 1063, 'HDFC Jayblues', 'Cheque', 5000, '000386', '09-01-2020', 'Andhra Bank', 'Garebhavipalya(2432)', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-09 17:14:33', '0000-00-00'), (1167, 1064, 'HDFC Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '10-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-10 12:12:31', '0000-00-00'), (1168, 1065, 'SBI Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '10-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-13 15:24:01', '0000-00-00'), (1169, 968, 'HDFC Jayblues', 'Online Payment', 44250, '', '', '', '', '', '', '', '27-09-2019', '', 'ACTIVE', 'Ajay', '2020-01-13 17:06:27', '0000-00-00'), (1170, 993, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', 'Nithin 25.10.2019', 'ACTIVE', 'Rekha', '2020-01-13 17:47:04', '0000-00-00'), (1171, 1066, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '14-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-14 17:47:24', '0000-00-00'), (1172, 1067, 'HDFC Jayblues', 'Cheque', 11800, '214561', '16-01-2020', 'Karnataka Bank', 'Rajajinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-16 14:11:28', '0000-00-00'), (1173, 1062, 'HDFC Jayblues', 'Online Payment', 37500, '', '', '', '', '', '', '', '17-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-17 11:09:05', '0000-00-00'), (1174, 1069, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', 'Id-268612451', '20-08-2019', '', 'ACTIVE', 'Rekha', '2020-01-17 17:53:46', '0000-00-00'), (1175, 1069, 'HDFC Jayblues', 'Online Payment', 9340, '', '', '', '', '', '', 'Id-296336422', '16-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-17 17:54:48', '0000-00-00'), (1176, 999, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '31-10-2019', '', 'ACTIVE', 'Ajay', '2020-01-20 18:06:04', '0000-00-00'), (1177, 1068, 'HDFC Jayblues', 'Online Payment', 19992, '', '', '', '', '', '', '', '18-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-24 12:30:59', '0000-00-00'), (1178, 1071, 'Cash', 'PAYTM', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-27 17:37:12', '0000-00-00'), (1179, 1070, 'UPI', 'PAYTM', 39000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-27 17:38:45', '0000-00-00'), (1180, 1073, 'UPI', 'PAYTM', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-01-29 18:00:44', '0000-00-00'), (1181, 1074, 'HDFC Jayblues', 'Online Payment', 4700, '', '', '', '', '', '', '', '29-01-2020', '', 'ACTIVE', 'Rekha', '2020-01-29 18:04:54', '0000-00-00'), (1182, 1040, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '24-01-2020', '', 'ACTIVE', 'Rekha', '2020-02-03 12:10:50', '0000-00-00'), (1183, 1043, 'HDFC Jayblues', 'Cheque', 8700, '308057', '20-01-2020', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-04 18:18:09', '0000-00-00'), (1184, 1043, 'HDFC Jayblues', 'Cheque', 15420, '308058', '22-01-2020', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-04 18:19:20', '0000-00-00'), (1185, 1076, 'HDFC Jayblues', 'Online Payment', 49999, '', '', '', '', '', '', '', '05-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-05 15:50:54', '0000-00-00'), (1186, 1077, 'HDFC Jayblues', 'Online Payment', 49999, '', '', '', '', '', '', '', '05-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-05 16:00:47', '0000-00-00'), (1187, 1077, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '06-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-06 16:17:42', '2020-02-06'), (1188, 1075, 'HDFC Jayblues', 'Cheque', 7200, '308030', '18-12-2019', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-06 16:22:37', '0000-00-00'), (1189, 1075, 'HDFC Jayblues', 'Cheque', 8700, '308057', '20-01-2020', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-06 16:23:23', '0000-00-00'), (1190, 1075, 'HDFC Jayblues', 'Cheque', 15420, '308058', '22-01-2020', 'Vijaya bank', 'Kasturinagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-06 16:23:56', '0000-00-00'), (1191, 1078, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '06-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-06 18:05:58', '0000-00-00'), (1192, 1079, 'HDFC Jayblues', 'Cheque', 7000, '000338', '07-02-2020', 'Kotak', 'J P Nagar 2nd phase', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-10 13:34:11', '0000-00-00'), (1193, 1080, 'HDFC Jayblues', 'Cheque', 7000, '005051', '07-02-2020', 'HDFC', 'J P Nagar 2nd phase', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-10 13:40:04', '0000-00-00'), (1194, 921, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '10-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-10 15:17:30', '0000-00-00'), (1195, 1080, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '308030', '10-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-10 18:27:06', '0000-00-00'), (1196, 1082, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '10-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-10 18:47:33', '0000-00-00'), (1197, 1084, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '11-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-11 16:09:08', '2020-02-11'), (1198, 1063, 'HDFC Jayblues', 'Cheque', 7272, '000392', '13-02-2020', 'Andhra Bank', 'Garebhavipalya(2432)', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-13 11:13:03', '0000-00-00'), (1199, 1086, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '13-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:20:32', '0000-00-00'), (1200, 1087, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '13-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:24:15', '0000-00-00'), (1201, 1040, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '13-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:25:13', '0000-00-00'), (1202, 1040, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '12-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:26:32', '0000-00-00'), (1203, 1088, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '12-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:37:21', '0000-00-00'), (1204, 1088, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '13-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-14 13:37:42', '0000-00-00'), (1205, 1090, 'Pay U Money', 'Online Payment', 4000, '', '', '', '', '', '', '', '21-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-20 12:12:26', '0000-00-00'), (1206, 824, 'HDFC Jayblues', 'PAYTM', 4720, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-02-24 18:59:17', '0000-00-00'), (1207, 753, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '321387111', '26-02-2020', '', 'ACTIVE', 'Rekha', '2020-02-26 16:04:59', '0000-00-00'), (1208, 1092, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '26-02-2020', '', 'ACTIVE', 'Ajay', '2020-02-27 11:39:46', '0000-00-00'), (1209, 1095, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '09-03-2020', '', 'ACTIVE', 'Rekha', '2020-03-09 11:15:42', '0000-00-00'), (1210, 1093, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '09-03-2020', '', 'ACTIVE', 'Rekha', '2020-03-09 15:01:01', '0000-00-00'), (1211, 1009, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '11-03-2020', '', 'ACTIVE', 'Ajay', '2020-03-13 18:45:58', '0000-00-00'), (1212, 1100, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '18-03-2020', '', 'ACTIVE', 'Ajay', '2020-03-18 11:26:57', '0000-00-00'), (1213, 1102, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '18-03-2020', '', 'ACTIVE', 'Rekha', '2020-03-18 18:59:23', '0000-00-00'), (1214, 1103, 'HDFC Jayblues', 'Online Payment', 650000, '', '', '', '', '', '', '', '07-04-2020', '', 'ACTIVE', 'Ajay', '2020-04-08 10:42:35', '0000-00-00'), (1215, 1107, 'UPI', 'PAYTM', 4720, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-05-19 13:09:19', '0000-00-00'), (1216, 1105, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '13-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-19 13:56:46', '0000-00-00'), (1217, 1106, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '12-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-19 14:03:13', '0000-00-00'), (1218, 1108, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '19-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-19 14:06:03', '0000-00-00'), (1219, 1110, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '20-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-20 12:12:33', '0000-00-00'), (1220, 1109, 'HDFC Jayblues', 'Online Payment', 5664, '', '', '', '', '', '', '', '20-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-21 18:04:20', '0000-00-00'), (1221, 1111, 'SBI Jayblues', 'Online Payment', 5564, '', '', '', '', '', '', '', '22-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-22 15:25:58', '0000-00-00'), (1222, 1112, 'HDFC Jayblues', 'Online Payment', 2832, '', '', '', '', '', '', '', '23-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-25 16:36:33', '0000-00-00'), (1223, 1117, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '26-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-26 15:16:52', '2020-05-30'), (1224, 1094, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '09-03-2020', '', 'ACTIVE', 'Rekha', '2020-05-28 11:52:35', '0000-00-00'), (1225, 1101, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', '', '17-03-2020', '', 'ACTIVE', 'Rekha', '2020-05-28 11:53:49', '0000-00-00'), (1226, 1119, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '29-05-2020', '', 'ACTIVE', 'Rekha', '2020-05-29 14:04:15', '0000-00-00'), (1227, 1120, 'HDFC Jayblues', 'Online Payment', 6500, '', '', '', '', '', '', 'GooglePay', '30-05-2020', '312 Account GooglePay', 'ACTIVE', 'Rekha', '2020-05-30 13:56:19', '2020-05-30'), (1228, 1120, 'HDFC Jayblues', 'PAYTM', 6500, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Rekha', '2020-05-30 13:57:56', '0000-00-00'), (1229, 1126, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '312 Account including tax', '04-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-04 13:59:47', '0000-00-00'), (1230, 1124, 'HDFC Jayblues', 'Online Payment', 55250, '', '', '', '', '', '', '', '05-06-2020', '', 'ACTIVE', 'Ajay', '2020-06-08 15:06:00', '0000-00-00'), (1231, 1125, 'HDFC Jayblues', 'Online Payment', 55250, '', '', '', '', '', '', '', '05-06-2020', '', 'ACTIVE', 'Ajay', '2020-06-08 15:06:32', '0000-00-00'), (1232, 1127, 'HDFC Jayblues', 'Online Payment', 247798, '', '', '', '', '', '', '', '11-06-2020', '', 'ACTIVE', 'Ajay', '2020-06-11 11:37:56', '0000-00-00'), (1233, 1129, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '11-06-20', '', 'ACTIVE', 'Rekha', '2020-06-11 17:32:18', '0000-00-00'), (1234, 1130, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '15-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-15 11:10:10', '0000-00-00'), (1235, 1134, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '16-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-16 12:19:25', '0000-00-00'), (1236, 1135, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '17-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-17 16:03:19', '0000-00-00'), (1237, 1137, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '19-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-19 16:06:17', '0000-00-00'), (1238, 1136, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '23-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-23 13:16:26', '0000-00-00'), (1239, 1138, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '25-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-27 16:13:29', '0000-00-00'), (1240, 1139, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', 'NEFTB06320114706', '30-06-2020', '', 'ACTIVE', 'Rekha', '2020-06-30 12:52:07', '0000-00-00'), (1241, 1140, 'HDFC Jayblues', 'Cash', 7000, '', '', '', '', '', '', '', '', 'Nithin', 'ACTIVE', 'Rekha', '2020-06-30 16:02:50', '0000-00-00'), (1242, 1088, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '02-07-2020', '', 'ACTIVE', 'Ajay', '2020-07-06 11:57:48', '0000-00-00'), (1243, 1130, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '07-07-2020', '', 'ACTIVE', 'Ajay', '2020-07-08 15:39:47', '0000-00-00'), (1244, 1070, 'UPI', 'Online Payment', 15000, '', '', '', '', '', '', 'TO 312 account', '08-07-2020', '', 'ACTIVE', 'Ajay', '2020-07-08 16:47:18', '0000-00-00'), (1245, 1070, 'UPI', 'Online Payment', 20000, '', '', '', '', '', '', '312 account', '20-02-2020', '', 'ACTIVE', 'Ajay', '2020-07-08 16:48:57', '0000-00-00'), (1246, 1143, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '312 Account Google pay', '10-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-10 12:41:50', '0000-00-00'), (1247, 1144, 'HDFC Jayblues', 'Online Payment', 6500, '', '', '', '', '', '', '', '10-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-10 14:27:58', '0000-00-00'), (1248, 1145, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-11 11:11:45', '0000-00-00'), (1249, 1148, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '16-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-16 11:35:39', '0000-00-00'), (1250, 1149, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '17-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-17 16:10:29', '0000-00-00'), (1251, 1142, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '20-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-21 12:27:35', '0000-00-00'), (1252, 1117, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '22-07-2020', '', 'ACTIVE', 'Ajay', '2020-07-22 15:39:34', '0000-00-00'), (1253, 1150, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '22-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-22 16:04:43', '0000-00-00'), (1254, 1147, 'HDFC Jayblues', 'Cheque', 4720, '556615', '17-07-2020', 'SBI Bank', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-07-22 16:09:14', '0000-00-00'), (1255, 1152, 'HDFC Jayblues', 'Cheque', 9440, '732446', '25-07-2020', 'SBM Bank', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-07-25 19:12:12', '0000-00-00'), (1256, 1133, 'HDFC Jayblues', 'Online Payment', 42160, '', '', '', '', '', '', '', '29-06-2020', '', 'ACTIVE', 'Ajay', '2020-07-27 15:33:15', '0000-00-00'), (1257, 1153, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '27-07-2020', '', 'ACTIVE', 'Rekha', '2020-07-27 16:14:06', '0000-00-00'), (1258, 1133, 'HDFC Jayblues', 'Online Payment', 45000, '', '', '', '', '', '', '', '14-11-2019', '', 'ACTIVE', 'Rekha', '2020-07-27 16:28:02', '0000-00-00'), (1259, 1133, 'HDFC Jayblues', 'Online Payment', 30000, '', '', '', '', '', '', '', '24-12-2019', '', 'ACTIVE', 'Rekha', '2020-07-27 16:29:35', '0000-00-00'), (1260, 1133, 'HDFC Jayblues', 'Online Payment', 20000, '', '', '', '', '', '', '', '11-03-2020', '', 'ACTIVE', 'Rekha', '2020-07-27 16:30:40', '0000-00-00'), (1261, 1141, 'HDFC Jayblues', 'Online Payment', 650000, '', '', '', '', '', '', '', '17-07-2020', '', 'ACTIVE', 'Ajay', '2020-07-30 14:41:05', '0000-00-00'), (1262, 1104, 'HDFC Jayblues', 'Online Payment', 650000, '', '', '', '', '', '', '', '20-05-2020', '', 'ACTIVE', 'Ajay', '2020-07-30 14:41:42', '0000-00-00'), (1263, 1155, 'HDFC Jayblues', 'Online Payment', 45000, '', '', '', '', '', '', 'NEFT', '03-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-03 18:39:20', '0000-00-00'), (1264, 1156, 'HDFC Jayblues', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-08-06 13:13:11', '0000-00-00'), (1265, 1154, 'HDFC Jayblues', 'Online Payment', 2500, '', '', '', '', '', '', '', '06-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-06 13:25:36', '0000-00-00'), (1266, 1157, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '07-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-07 11:39:45', '0000-00-00'), (1267, 1154, 'HDFC Jayblues', 'Online Payment', 2220, '', '', '', '', '', '', 'KKBKH20220637033', '07-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-07 16:56:54', '0000-00-00'), (1268, 1160, 'SBI Jayblues', 'Cheque', 10200, '732866', '11-08-2020', 'Canara Bank', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-08-11 16:23:31', '0000-00-00'), (1269, 1161, 'HDFC Jayblues', 'Online Payment', 25415, '', '', '', '', '', '', '', '17-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-17 12:24:08', '2020-08-17'), (1270, 1162, 'HDFC Jayblues', 'Online Payment', 26967, '', '', '', '', '', '', '', '14-08-2020', '', 'ACTIVE', 'Ajay', '2020-08-17 19:00:51', '0000-00-00'), (1271, 1164, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '17-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-17 19:59:47', '0000-00-00'), (1272, 1158, 'HDFC Jayblues', 'Online Payment', 45000, '', '', '', '', '', '', '', '07-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-18 13:48:53', '0000-00-00'), (1273, 1165, 'HDFC Jayblues', 'Online Payment', 4800, '', '', '', '', '', '', '', '19-08-2020', '', 'ACTIVE', 'Rekha', '2020-08-19 14:39:37', '0000-00-00'), (1274, 1166, 'SBI Jayblues', 'Online Payment', 23542, '', '', '', '', '', '', '', '01-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-01 11:11:48', '0000-00-00'), (1275, 1167, 'Cash', 'Cash', 3500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-09-01 13:18:07', '2020-09-14'), (1276, 1137, 'HDFC Jayblues', 'Online Payment', 500, '', '', '', '', '', '', 'Mail configuration ', '29-08-2020', '', 'ACTIVE', 'Rekha', '2020-09-02 11:02:47', '0000-00-00'), (1277, 1168, 'HDFC Jayblues', 'Online Payment', 29313, '', '', '', '', '', '', '', '04-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-04 18:48:02', '0000-00-00'), (1278, 1169, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '07-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-07 14:43:12', '0000-00-00'), (1279, 1171, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '07-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-07 14:44:03', '0000-00-00'), (1280, 1172, 'HDFC Jayblues', 'Online Payment', 25630, '', '', '', '', '', '', '', '14-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-14 18:46:50', '0000-00-00'), (1281, 1173, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '18-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-18 18:29:28', '0000-00-00'), (1282, 1174, 'Cash', 'Cash', 15000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-09-22 17:12:35', '0000-00-00'), (1283, 1176, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '25-09-2020', '', 'ACTIVE', 'Rekha', '2020-09-25 16:04:22', '0000-00-00'), (1284, 1177, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '29-09-2020', '', 'ACTIVE', 'Rekha', '2020-10-01 13:47:07', '0000-00-00'), (1285, 1127, 'HDFC Jayblues', 'Online Payment', 124457, '', '', '', '', '', '', '', '06-10-2020', '', 'ACTIVE', 'Ajay', '2020-10-06 13:53:50', '0000-00-00'), (1286, 1181, 'Cash', 'Cash', 4720, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-10-07 13:54:33', '0000-00-00'), (1287, 1175, 'SBI Jayblues', 'Cheque', 7080, '', '07-10-2020', 'SBI ', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-10-07 15:39:52', '0000-00-00'), (1288, 1182, 'HDFC Jayblues', 'Online Payment', 5400, '', '', '', '', '', '', '', '08-10-2020', '', 'ACTIVE', 'Rekha', '2020-10-08 11:04:24', '0000-00-00'), (1289, 1167, 'Cash', 'Cash', 500, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-10-08 13:45:48', '0000-00-00'), (1290, 1180, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '09-10-20', '', 'ACTIVE', 'Rekha', '2020-10-09 18:59:26', '0000-00-00'), (1291, 1179, 'HDFC Jayblues', 'Online Payment', 2360, '', '', '', '', '', '', '', '12-10-2020', '', 'ACTIVE', 'Rekha', '2020-10-12 15:06:45', '0000-00-00'), (1292, 1185, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '21-10-2020', '', 'ACTIVE', 'Rekha', '2020-10-27 10:51:25', '0000-00-00'), (1293, 1185, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '24-12-2019', '', 'ACTIVE', 'Rekha', '2020-10-27 10:54:35', '0000-00-00'), (1294, 1183, 'HDFC Jayblues', 'Online Payment', 6900, '', '', '', '', '', '', '', '29-10-2020', '', 'ACTIVE', 'Rekha', '2020-10-31 15:06:18', '0000-00-00'), (1295, 1127, 'HDFC Jayblues', 'Online Payment', 124457, '', '', '', '', '', '', '', '04-11-2020', '', 'ACTIVE', 'Subramanya', '2020-11-04 12:35:53', '0000-00-00'), (1296, 1187, 'HDFC Jayblues', 'Online Payment', 100000, '', '', '', '', '', '', '', '23-09-2020', '', 'ACTIVE', 'Rekha', '2020-11-09 12:53:15', '0000-00-00'), (1297, 1187, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '07-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-09 12:53:58', '0000-00-00'), (1298, 1186, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '10-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-10 16:41:43', '0000-00-00'), (1299, 1188, 'HDFC Jayblues', 'Online Payment', 56000, '', '', '', '', '', '', '', '11-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-12 12:18:21', '0000-00-00'), (1300, 1190, 'SBI Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '12-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-13 16:19:43', '0000-00-00'), (1301, 1191, 'HDFC Jayblues', 'Online Payment', 10620, '', '', '', '', '', '', '', '18-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-18 18:26:59', '0000-00-00'), (1302, 1192, 'HDFC Jayblues', 'Cheque', 5900, '', '19-11-2020', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-11-19 13:30:23', '0000-00-00'), (1303, 1189, 'HDFC Jayblues', 'Online Payment', 55250, '', '', '', '', '', '', '', '19-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-20 15:24:28', '0000-00-00'), (1304, 1193, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '20-11-2020', '', 'ACTIVE', 'Rekha', '2020-11-20 16:46:55', '0000-00-00'), (1305, 1194, 'Cash', 'Cash', 6000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-11-28 18:22:40', '0000-00-00'), (1306, 1195, 'UPI', 'Online Payment', 5900, '', '', '', '', '', '', '', '02-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-02 12:53:09', '0000-00-00'), (1307, 1196, 'HDFC Jayblues', 'Online Payment', 8260, '', '', '', '', '', '', '', '03-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-03 18:14:17', '0000-00-00'), (1308, 1197, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '05-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-07 15:35:29', '0000-00-00'), (1309, 1198, 'UPI', 'Online Payment', 3540, '', '', '', '', '', '', '', '07-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-07 17:42:37', '0000-00-00'), (1310, 1199, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '05-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-09 11:56:04', '0000-00-00'), (1311, 1130, 'HDFC Jayblues', 'Online Payment', 5400, '', '', '', '', '', '', '', '10-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-10 10:58:44', '0000-00-00'), (1312, 1200, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '10-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-10 11:00:41', '0000-00-00'), (1313, 1202, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-12-14 12:06:58', '0000-00-00'), (1314, 1203, 'UPI', 'Online Payment', 5900, '', '', '', '', '', '', 'Credited to Ajay sir personal account', '15-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-15 17:07:36', '0000-00-00'), (1315, 1173, 'HDFC Jayblues', 'Online Payment', 12140, '', '', '', '', '', '', '', '18-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-18 11:19:22', '0000-00-00'), (1316, 1204, 'SBI Jayblues', 'Cheque', 4130, '115183', '23-12-2020', 'SBI', 'SCM Branch Jayanagar', '', '', '', '', '', 'ACTIVE', 'Rekha', '2020-12-24 10:41:22', '0000-00-00'), (1317, 1205, 'HDFC Jayblues', 'Online Payment', 4956, '', '', '', '', '', '', '', '25-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-25 15:17:01', '0000-00-00'), (1318, 1206, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '26-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-28 13:08:34', '0000-00-00'), (1319, 1207, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '29-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-29 13:06:24', '0000-00-00'), (1320, 1127, 'HDFC Jayblues', 'Online Payment', 157457, '', '', '', '', '', '', '', '29-12-2020', '', 'ACTIVE', 'Rekha', '2020-12-29 13:39:22', '0000-00-00'), (1321, 1210, 'Cash', 'Cash', 15000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-01-15 13:01:35', '0000-00-00'), (1322, 1211, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '12-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-18 15:59:19', '0000-00-00'), (1323, 1209, 'HDFC Jayblues', 'Online Payment', 100, '', '', '', '', '', '', '', '26-12-2020', '', 'ACTIVE', 'Subramanya', '2021-01-18 16:00:37', '0000-00-00'), (1324, 1209, 'HDFC Jayblues', 'Online Payment', 4620, '', '', '', '', '', '', '', '28-12-2020', '', 'ACTIVE', 'Subramanya', '2021-01-18 16:01:02', '0000-00-00'), (1325, 1209, 'HDFC Jayblues', 'Online Payment', 1250, '', '', '', '', '', '', '', '05-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-18 16:01:31', '0000-00-00'), (1326, 1208, 'HDFC Jayblues', 'Online Payment', 43000, '', '', '', '', '', '', '', '24-12-2020', '', 'ACTIVE', 'Subramanya', '2021-01-18 16:03:07', '0000-00-00'), (1327, 1201, 'HDFC Jayblues', 'Cash', 200000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-01-18 16:03:51', '0000-00-00'), (1328, 1212, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '19-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-19 11:20:05', '0000-00-00'), (1329, 1213, 'Cash', 'Online Payment', 100000, '', '', '', '', '', '', '', '21-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-25 13:26:51', '0000-00-00'); INSERT INTO `invoice_payments` (`payment_id`, `invoice_id`, `favour_of`, `payment_type`, `amount`, `cheque_no`, `cheque_date`, `bank_name`, `branch_name`, `dd_no`, `dd_date`, `utr_no`, `online_date`, `collected_by`, `delete_status`, `added_by`, `created_at`, `updated_at`) VALUES (1330, 1214, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '25-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-26 11:15:50', '0000-00-00'), (1331, 1215, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '20-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-26 11:17:28', '0000-00-00'), (1332, 1216, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '28-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-29 13:04:15', '0000-00-00'), (1333, 1217, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '28-01-2021', '', 'ACTIVE', 'Subramanya', '2021-01-29 13:04:34', '0000-00-00'), (1334, 1218, 'HDFC Jayblues', 'Cash', 50000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Subramanya', '2021-02-04 19:06:06', '0000-00-00'), (1335, 1211, 'HDFC Jayblues', 'Online Payment', 7700, '', '', '', '', '', '', '', '05-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-05 17:17:04', '0000-00-00'), (1336, 1219, 'HDFC Jayblues', 'Online Payment', 25415, '', '', '', '', '', '', '', '10-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-10 16:42:03', '0000-00-00'), (1337, 1220, 'HDFC Jayblues', 'Online Payment', 25415, '', '', '', '', '', '', '', '10-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-10 16:42:23', '0000-00-00'), (1338, 1221, 'HDFC Jayblues', 'Online Payment', 5664, '', '', '', '', '', '', '', '11-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-11 17:13:42', '0000-00-00'), (1339, 1222, 'HDFC Jayblues', 'Online Payment', 6000, '', '', '', '', '', '', '', '18-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-18 18:22:28', '0000-00-00'), (1340, 1223, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '22-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-22 15:33:00', '0000-00-00'), (1341, 1224, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '22-02-2021', '', 'ACTIVE', 'Subramanya', '2021-02-22 15:34:45', '0000-00-00'), (1342, 1226, 'Cash', 'Cash', 200000, '', '', '', '', '', '', '', '', 'H K SRINIVASA', 'ACTIVE', 'Subramanya', '2021-03-03 12:45:45', '0000-00-00'), (1343, 1227, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'SWATHI', 'ACTIVE', 'Subramanya', '2021-03-03 13:05:06', '0000-00-00'), (1344, 1228, 'Cash', 'Cash', 12000, '', '', '', '', '', '', '', '', 'NITHIN', 'ACTIVE', 'Subramanya', '2021-03-03 13:10:28', '0000-00-00'), (1345, 1225, 'HDFC Jayblues', 'Online Payment', 45000, '', '', '', '', '', '', '', '26-02-2021', '', 'ACTIVE', 'Subramanya', '2021-03-16 13:02:05', '0000-00-00'), (1346, 1228, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '18-03-2021', '', 'ACTIVE', 'Subramanya', '2021-03-23 18:17:39', '0000-00-00'), (1347, 1230, 'HDFC Jayblues', 'Online Payment', 10325, '', '', '', '', '', '', '', '18-03-2021', '', 'ACTIVE', 'Subramanya', '2021-03-24 18:18:15', '0000-00-00'), (1348, 1229, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '18-03-2021', '', 'ACTIVE', 'Subramanya', '2021-03-24 18:18:54', '0000-00-00'), (1349, 1232, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '09-03-2021', '', 'ACTIVE', 'Subramanya', '2021-04-01 13:32:20', '0000-00-00'), (1350, 1218, 'HDFC Jayblues', 'Cash', 20000, '', '', '', '', '', '', '', '', 'Subramanya', 'ACTIVE', 'Subramanya', '2021-04-06 12:25:46', '0000-00-00'), (1351, 1228, 'HDFC Jayblues', 'Online Payment', 7000, '', '', '', '', '', '', '', '01-04-2021', '', 'ACTIVE', 'Subramanya', '2021-04-06 12:26:34', '0000-00-00'), (1352, 1231, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '07-04-2021', '', 'ACTIVE', 'Subramanya', '2021-04-09 18:45:50', '0000-00-00'), (1353, 1234, 'UPI', 'Online Payment', 15000, '', '', '', '', '', '', '', '09-04-2021', '', 'ACTIVE', 'Subramanya', '2021-04-09 19:16:04', '0000-00-00'), (1354, 1235, 'Cash', 'Cash', 100000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'NISARGA', '2021-04-12 12:22:49', '0000-00-00'), (1355, 1235, 'Cash', 'Cash', 50000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'NISARGA', '2021-04-12 12:48:59', '0000-00-00'), (1356, 1237, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '21-04-2021', '', 'ACTIVE', 'Subramanya', '2021-04-23 13:19:40', '0000-00-00'), (1357, 1235, 'Cash', 'Cash', 50000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-04-23 13:20:17', '0000-00-00'), (1358, 1238, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '01-05-2021', '', 'ACTIVE', 'Subramanya', '2021-05-04 13:56:06', '0000-00-00'), (1359, 1240, 'HDFC Jayblues', 'Online Payment', 138800, '', '', '', '', '', '', '', '05-05-2021', '', 'ACTIVE', 'Subramanya', '2021-05-05 21:54:58', '0000-00-00'), (1360, 1242, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '14-05-2021', '', 'ACTIVE', 'Subramanya', '2021-05-14 19:44:07', '0000-00-00'), (1361, 1243, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-05-15 16:54:53', '0000-00-00'), (1362, 1244, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '19-05-2021', '', 'ACTIVE', 'Subramanya', '2021-05-19 12:38:53', '0000-00-00'), (1363, 1235, 'Cash', 'Online Payment', 200000, '', '', '', '', '', '', '', '23-05-2021', '', 'ACTIVE', 'Subramanya', '2021-06-03 17:14:25', '0000-00-00'), (1364, 1246, 'HDFC Jayblues', 'Online Payment', 4250, '', '', '', '', '', '', '', '04-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-05 13:19:58', '0000-00-00'), (1365, 1230, 'HDFC Jayblues', 'Online Payment', 10325, '', '', '', '', '', '', '', '10-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-11 13:04:55', '0000-00-00'), (1366, 1249, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-12 13:26:56', '0000-00-00'), (1367, 1250, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '15-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-16 11:34:43', '0000-00-00'), (1368, 1251, 'Cash', 'Cash', 10000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-06-16 12:00:22', '0000-00-00'), (1369, 1252, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '14-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-16 16:51:54', '0000-00-00'), (1370, 1253, 'Cash', 'Cash', 10000, '', '', '', '', '', '', '', '', 'Ajay', 'ACTIVE', 'Subramanya', '2021-06-23 17:53:08', '0000-00-00'), (1371, 1247, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '19-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-23 17:54:56', '0000-00-00'), (1372, 1248, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '19-06-2021', '', 'ACTIVE', 'Subramanya', '2021-06-23 17:55:20', '0000-00-00'), (1373, 1252, 'HDFC Jayblues', 'Online Payment', 41300, '', '', '', '', '', '', '', '08-07-2021', '', 'ACTIVE', 'Ajay', '2021-07-08 18:06:19', '0000-00-00'), (1374, 1258, 'HDFC Jayblues', 'Online Payment', 25520, '', '', '', '', '', '', '', '20-07-2021', '', 'ACTIVE', 'Ajay', '2021-07-21 17:13:35', '0000-00-00'), (1375, 1255, 'HDFC Jayblues', 'Online Payment', 12960, '', '', '', '', '', '', '', '23-07-2021', '', 'ACTIVE', 'Ajay', '2021-07-23 15:58:30', '0000-00-00'), (1376, 1257, 'HDFC Jayblues', 'PAYTM', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ajay', '2021-07-23 16:00:17', '0000-00-00'), (1377, 1256, 'HDFC Jayblues', 'Online Payment', 49147, '', '', '', '', '', '', '', '27-07-2021', '', 'ACTIVE', 'Ajay', '2021-07-28 11:40:32', '0000-00-00'), (1378, 1268, 'HDFC Jayblues', 'Online Payment', 8000, '', '', '', '', '', '', '', '04-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-04 16:41:04', '0000-00-00'), (1379, 1266, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Akku', 'ACTIVE', 'Ajay', '2021-08-04 16:41:46', '0000-00-00'), (1380, 1267, 'Cash', 'Cash', 2000, '', '', '', '', '', '', '', '', 'sridhar', 'ACTIVE', 'Ajay', '2021-08-04 16:42:08', '0000-00-00'), (1381, 1269, 'Cash', 'Cash', 5000, '', '', '', '', '', '', '', '', 'Biddu', 'ACTIVE', 'Ajay', '2021-08-04 18:22:27', '0000-00-00'), (1382, 1263, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '04-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-05 10:37:48', '0000-00-00'), (1383, 1259, 'SBI Jayblues', 'Cheque', 4720, '', '02-08-2021', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ajay', '2021-08-06 19:13:52', '0000-00-00'), (1384, 1260, 'UPI', 'Online Payment', 5000, '', '', '', '', '', '', '', '28-07-2021', '', 'ACTIVE', 'Ajay', '2021-08-06 19:15:20', '0000-00-00'), (1385, 1260, 'UPI', 'Online Payment', 3850, '', '', '', '', '', '', 'HDFC AjaykumarHs', '02-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-06 19:16:13', '0000-00-00'), (1386, 1272, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-10 12:04:42', '0000-00-00'), (1387, 1274, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '11-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-11 18:03:55', '0000-00-00'), (1388, 1275, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '11-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-11 18:06:06', '0000-00-00'), (1389, 1273, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-11 18:13:57', '0000-00-00'), (1390, 1271, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '06-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-11 18:16:54', '0000-00-00'), (1391, 1277, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '13-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-13 18:22:47', '0000-00-00'), (1392, 1270, 'HDFC Jayblues', 'Online Payment', 5310, '', '', '', '', '', '', 'Ajaykumar HDFC', '17-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-17 16:42:31', '0000-00-00'), (1393, 1278, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-08-2021', '', 'ACTIVE', 'Biddu', '2021-08-19 12:51:00', '0000-00-00'), (1394, 1276, 'SBI Jayblues', 'Online Payment', 34000, '', '', '', '', '', '', '', '20-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-20 12:21:53', '0000-00-00'), (1395, 1279, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '19-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-20 12:24:46', '0000-00-00'), (1396, 1261, 'SBI Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '24-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-25 11:17:54', '0000-00-00'), (1397, 1262, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '23-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-25 11:20:36', '0000-00-00'), (1398, 1280, 'HDFC Jayblues', 'Online Payment', 3500, '', '', '', '', '', '', '', '24-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-25 14:05:09', '0000-00-00'), (1399, 1265, 'HDFC Jayblues', 'Online Payment', 48500, '', '', '', '', '', '', '', '25-08-2021', '', 'ACTIVE', 'Ajay', '2021-08-27 15:10:17', '0000-00-00'), (1400, 1285, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', 'Biddu', 'ACTIVE', 'Biddu', '2021-09-06 13:43:37', '0000-00-00'), (1401, 1286, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '06-09-2021', '', 'ACTIVE', 'Biddu', '2021-09-06 18:24:53', '0000-00-00'), (1402, 1287, 'SBI Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '08-09-2021', '', 'ACTIVE', 'Biddu', '2021-09-08 13:49:36', '0000-00-00'), (1403, 1288, 'Cash', 'Cash', 4000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-09-20 13:42:17', '0000-00-00'), (1404, 1290, 'UPI', 'Online Payment', 4720, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-06 18:28:04', '0000-00-00'), (1405, 1256, 'HDFC Jayblues', 'Online Payment', 49147, '', '', '', '', '', '', '', '07-10-2021', '', 'ACTIVE', 'Ajay', '2021-10-09 14:06:41', '2021-10-09'), (1406, 1293, 'Cash', 'Cash', 8000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-11 11:34:30', '0000-00-00'), (1407, 1294, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-11 17:55:25', '0000-00-00'), (1408, 1295, 'HDFC Jayblues', 'Cash', 50000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-13 17:07:49', '0000-00-00'), (1409, 1296, 'HDFC Jayblues', 'Online Payment', 1000, '', '', '', '', '', '', '', '15-10-2021', '', 'ACTIVE', 'Biddu', '2021-10-19 19:23:39', '0000-00-00'), (1410, 1296, 'HDFC Jayblues', 'Online Payment', 100000, '', '', '', '', '', '', '', '16-10-2021', '', 'ACTIVE', 'Biddu', '2021-10-19 19:24:02', '0000-00-00'), (1411, 1296, 'HDFC Jayblues', 'Online Payment', 54250, '', '', '', '', '', '', '', '19-10-2021', '', 'ACTIVE', 'Biddu', '2021-10-19 19:24:24', '0000-00-00'), (1412, 1297, 'HDFC Jayblues', 'Online Payment', 3540, '', '', '', '', '', '', '', '14-10-2021', '', 'ACTIVE', 'Biddu', '2021-10-19 19:31:13', '0000-00-00'), (1413, 1297, 'Cash', 'PAYTM', 1000, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-19 19:31:43', '0000-00-00'), (1414, 1298, 'HDFC Jayblues', 'Online Payment', 1000, '', '', '', '', '', '', '', '15-10-2021', '', 'ACTIVE', 'Ajay', '2021-10-21 18:17:06', '0000-00-00'), (1415, 1298, 'HDFC Jayblues', 'Online Payment', 100000, '', '', '', '', '', '', '', '16-10-2021', '', 'ACTIVE', 'Ajay', '2021-10-21 18:17:34', '0000-00-00'), (1416, 1298, 'HDFC Jayblues', 'Online Payment', 54250, '', '', '', '', '', '', '', '19-10-2021', '', 'ACTIVE', 'Ajay', '2021-10-21 18:18:11', '0000-00-00'), (1417, 1300, 'HDFC Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-22 18:41:20', '0000-00-00'), (1418, 1301, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Biddu', '2021-10-28 12:44:15', '0000-00-00'), (1419, 1305, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '08-11-2021', '', 'ACTIVE', 'Biddu', '2021-11-09 11:20:21', '2021-11-09'), (1420, 1303, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '09-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-09 11:38:09', '2021-11-09'), (1421, 1305, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '', '', 'INACTIVE', 'Ajay', '2021-11-09 11:38:44', '0000-00-00'), (1422, 1299, 'HDFC Jayblues', 'Online Payment', 43200, '', '', '', '', '', '', '', '18-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-19 11:23:43', '0000-00-00'), (1423, 1304, 'HDFC Jayblues', 'Online Payment', 26550, '', '', '', '', '', '', '', '15-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-19 11:24:22', '2021-11-19'), (1424, 1307, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '25-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-25 18:20:21', '0000-00-00'), (1425, 1308, 'SBI Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '29-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-29 17:39:08', '0000-00-00'), (1426, 1309, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '29-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-29 17:39:43', '0000-00-00'), (1427, 1306, 'HDFC Jayblues', 'Online Payment', 21830, '', '', '', '', '', '', '', '29-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-29 17:40:15', '0000-00-00'), (1428, 1310, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '30-11-2021', '', 'ACTIVE', 'Ajay', '2021-11-30 17:14:01', '0000-00-00'), (1429, 1311, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '01-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-01 16:41:44', '0000-00-00'), (1430, 1313, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '02-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-03 13:56:29', '0000-00-00'), (1431, 1313, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '01-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-03 13:56:48', '0000-00-00'), (1432, 1312, 'HDFC Jayblues', 'Online Payment', 29500, '', '', '', '', '', '', '', '03-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-03 18:16:15', '0000-00-00'), (1433, 1233, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '10-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-10 17:34:38', '0000-00-00'), (1434, 1314, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '14-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-16 13:04:49', '0000-00-00'), (1435, 1314, 'HDFC Jayblues', 'Online Payment', 5000, '', '', '', '', '', '', '', '15-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-16 13:05:08', '0000-00-00'), (1436, 1313, 'HDFC Jayblues', 'Online Payment', 18000, '', '', '', '', '', '', '', '29-12-2021', '', 'ACTIVE', 'Ajay', '2021-12-30 12:11:08', '0000-00-00'), (1437, 1315, 'HDFC Jayblues', 'Online Payment', 50000, '', '', '', '', '', '', '', '09-12-2021', '', 'ACTIVE', 'Ajay', '2022-01-06 17:50:14', '0000-00-00'), (1438, 1316, 'HDFC Jayblues', 'Online Payment', 17700, '', '', '', '', '', '', '', '20-01-2022', '', 'ACTIVE', 'Ajay', '2022-01-20 17:47:41', '0000-00-00'), (1439, 1317, 'HDFC Jayblues', 'Online Payment', 25000, '', '', '', '', '', '', '', '27-01-2022', '', 'ACTIVE', 'Ajay', '2022-01-29 12:23:41', '0000-00-00'), (1440, 1319, 'HDFC Jayblues', 'Online Payment', 200000, '', '', '', '', '', '', '', '28-01-2022', '', 'ACTIVE', 'Ajay', '2022-02-01 12:35:06', '0000-00-00'), (1441, 1321, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '03-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-04 11:24:28', '0000-00-00'), (1442, 1320, 'HDFC Jayblues', 'Online Payment', 130800, '', '', '', '', '', '', '', '16-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-04 11:25:28', '0000-00-00'), (1443, 1322, 'SBI Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '07-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-08 16:10:31', '0000-00-00'), (1444, 1323, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '09-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-09 11:55:36', '0000-00-00'), (1445, 1324, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-11 16:19:06', '0000-00-00'), (1446, 1325, 'HDFC Jayblues', 'Online Payment', 1880, '', '', '', '', '', '', '', '14-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-15 13:33:46', '0000-00-00'), (1447, 1327, 'HDFC Jayblues', 'Online Payment', 24426, '', '', '', '', '', '', '', '18-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-18 17:36:32', '0000-00-00'), (1448, 1328, 'SBI Jayblues', 'Online Payment', 24426, '', '', '', '', '', '', '', '18-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-18 17:37:04', '0000-00-00'), (1449, 1330, 'HDFC Jayblues', 'Online Payment', 32400, '', '', '', '', '', '', '', '24-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-25 14:04:25', '0000-00-00'), (1450, 1329, 'UPI', 'Online Payment', 5000, '', '', '', '', '', '', 'HDFC 312', '25-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-25 14:05:26', '0000-00-00'), (1451, 1318, 'HDFC Jayblues', 'Online Payment', 49014, '', '', '', '', '', '', '', '24-02-2022', '', 'ACTIVE', 'Ajay', '2022-02-25 18:28:30', '0000-00-00'), (1452, 1331, 'HDFC Jayblues', 'Online Payment', 105250, '', '', '', '', '', '', '', '22-12-2021', '', 'ACTIVE', 'Ajay', '2022-03-02 18:04:29', '0000-00-00'), (1453, 1332, 'HDFC Jayblues', 'Online Payment', 177000, '', '', '', '', '', '', '', '03-03-2022', '', 'ACTIVE', 'Ajay', '2022-03-03 16:14:19', '0000-00-00'), (1454, 1333, 'HDFC Jayblues', 'Online Payment', 18290, '', '', '', '', '', '', '', '14-03-2022', '', 'ACTIVE', 'Ajay', '2022-03-14 16:09:11', '0000-00-00'), (1455, 1334, 'HDFC Jayblues', 'Online Payment', 8850, '', '', '', '', '', '', '', '07-04-2022', '', 'ACTIVE', 'Ajay', '2022-04-08 18:04:34', '0000-00-00'), (1456, 1337, 'HDFC Jayblues', 'Online Payment', 27000, '', '', '', '', '', '', '', '07-04-2022', '', 'ACTIVE', 'Ajay', '2022-04-08 18:05:41', '0000-00-00'), (1457, 1338, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '08-04-2022', '', 'ACTIVE', 'Ajay', '2022-04-08 18:06:10', '0000-00-00'), (1458, 1339, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-04-2022', '', 'ACTIVE', 'Ajay', '2022-04-12 10:17:46', '0000-00-00'), (1459, 1342, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '12-05-2022', '', 'ACTIVE', 'Ajay', '2022-05-12 18:32:46', '0000-00-00'), (1460, 1341, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '13-05-2022', '', 'ACTIVE', 'Ajay', '2022-05-13 13:13:36', '0000-00-00'), (1461, 1343, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '15-05-2022', '', 'ACTIVE', 'Ajay', '2022-05-16 11:32:49', '0000-00-00'), (1462, 1344, 'SBI Jayblues', 'Online Payment', 75000, '', '', '', '', '', '', '', '26-05-2022', '', 'ACTIVE', 'Ajay', '2022-05-27 16:53:08', '0000-00-00'), (1463, 1346, 'HDFC Jayblues', 'Online Payment', 17500, '', '', '', '', '', '', '', '01-06-2022', '', 'ACTIVE', 'Ajay', '2022-06-01 13:40:28', '0000-00-00'), (1464, 1349, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '01-06-2022', '', 'ACTIVE', 'Ajay', '2022-06-01 16:26:12', '0000-00-00'), (1465, 1333, 'HDFC Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '22-06-2022', '', 'ACTIVE', 'Ajay', '2022-06-22 18:02:05', '0000-00-00'), (1466, 1350, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '23-06-2022', '', 'ACTIVE', 'Ajay', '2022-06-25 17:55:52', '0000-00-00'), (1467, 1352, 'SBI Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '07-07-2022', '', 'ACTIVE', 'Ajay', '2022-07-07 16:09:41', '0000-00-00'), (1468, 1354, 'HDFC Jayblues', 'Online Payment', 24750, '', '', '', '', '', '', '', '18-07-2022', '', 'ACTIVE', 'Ajay', '2022-07-18 19:38:22', '0000-00-00'), (1469, 1355, 'SBI', 'Online Payment', 4720, '', '', '', '', '', '', '', '05-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-06 10:39:39', '2022-08-06'), (1470, 1356, 'HDFC Jayblues', 'Online Payment', 11800, '', '', '', '', '', '', '', '29-07-2022', '', 'ACTIVE', 'Ajay', '2022-08-06 10:43:18', '0000-00-00'), (1471, 1357, 'HDFC Jayblues', 'Cheque', 5900, '556667', '10-08-2022', 'SBI', 'Bogadi Road', '', '', '', '', '', 'ACTIVE', 'Ajay', '2022-08-10 11:35:51', '0000-00-00'), (1472, 1359, 'HDFC Jayblues', 'Online Payment', 5664, '', '', '', '', '', '', '', '16-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-16 17:31:03', '0000-00-00'), (1473, 1361, 'SBI Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '22-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-24 18:41:23', '0000-00-00'), (1474, 1362, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '22-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-24 18:41:48', '0000-00-00'), (1475, 1360, 'HDFC Jayblues', 'Online Payment', 29500, '', '', '', '', '', '', '', '17-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-25 20:04:04', '0000-00-00'), (1476, 1358, 'HDFC Jayblues', 'Online Payment', 32400, '', '', '', '', '', '', '', '17-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-25 20:04:57', '0000-00-00'), (1477, 1363, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '22-08-2022', '', 'ACTIVE', 'Ajay', '2022-08-25 20:05:43', '0000-00-00'), (1478, 1364, 'HDFC Jayblues', 'Online Payment', 35400, '', '', '', '', '', '', '', '07-09-2022', '', 'ACTIVE', 'Ajay', '2022-09-08 18:32:07', '0000-00-00'), (1479, 1367, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '19-09-2022', '', 'ACTIVE', 'Ajay', '2022-09-19 17:55:39', '0000-00-00'), (1480, 1366, 'HDFC Jayblues', 'Online Payment', 7670, '', '', '', '', '', '', '', '16-09-2022', '', 'ACTIVE', 'Ajay', '2022-09-19 17:56:13', '0000-00-00'), (1481, 1365, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '21-09-2022', '', 'ACTIVE', 'Ajay', '2022-09-22 11:49:37', '0000-00-00'), (1482, 1369, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '13-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-08 18:09:23', '0000-00-00'), (1483, 1371, 'HDFC Jayblues', 'Online Payment', 90000, '', '', '', '', '', '', '', '11-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-11 16:57:34', '0000-00-00'), (1484, 1372, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '11-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-11 17:00:54', '0000-00-00'), (1485, 1373, 'HDFC Jayblues', 'Online Payment', 4000, '', '', '', '', '', '', '', '10-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-11 17:03:36', '0000-00-00'), (1486, 1374, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '10-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-11 17:05:01', '0000-00-00'), (1487, 1368, 'HDFC Jayblues', 'Online Payment', 41186, '', '', '', '', '', '', '', '14-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-14 19:14:40', '0000-00-00'), (1488, 1375, 'HDFC Jayblues', 'Online Payment', 12960, '', '', '', '', '', '', '', '14-10-2022', '', 'ACTIVE', 'Ajay', '2022-10-14 19:15:14', '0000-00-00'), (1489, 1377, 'HDFC Jayblues', 'Online Payment', 9440, '', '', '', '', '', '', '', '15-11-2022', '', 'ACTIVE', 'Ajay', '2022-11-15 17:53:15', '0000-00-00'), (1490, 1379, 'HDFC Jayblues', 'Online Payment', 29500, '', '', '', '', '', '', '', '23-11-2022', '', 'ACTIVE', 'Ajay', '2022-11-24 14:59:52', '0000-00-00'), (1491, 1384, 'SBI Jayblues', 'Online Payment', 10000, '', '', '', '', '', '', '', '22-11-2022', '', 'ACTIVE', 'Ajay', '2022-12-09 16:31:51', '0000-00-00'), (1492, 1384, 'SBI Jayblues', 'Online Payment', 19500, '', '', '', '', '', '', '', '30-12-2022', '', 'ACTIVE', 'Ajay', '2022-12-09 16:32:15', '0000-00-00'), (1493, 1382, 'HDFC Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '02-01-2023', '', 'ACTIVE', 'Ajay', '2023-01-03 15:50:52', '0000-00-00'), (1494, 1383, 'SBI Jayblues', 'Online Payment', 54000, '', '', '', '', '', '', '', '02-01-2023', '', 'ACTIVE', 'Ajay', '2023-01-03 15:51:27', '0000-00-00'), (1495, 1393, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '21-02-2023', '', 'ACTIVE', 'Reshma', '2023-02-22 16:03:18', '0000-00-00'), (1496, 1394, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '23-02-2023', '', 'ACTIVE', 'Ajay', '2023-02-24 14:58:09', '0000-00-00'), (1497, 1395, 'SBI Jayblues', 'Online Payment', 7650, '', '', '', '', '', '', '', '27-02-2023', '', 'ACTIVE', 'Ajay', '2023-02-28 14:59:15', '0000-00-00'), (1498, 1396, 'SBI Jayblues', 'Online Payment', 7080, '', '', '', '', '', '', '', '27-02-2023', '', 'ACTIVE', 'Ajay', '2023-02-28 15:01:06', '0000-00-00'), (1499, 1397, 'HDFC Jayblues', 'Online Payment', 58000, '', '', '', '', '', '', '', '17-03-2023', '', 'ACTIVE', 'Ajay', '2023-03-17 16:22:27', '0000-00-00'), (1500, 1403, 'HDFC Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '03-05-2023', '', 'ACTIVE', 'Ajay', '2023-05-03 12:12:23', '0000-00-00'), (1501, 1411, 'UPI', 'Online Payment', 4720, '', '', '', '', '', '', '', '04-07-2023', '', 'ACTIVE', 'Ajay', '2023-07-06 13:38:27', '0000-00-00'), (1502, 1410, 'HDFC Jayblues', 'Online Payment', 1000000, '', '', '', '', '', '', '', '05-07-2023', '', 'INACTIVE', 'Ajay', '2023-07-06 13:39:08', '0000-00-00'), (1503, 1413, 'HDFC Jayblues', 'Online Payment', 26325, '', '', '', '', '', '', '', '05-08-2023', '', 'ACTIVE', 'Ajay', '2023-08-05 16:08:03', '0000-00-00'), (1504, 1412, 'UPI', 'PAYTM', 5900, '', '', '', '', '', '', '', '', '', 'ACTIVE', 'Ajay', '2023-08-05 16:08:29', '0000-00-00'), (1505, 1416, 'HDFC Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '07-08-2023', '', 'ACTIVE', 'Ajay', '2023-08-08 14:29:02', '0000-00-00'), (1506, 1415, 'SBI Jayblues', 'Online Payment', 24840, '', '', '', '', '', '', '', '07-08-2023', '', 'ACTIVE', 'Ajay', '2023-08-08 14:29:35', '0000-00-00'), (1507, 1417, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '08-08-2023', '', 'ACTIVE', 'Ajay', '2023-08-08 18:43:06', '0000-00-00'), (1508, 1418, 'HDFC Jayblues', 'Online Payment', 5664, '', '', '', '', '', '', '', '11-08-2023', '', 'ACTIVE', 'Ajay', '2023-08-11 16:04:58', '0000-00-00'), (1509, 1419, 'SBI Jayblues', 'Cheque', 5900, '', '11-08-2023', 'SBI', '', '', '', '', '', '', 'ACTIVE', 'Ajay', '2023-08-11 17:03:33', '0000-00-00'), (1510, 1424, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '03-10-2023', '', 'ACTIVE', 'Ajay', '2023-10-06 18:28:02', '0000-00-00'), (1511, 1424, 'SBI Jayblues', 'Online Payment', 15000, '', '', '', '', '', '', '', '23-05-2023', '', 'ACTIVE', 'Ajay', '2023-10-06 18:31:01', '0000-00-00'), (1512, 1425, 'HDFC Jayblues', 'Online Payment', 78299, '', '', '', '', '', '', '', '10-10-2023', '', 'ACTIVE', 'Ajay', '2023-10-12 18:45:02', '0000-00-00'), (1513, 1449, 'HDFC Jayblues', 'Online Payment', 21000, '', '', '', '', '', '', '', '28-02-2024', '', 'ACTIVE', 'Darshan', '2024-02-28 15:03:20', '0000-00-00'), (1514, 1452, 'HDFC Jayblues', 'Online Payment', 5900, '', '', '', '', '', '', '', '28-02-2024', '', 'ACTIVE', 'Ajay', '2024-02-28 18:44:03', '0000-00-00'), (1515, 1451, 'HDFC Jayblues', 'Online Payment', 4720, '', '', '', '', '', '', '', '26-02-2024', '', 'ACTIVE', 'Ajay', '2024-02-28 18:44:44', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `invoice_quotation_from_mail` -- CREATE TABLE `invoice_quotation_from_mail` ( `id` int(11) NOT NULL, `name` text NOT NULL, `designation` text NOT NULL, `phone` text NOT NULL, `address` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `checked_status` int(11) NOT NULL, `created_at` datetime NOT NULL, `modified_at` datetime NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `invoice_quotation_from_mail` -- INSERT INTO `invoice_quotation_from_mail` (`id`, `name`, `designation`, `phone`, `address`, `delete_status`, `checked_status`, `created_at`, `modified_at`) VALUES (1, 'fsdsd', 'fsfsd', '2222222222', 'mysore', 'INACTIVE', 0, '2019-08-02 18:18:31', '0000-00-00 00:00:00'), (2, 'shrimathi', 'php developer', '7848093498', 'mysore', 'ACTIVE', 0, '2019-08-02 18:50:59', '0000-00-00 00:00:00'), (3, 'jyothi', 'developer', '9898989898', 'banglore', 'INACTIVE', 0, '2019-08-02 19:25:40', '0000-00-00 00:00:00'), (4, 'jyothi', 'developer', '9898989898', 'banglore', 'INACTIVE', 0, '2019-08-02 19:25:43', '0000-00-00 00:00:00'), (5, 'fddsf', 'dsfsdf', '9544464565', 'vcxbcb', 'INACTIVE', 0, '2019-08-02 19:27:23', '0000-00-00 00:00:00'), (6, 'Subramanya', 'Marketing Manager', '9663933606', 'Banglore', 'ACTIVE', 1, '2019-08-10 11:28:24', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `invoice_reports` -- CREATE TABLE `invoice_reports` ( `id` int(11) NOT NULL, `invoice_date` date NOT NULL, `name` varchar(256) NOT NULL, `invoice_no` varchar(256) NOT NULL, `address` text NOT NULL, `type` varchar(256) NOT NULL, `account_id` int(11) NOT NULL, `gstn` varchar(256) NOT NULL, `si_no` varchar(250) NOT NULL, `description` text NOT NULL, `sac` varchar(256) NOT NULL, `price` varchar(256) NOT NULL, `cgst` varchar(256) NOT NULL, `sgst` varchar(256) NOT NULL, `cgst_amount` double NOT NULL, `sgst_amount` double NOT NULL, `total` double NOT NULL, `total_amount` double NOT NULL, `total_amount_words` varchar(250) NOT NULL, `tds_amount` double NOT NULL, `grand_total` double NOT NULL, `created_at` text NOT NULL, `created_by` varchar(256) NOT NULL, `updated_at` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','','') NOT NULL, `invoice_status` enum('PENDING','CLEARED','PARTIAL') NOT NULL, `invoice_type` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `invoice_reports` -- INSERT INTO `invoice_reports` (`id`, `invoice_date`, `name`, `invoice_no`, `address`, `type`, `account_id`, `gstn`, `si_no`, `description`, `sac`, `price`, `cgst`, `sgst`, `cgst_amount`, `sgst_amount`, `total`, `total_amount`, `total_amount_words`, `tds_amount`, `grand_total`, `created_at`, `created_by`, `updated_at`, `delete_status`, `invoice_status`, `invoice_type`) VALUES (1441, '2024-01-05', 'MRK ENTERPRISES', 'JB-05012024/1245', ' Mysore Karnataka', '', 748, '29BHWPK6331A2Z5', '1', '[\"Development resource provided 14 resource .\"]', '[\"\"]', '[\"935000\"]', '9%', '9%', 84150, 84150, 935000, 1103300, 'Eleven Lakhs Three Thousand Three Hundred Rupees Only', 0, 1103300, '2024-01-05 13:35:16', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1442, '2024-01-18', 'Medusys', 'JB-18012024/1246', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till APRIL 30 2024\\r\\n\"]', '[\"\"]', '[\"60000\"]', '9%', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, 70800, '2024-01-18 13:11:15', 'Ajay', '2024-01-18', 'ACTIVE', 'PENDING', 'Normal'), (1444, '2024-02-12', 'Swansilk Pvt Ltd', 'JB-12022024/1248', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC for ERP From 1st Jan 2024 to 30th June 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, 59000, '2024-02-12 14:35:31', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1445, '2024-02-12', 'DECO TEXTIL', 'JB-12022024/1249', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC for ERP From 1st Jan 2024 to 30th June 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, 59000, '2024-02-12 14:37:06', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1446, '2024-02-12', 'Swansilk Pvt Ltd', 'JB-12022024/1250', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months valid till 22 August 2024 \"]', '[\"\"]', '[\"23000\"]', '9%', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, 27140, '2024-02-12 14:40:34', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1447, '2024-02-12', 'DECO TEXTIL', 'JB-12022024/1251', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months valid till 22 August 2024 \"]', '[\"\"]', '[\"23000\"]', '9%', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, 27140, '2024-02-12 14:41:16', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1448, '2024-02-21', 'IKENREG CONSULTANCY SERVICES', 'JB-21022024/1252', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '', 752, '29AAJFI0538E1ZG', '1', '[\"Hosting for 1 year for bidding application with 2 GB data and 4 GB RAM, Linux hosting \"]', '[\"\"]', '[\"10000\"]', '9%', '9%', 900, 900, 10000, 11800, 'Eleven Thousand Eight Hundred Rupees Only', 0, 11800, '2024-02-21 18:42:56', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1449, '2024-02-21', 'IKENREG CONSULTANCY SERVICES', 'JB-21022024/1253', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore, Bengaluru (Bangalore) Urban,, ', '', 752, '29AAJFI0538E1ZG', '1', '[\"AMC FOR Bidding Application with support hours of 25 hours valid for one year .\"]', '[\"\"]', '[\"20000\"]', '9%', '9%', 1800, 1800, 20000, 23600, 'Twenty Three Thousand Six Hundred Rupees Only', 0, 23600, '2024-02-21 18:44:19', 'Ajay', '', 'ACTIVE', 'CLEARED', 'Normal'), (1450, '2024-02-26', 'Rajiv Dental Care Centre', 'JB-26022024/1254', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka ', '', 0, '0', '2', '[\"Rajiv Dental Hosting Renewal Rs 5000 for hosting 1 year . For two years we are renewing \",\"Domain Rs 800 for 1 year . For two years we are renewing \"]', '[\"\",\"\"]', '[\"10000\",\"1600\"]', '9%', '9%', 1044, 1044, 11600, 13688, 'Thirteen Thousand Six Hundred and Eighty Eight Rupees Only', 0, 13688, '2024-02-26 18:53:13', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1451, '2024-02-28', 'Trupthi dental care', 'JB-28022024/1255', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '', 0, '0', '1', '[\"Website renewal and hosting renewal til 21 Feb 2025\"]', '[\"\"]', '[\"4000\"]', '9%', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, 4720, '2024-02-28 15:02:41', 'Darshan', '', 'ACTIVE', 'CLEARED', 'Normal'), (1452, '2024-02-28', 'Kooldair Systems Pvt Ltd', 'JB-28022024/1256', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '', 0, '0', '1', '[\"Website hosting and domain renewal till feb 2025. Both domain has been renewed.\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-02-28 18:43:37', 'Ajay', '', 'ACTIVE', 'CLEARED', 'Normal'), (1454, '2024-03-01', 'The Registrar', 'JB-01032024/1258', 'JSS Science and Technology University, Mysore', '', 0, '2PAAATJ2722Q1Z8', '2', '[\"BrightClass Eyeris A10 75 inch\\u201d with Built-in Android + BrightClass App on Android \",\"Birdcam VC1\"]', '[\"\",\"\"]', '[\"97881.36\",\"25000.00\"]', '9%', '9%', 11059, 11059, 122881, 144999, 'One Lakhs Forty Four Thousand Nine Hundred and Ninety Nine Rupees Only', 0, 144999, '2024-03-18 14:23:14', 'Ajay', '2024-04-01', 'ACTIVE', 'PENDING', 'Normal'), (1455, '2024-03-28', 'SRMG STONE PRIVATE LIMITED', 'JB-01042024/1259', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka', '', 0, '29ABCCS4865R1ZC', '1', '[\"website renewal for one year till march 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-04-01 12:47:06', 'Ajay', '2024-04-01', 'ACTIVE', 'PENDING', 'Normal'), (1456, '2024-03-28', 'Medusys', 'JB-28032024/1260', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"Application Development Charges for Medusys application and support \"]', '[\"\"]', '[\"700000\"]', '9%', '9%', 63000, 63000, 700000, 826000, 'Eight Lakhs Twenty Six Thousand Rupees Only', 0, 826000, '2024-04-01 12:49:26', 'Ajay', '2024-04-01', 'ACTIVE', 'PENDING', 'Normal'), (1457, '2024-04-25', 'Turbmax', 'JB-25042024/1261', 'Batrahalli near ICiC bank Bangalore Karnataka ', '', 0, '0', '1', '[\"Hosting renewal for one year Till Dec 2024\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-04-25 13:55:46', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1458, '2024-04-29', 'TEKZEN Systems', 'JB-29042024/1262', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"2 Software development Resource Provided for one month\"]', '[\"\"]', '[\"340000\"]', '9%', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, 401200, '2024-04-29 17:51:16', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1459, '2024-05-15', 'Medusys', 'JB-15052024/1263', 'Bangalore ', '', 0, '29ABAFM9225E3Z7', '1', '[\"Medusys Server for 3 months till 31 July 2024\"]', '[\"\"]', '[\"60000\"]', '9%', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, 70800, '2024-06-07 13:34:00', 'Ajay', '2024-06-07', 'ACTIVE', 'PENDING', 'Normal'), (1462, '2024-06-07', 'aswini agrotech', 'JB-07062024/1266', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka', '', 358, '29ACIPS8466L1ZK', '1', '[\"Website Domain and server renewal till June 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-06-07 13:40:35', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1463, '2024-06-25', 'Swansilk Pvt Ltd', 'JB-25062024/1267', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"AMC for ERP From 1st July 2024 to 31th Dec 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, 59000, '2024-06-25 18:25:09', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1464, '2024-06-25', 'DECO TEXTIL', 'JB-25062024/1268', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"AMC for ERP From 1st July 2024 to 31th Dec 2024 (6 Months)\"]', '[\"\"]', '[\"50000\"]', '9%', '9%', 4500, 4500, 50000, 59000, 'Fifty Nine Thousand Rupees Only', 0, 59000, '2024-06-25 18:26:13', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1465, '2024-06-26', 'Mpowering skills', 'JB-26062024/1269', ' Bangalore ', '', 0, '0', '1', '[\"Website hosting and domain for one year till June 2025 mpoweringskills.com\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-06-26 18:39:41', 'Ajay', '2024-06-26', 'ACTIVE', 'PENDING', 'Normal'), (1466, '2024-06-27', 'Handithavalli Grama Panchayat', 'JB-27062024/1270', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '', 0, '0', '2', '[\"Asus E410 Laptop Intel Celeron N4500 Processor 8 GB DDR4\\r\\n256 GB storage INTEL UHD graphics 14.0 inch screen Windows\\r\\n11 OS Numberpad \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/8gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\"]', '[\"\",\"\"]', '[\"31100\",\"53200\"]', '9%', '9%', 7587, 7587, 84300, 99474, 'Ninety Nine Thousand Four Hundred and Seventy Four Rupees Only', 0, 99474, '2024-06-27 13:23:03', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1467, '2024-07-02', 'TEKZEN Systems', 'JB-02072024/1271', ' WeKreate Space, Dodamanne complex ,Yoganarashima swamy temple road vijaynagar 2 nd stage Mysore Karnataka', '', 0, '0', '1', '[\"June Month Invoice for Usha and Arun\"]', '[\"\"]', '[\"340000\"]', '9%', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, 401200, '2024-07-02 13:22:51', 'Ajay', '2024-08-02', 'ACTIVE', 'PENDING', 'Normal'), (1468, '2024-07-22', 'Medusys', 'JB-22072024/1272', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Server Renewal for 3 months Till 31 October 2024\"]', '[\"\"]', '[\"60000\"]', '9%', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, 70800, '2024-07-22 18:17:10', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1469, '2024-08-02', 'TEKZEN Systems', 'JB-02082024/1273', 'No.658, WeKreate Space, Vishwamanava Double Road, Kuvempunagar Mysore Karnataka', '', 746, '0', '1', '[\"Arun and Usha July month bill\"]', '[\"\"]', '[\"340000\"]', '9%', '9%', 30600, 30600, 340000, 401200, 'Four Lakhs One Thousand Two Hundred Rupees Only', 0, 401200, '2024-08-02 16:09:37', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1470, '2024-08-08', 'SLV Scientific Supplies', 'JB-08082024/1274', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka', '', 654, '29ALVPM9461F2Z9', '1', '[\"Website hosting and renewal till August 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-08-08 17:26:37', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1471, '2024-08-08', 'Swansilk Pvt Ltd', 'JB-08082024/1275', ' Bangalore ', '', 159, '29AACCS4515R1ZR', '1', '[\"Server renewal for 6 months valid till 22 Feb 2025\"]', '[\"\"]', '[\"23000\"]', '9%', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, 27140, '2024-08-08 17:30:58', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1472, '2024-08-08', 'DECO TEXTIL', 'JB-08082024/1276', 'Swan House Bangalore Karnataka', '', 207, '29AACFD0446K1ZG', '1', '[\"Server renewal for 6 months valid till 22 Feb 2025\"]', '[\"\"]', '[\"23000\"]', '9%', '9%', 2070, 2070, 23000, 27140, 'Twenty Seven Thousand One Hundred Forty Rupees Only', 0, 27140, '2024-08-08 17:31:53', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1473, '2024-08-22', 'Royale electronics', 'JB-22082024/1277', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka', '', 491, '29AADFR6653F1ZZ', '1', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2025\\r\\n\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-08-22 13:42:09', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1474, '2024-08-29', 'Shreenidhi Tours and Travels', 'JB-29082024/1278', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka', '', 646, '0', '1', '[\"Website renewal and hosting for one year https:\\/\\/shreenidhitravels.in\\/ till August 2025\"]', '[\"\"]', '[\"5000\"]', '9%', '9%', 450, 450, 5000, 5900, 'Five Thousand Nine Hundred Rupees Only', 0, 5900, '2024-08-29 15:20:08', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1475, '2024-09-03', 'DR\'S DESK', 'JB-03092024/1279', '#83 Divya Paradise T G Layout ittamadu Banashankari 3rd stage Bengaluru Karnataka ', '', 653, '29AAHCD9450H1ZA', '2', '[\"APIMYSORE.ORG website hosting and domain renewal for one year .Along with 10hrs of support for website changes\",\"content updation for the website for one year (rs 500\\/- for one time updation totally 8 times in a year we will update) \"]', '[\"\",\"\"]', '[\"7000\",\"4000\"]', '9%', '9%', 990, 990, 11000, 12980, 'Twelve Thousand Nine Hundred Eighty Rupees Only', 0, 12980, '2024-09-03 11:33:33', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1476, '2024-09-18', 'Intercontinental Logistics', 'JB-18092024/1280', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka', '', 144, '29BIIPS9092K3Z6', '1', '[\"Domain and hosting renewal for website 1 year validity \"]', '[\"\"]', '[\"4000\"]', '9%', '9%', 360, 360, 4000, 4720, 'Four Thousand Seven Hundred Twenty Rupees Only', 0, 4720, '2024-09-18 15:13:38', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1477, '2024-10-04', 'TEKZEN Systems', 'JB-04102024/1281', 'Plot No 1348 & 1349, vijaynagar 1st stage Mysore Karnataka', '', 746, '29AATFT0152H1ZV', '2', '[\"Usha AWS resource 1 month September\",\"Development support 16 hours\"]', '[\"\",\"\"]', '[\"185000\",\"20000\"]', '9%', '9%', 18450, 18450, 205000, 241900, 'Two Lakhs Forty One Thousand Nine Hundred Rupees Only', 0, 241900, '2024-10-04 13:51:15', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1478, '2024-10-07', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 'JB-07102024/1282', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka', '', 169, '29AAACG3912G1ZT', '2', '[\"ERP support package of 50 hours 1 year valid . till July 2025\",\"Server Renewal for GSSOrganised ERP till Feb 2025\"]', '[\"\",\"\"]', '[\"22500\",\"50000\"]', '9%', '9%', 6525, 6525, 72500, 85550, 'Eighty Five Thousand Five Hundred Fifty Rupees Only', 0, 85550, '2024-10-07 16:17:08', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1480, '2024-10-16', 'Yaskawa India Pvt Ltd', 'JB-16102024/18/PROFORMA', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '', 197, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, 94400, '2024-10-16 12:21:44', 'Ajay', '', 'ACTIVE', 'PENDING', 'Profarma'), (1481, '2024-10-25', 'Yaskawa India Pvt Ltd', 'JB-25102024/1284', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '', 0, '29AAACY4408P1ZR', '1', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '[\"\"]', '[\"80000\"]', '9%', '9%', 7200, 7200, 80000, 94400, 'Ninety Four Thousand Four Hundred Rupees Only', 0, 94400, '2024-10-25 13:20:21', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'), (1482, '2024-10-25', 'Medusys', 'JB-25102024/1285', 'Bangalore ', '', 737, '29ABAFM9225E3Z7', '1', '[\"Server Renewal for 3 months Till 31 Jan 2025\"]', '[\"\"]', '[\"60000\"]', '9%', '9%', 5400, 5400, 60000, 70800, 'Seventy Thousand Eight Hundred Rupees Only', 0, 70800, '2024-10-25 14:40:19', 'Ajay', '', 'ACTIVE', 'PENDING', 'Normal'); -- -------------------------------------------------------- -- -- Table structure for table `leads` -- CREATE TABLE `leads` ( `lead_id` int(11) NOT NULL, `user_id` varchar(150) NOT NULL, `role_id` int(11) NOT NULL, `lead_convert` varchar(250) NOT NULL, `lead_owner` varchar(250) NOT NULL, `company_name` varchar(250) NOT NULL, `first_name` varchar(222) NOT NULL, `last_name` varchar(222) NOT NULL, `lead_title` varchar(222) NOT NULL, `email` varchar(100) NOT NULL, `alternate_email` varchar(255) NOT NULL, `phone` varchar(256) NOT NULL, `alternate_phone` varchar(255) NOT NULL, `fax` varchar(222) NOT NULL, `mobile` varchar(100) NOT NULL, `website` varchar(100) NOT NULL, `lead_source` varchar(222) NOT NULL, `lead_status` varchar(350) NOT NULL, `converted_at` date NOT NULL, `industry` varchar(100) NOT NULL, `no_of_employees` int(11) NOT NULL, `annual_revenue` varchar(100) NOT NULL, `ratings` varchar(100) NOT NULL, `email_otp` varchar(100) NOT NULL, `skype_id` int(11) NOT NULL, `sec_email` varchar(100) NOT NULL, `twitter` varchar(100) NOT NULL, `street` varchar(222) NOT NULL, `city` varchar(222) NOT NULL, `state` varchar(222) NOT NULL, `zip_code` int(11) NOT NULL, `country` varchar(222) NOT NULL, `Cperson` varchar(100) NOT NULL, `Cphone` varchar(100) NOT NULL, `cType` varchar(100) NOT NULL, `lprocess` varchar(100) NOT NULL, `description` varchar(250) NOT NULL, `profile_pick` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `l_type` enum('LEAD') NOT NULL, `contact_id` int(11) NOT NULL, `created_at` date NOT NULL, `updated_at` datetime NOT NULL, `converted_next_level` text NOT NULL, `service_amount` text NOT NULL, `service_name` text NOT NULL, `service_date` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `leads` -- INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2, '1', 1, '', '21', 'Byjus', 'Jagadish', 'Ra', '', 'jagadishra@gamil.com', '', '7899884774', '', '', '7899884774', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '20,000', 'Active', '', 0, '', '', 'Koramangala above cromo', 'Bangalore', 'Karnataka', 560001, 'India', 'Jagadeesh', '7899884774', 'New', '20', 'We are meeting on Saturday', '', 'ACTIVE', 'LEAD', 0, '2018-07-27', '0000-00-00 00:00:00', '', '', '', ''), (3, '1', 1, '', '21', 'IBE Foruii', 'Fira ulla', 'Ulla', '', 'info@ibeforum.com', '', '9845113293', '', '', '9845113293', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '5,000', 'Active', '', 0, '', '', '#A1 2nd floor khb kalony 5th block Koramangala ', 'Bangalore', 'Karnataka', 560001, 'India', 'Jagadeesh', '7899884774', 'New', '20', 'We are meeting on Saturday so', '', 'ACTIVE', 'LEAD', 0, '2018-07-27', '0000-00-00 00:00:00', '', '', '', ''), (4, '1', 1, '', '36', 'NGO', 'Hemanth', 'Hemanth', '', 'Hemantharadhya53@gmail.com', '', '74115 22296', '', '', '7411522296', '', 'Just Dial', 'Contact in future', '0000-00-00', 'NGO', 0, '', 'Acquired', '', 0, '', '', 'sdsafdsfed', 'Bangalore', 'Karnatka', 123456, 'India', 'Hemanth', '', 'New', '80', 'Quotation sent for dynamic website informed to contact on 15/08/2018', '', 'ACTIVE', 'LEAD', 0, '2018-07-31', '0000-00-00 00:00:00', '', '', '', ''), (5, '1', 1, '', '20', 'ganesh marketing', 'pradeep', 'jain', '', 'pradeep.jain9597@gmail.com', '', '7019558311', '', '', '7019558311', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '10,000', 'Active', '', 0, '', '', '413/1/1 ground floor second main', 'Bangalore', '7th cross LN puram bangalore', 560021, 'India', 'Pradeep', '7019558311', 'New', '80', 'Need to send quote', '', 'ACTIVE', 'LEAD', 0, '2018-08-02', '0000-00-00 00:00:00', '', '', '', ''), (6, '36', 57, 'PCONVERTED', '36', 'sri aarna security', 'Arvind', 'Arvind', '', 'arvin5121983@gmail.com', '', '', '', '', '9886377551', '', 'Just Dial', 'Contacted', '2018-08-02', 'FINANCIAL SERVICES', 0, '', 'Active', '', 0, '', '', 'Gandi bazzar', 'Bangalore', 'Karnataka', 0, 'India', 'Arvind', '9886377551', 'New', '20', 'ERP application ', '', 'ACTIVE', 'LEAD', 0, '2018-08-02', '0000-00-00 00:00:00', '', '', '', ''), (8, '36', 57, '', '36', '', 'satish', '', '', '', '', '', '', '', '9945498777', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavana gudi', 'Bengaluru', 'karnataka', 0, 'India', 'satish', '9945498777', 'New', '60', 'Dynamic website - 15 to 16 pages coaching class regarding leadership [schedule on 3/8/2018] ', '', 'ACTIVE', 'LEAD', 0, '2018-08-02', '0000-00-00 00:00:00', '', '', '', ''), (10, '1', 1, '', '20', 'FreeLancer', 'Nagendra ', '', '', 'Dontknow@gmail.com', '', '', '', '', '9035275494', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '50,000', 'Active', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-08-04', '0000-00-00 00:00:00', '', '', '', ''), (12, '1', 1, 'CLOSED', '20', 'Good rich pest control', 'Mohammed ', 'Imran', '', 'goodrichpestcontrol@gmail.com', '', '', '', '', '9916777706', 'goodrichpestcontrol.co.in', 'Existing Client Reference', '', '0000-00-00', 'FINANCIAL SERVICES', 0, '', 'Active', '', 0, '', '', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala,', 'Bengaluru', 'Karnataka', 0, 'India', '', '', 'Exist', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-08-07', '0000-00-00 00:00:00', '', '', '', ''), (15, '36', 57, 'CONVERTED', '36', 'Royale electronics', 'Raghuveer', 'N', 'CEO', 'royaleelectronics1995@gmail.com', '', '', '', '', '9880711995', '', '', 'Contacted', '2018-08-14', '', 0, '', '', '', 0, '', '', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi', 'Bengaluru', 'karnataka', 560004, 'India', '', '', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2018-08-08', '0000-00-00 00:00:00', '', '', '', ''), (16, '1', 1, '', '20', 'S R Marble and Granite', 'Mosin', '', 'Director', 'srmarbleandgranite@gmail.com', '', '', '', '', '9740645371', 'www.srmg.in', 'Existing Client Reference', 'Existing Customer', '0000-00-00', 'SERVICES', 0, '', 'Active', '', 0, '', '', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk', 'Bengaluru', 'karnataka', 0, 'India', '', '', 'Exist', '', 'for e - mail ID creation(4500 + GST) Quotation sent', '', 'ACTIVE', 'LEAD', 0, '2018-08-08', '0000-00-00 00:00:00', '', '', '', ''), (17, '1', 1, '', '36', 'Raj music', 'Rakesh', '', 'Assistant', '', '', '', '', '', '9880022066', '', 'Just Dial', '', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'vasanth nagar ', 'Bangaluru', 'karnataka', 0, 'India', '', '', '', '', 'Dynamic website and payment gateway including domain and email id creation and logo informed to contanct on 13-08-2018 price amount 23k', '', 'ACTIVE', 'LEAD', 0, '2018-08-08', '0000-00-00 00:00:00', '', '', '', ''), (22, '1', 1, '', '36', 'K E water solution', 'Sunitha', '', 'Director', 'kenchu1947@gmail.com', '', '9740171069', '', '', '', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'JP nagar 6th phase', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'Dynamic website - domain, email id, logo excluded. 12k quotation sent contact on 16/08/2018', '', 'ACTIVE', 'LEAD', 0, '2018-08-10', '0000-00-00 00:00:00', '', '', '', ''), (23, '1', 1, '', '36', '', 'Musthafa', '', '', 'mkhurram297@gmail.com', '', '', '', '', '8073225394', '', 'Just Dial', '', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'wills town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Dynamic website 12k Quotation sent contacted another vendor', '', 'ACTIVE', 'LEAD', 0, '2018-08-10', '0000-00-00 00:00:00', '', '', '', ''), (24, '1', 1, '', '36', '', 'santhosh ', '', '', '', '', '', '', '', '7892005403', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' willson garden - janatha hotel', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'static website - alluminium fabrication contact on 13/08/2018', '', 'ACTIVE', 'LEAD', 0, '2018-08-10', '0000-00-00 00:00:00', '', '', '', ''), (27, '36', 57, '', '36', 'vignesh Travells', 'Vignesh', '', '', 'account@vigneshtravells.com', '', '', '', '', '8884445108', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'tours and travells ,static website domain purchased price amount 7000', '', 'ACTIVE', 'LEAD', 0, '2018-08-14', '0000-00-00 00:00:00', '', '', '', ''), (29, '36', 57, '', '36', '', 'sumukh', '', '', '', '', '', '', '', '9740733357', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'informed to contact on 20/08/2018', '', 'ACTIVE', 'LEAD', 0, '2018-08-17', '0000-00-00 00:00:00', '', '', '', ''), (30, '36', 57, '', '36', '', 'Deepak', '', '', 'enquiry@gymequipmentsmanufacturer.in', '', '', '', '', '9965926789', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Tamil nadu', 0, '', '', '', 'test', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-08-17', '0000-00-00 00:00:00', '', '', '', ''), (33, '36', 57, '', '36', '', 'Jyothi', '', '', 'Info@sriameya.com', '', '9035188895', '', '', '9035188895', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'Static website - 8000 (domain,email id,) from nithin', '', 'ACTIVE', 'LEAD', 0, '2018-08-22', '0000-00-00 00:00:00', '', '', '', ''), (34, '36', 57, '', '36', '', 'Joshi', '', '', 'ankitjoshi2524@gmail.com', '', ' 7975124760 ', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Maharastra', 0, 'India', '', '', 'test', '80', 'Dynamic website of 12k', '', 'ACTIVE', 'LEAD', 0, '2018-08-23', '0000-00-00 00:00:00', '', '', '', ''), (35, '36', 57, '', '36', 'Agni Raksha', 'Veena', '', '', 'krani.lucas@gmail.com', '', '7022733002 ', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'No.6/3, 4th Cross,nala road, 2nd floor, Lalbagh road,K.S garden', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'Static ,Dynamic website Quotation sends meeting on 31/08/2018', '', 'ACTIVE', 'LEAD', 0, '2018-08-25', '0000-00-00 00:00:00', '', '', '', ''), (36, '36', 57, '', '20', 'Jss Hospital ', 'Sadanada', 'hp', '', '', '', '', '', '', '', '', 'Public Relations', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', ' Mahathma Gandhi Road, Mysuru, Karnataka 570004', 'Mysuru', 'Karnataka', 570004, 'India', '', '', 'Exist', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-08-27', '0000-00-00 00:00:00', '', '', '', ''), (37, '36', 57, 'CLOSED', '36', '', 'Nagaraj', '', '', 'ajnyadav@yahoo.co.in', '', '', '', '', '8951345225', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Static website 7k quotation sent 28/08/2018 waiting for approval on 24/09/2018', '', 'ACTIVE', 'LEAD', 0, '2018-08-28', '0000-00-00 00:00:00', '', '', '', ''), (38, '36', 57, 'CLOSED', '36', 'Bul bell', 'Amith', '', '', 'blubell.hospitality2013@gmail.com', '', '916263467959', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'Static website - 12k + GST project cancelled', '', 'ACTIVE', 'LEAD', 0, '2018-08-29', '0000-00-00 00:00:00', '', '', '', ''), (39, '36', 57, 'CLOSED', '36', '', 'Javeed', '', '', 'nyamath.javeed@gmail.com', '', '', '', '', '9035026242', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '80', 'Static dynamic quotation sent', '', 'ACTIVE', 'LEAD', 0, '2018-08-31', '0000-00-00 00:00:00', '', '', '', ''), (40, '36', 57, 'CLOSED', '20', '', 'pramod', '', '', 'www.salemakerindiateam@gmail.com', '', '9945275293', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Pride Bilekahalli Banergatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Exisiting Client', '', 'ACTIVE', 'LEAD', 0, '2018-09-01', '0000-00-00 00:00:00', '', '', '', ''), (41, '36', 57, '', '36', 'Security Management', 'Anil', 'Kumar', '', 'anilkumar.nambyath@gmail.com', '', '', '', '', '9742929929', '', 'Just Dial', 'Not Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Static website + Logo + Brochure = 18k + GST', '', 'ACTIVE', 'LEAD', 0, '2018-09-03', '0000-00-00 00:00:00', '', '', '', ''), (42, '36', 57, '', '36', 'Builders association', 'Reddy', '', '', 'ayyavarureddyka@gmail.com', '', '', '', '', '9886009813', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Static and dynamic website', '', 'ACTIVE', 'LEAD', 0, '2018-09-03', '0000-00-00 00:00:00', '', '', '', ''), (47, '36', 57, '', '36', 'Rice mill', 'Manikanta', '', '', 'maruthiricehouse@gmail.com', '', '', '', '', '9740141079', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'saraswati puram', 'Mysore', 'karnataka', 0, 'India', '', '', 'test', '80', 'contacted quotation sent for e commerce(25k + GST) check book printing of (15K + GST) ', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (48, '36', 57, '', '36', '', 'dharmendra', '', '', '', '', '', '', '', '9036864329', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '20', 'waiting for approval on 24/09/2018', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (49, '36', 57, '', '36', 'cross works', 'Arvin', '', '', '', '', '', '', '', '9845382953', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'cross works ,Kormangala ,1st block', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'Redesign website', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (51, '36', 57, '', '36', '', 'Nithin', '', '', 'nithinjayan16@gmail.com', '', '', '', '', '7204694713', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'e commerce for sale and purchase art related (project cancelled)\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (52, '36', 57, '', '36', '', 'yaseen', '', '', '', '', '', '', '', '9844609300', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'MS palya ,vidyaranyapuram', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '20', '6 pages,email id of (5),payment gateway,alteration in logo quoted for 15K\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (53, '1', 1, '', '21', 'Colours studios', 'Rathnavelu', 'M', 'Owner', 'coloursstudiosindia@gmail.com', '', '9945227930', '', '', '8861453285', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '5,000', 'Active', '', 0, '', '', '#61/1 ,10th main road 4th block Rajajinagar ', 'Bangalore', 'Karnataka', 560010, 'India', 'Rathnavelu', '07899884774', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (54, '1', 1, '', '21', 'Koelcare', 'Sharath', 'Kt', 'Branch manager', 'benakaengineershassan@gmail.com', '', '8884211555', '', '', '7722070586', '', 'Just Dial', 'Contacted', '0000-00-00', 'AUTOMOBILES', 0, '20,000', 'Active', '', 0, '', '', 'Than Etihad\'s BM to', 'Hassan', 'Karnataka', 573201, 'India', 'Sharath', '07899884774', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (55, '1', 1, '', '21', 'Container homes', 'Prajwal', 'Lv', 'Director', 'prajwal@containerhoms.co.in', '', '9900083754', '', '', '9900083754', '', 'Just Dial', 'Contacted', '0000-00-00', 'INFRASTRUCTURE', 0, '', '', '', 0, '', '', 'No 182/3', 'Mathrushree building RV road VV Puram', 'Bangalore', 560004, 'India', '', '07899884774', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (56, '1', 1, '', '21', 'Ola partner', 'Ramesh', 'K', 'Managing director', 'www.olacabattachment@gmail.com', '', '9738879992', '', '', '8884724422', '', 'Just Dial', '', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '5,000', 'Active', '', 0, '', '', 'No 22 7th main road Vijay nagara', 'Bangalore', 'Karnataka', 560010, 'India', '', '07899884774', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (57, '1', 1, '', '21', 'EESHAANYA FINE TEAK WOOD FURNITURE', 'Anand ', 'A', 'Managing director', 'anandms@live.com', '', '9739734156', '', '', '9739734156', '', 'Website Research', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '20,000', 'Active', '', 0, '', '', 'No 11 global heights Banaswadi outer ring road', 'Bangalore', 'Karnataka', 560043, 'India', 'Ananda', '07899884774', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (58, '36', 57, '', '36', '', 'krishna kumar', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dubai', 'UAE', '', 0, 'India', '', '', 'test', '80', 'Through Mail', '', 'ACTIVE', 'LEAD', 0, '2018-09-20', '0000-00-00 00:00:00', '', '', '', ''), (59, '36', 57, '', '20', '', 'Rajesh', '', '', 'panditragudeva@gmail.com', '', '', '', '', '9740934777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangaolre', 'Karnataka', 0, 'India', '', '', 'Exist', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-09-21', '0000-00-00 00:00:00', '', '', '', ''), (60, '36', 57, '', '36', '', 'Kiran', '', '', 'kiranrajappa1323@gmail.com', '', '', '', '', '8197235424', '', 'Just Dial', 'Contact in future', '0000-00-00', 'NGO', 0, '', '', '', 0, '', '', 'Bannergatta road', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '', '(NGO ) Nithin will visit on 24/09/2018', '', 'ACTIVE', 'LEAD', 0, '2018-09-22', '0000-00-00 00:00:00', '', '', '', ''), (61, '36', 57, '', '36', '', 'sushanth', '', '', '', '', '', '', '', '7377447622', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'palace road,vasanth nagra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'nithin will contact on 24/09/2018', '', 'ACTIVE', 'LEAD', 0, '2018-09-24', '0000-00-00 00:00:00', '', '', '', ''), (62, '36', 57, '', '36', '', 'Solomon', '', '', 'solomonmaxrichard@gmail.com', '', '', '', '', '9108901177', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'online food ,home delivery visting (27/09/2018) waiting for approval on 01/10/2018\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-09-26', '0000-00-00 00:00:00', '', '', '', ''), (64, '36', 57, '', '36', '', 'Sreenath', '', '', '', '', '', '', '', '9535551020', '', 'Just Dial', '', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'visiting(26/09/2018) waiting for approval on 27/09/2018', '', 'ACTIVE', 'LEAD', 0, '2018-09-26', '0000-00-00 00:00:00', '', '', '', ''), (66, '36', 57, '', '36', '', 'Nivedita', '', '', 'niveditachakraborty94@gmail.com', '', '', '', '', '8296764864', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM,4th stage ', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '80', 'visiting(26/09/2018) waiting for approval contact on 1/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-09-26', '0000-00-00 00:00:00', '', '', '', ''), (67, '36', 57, '', '36', '', 'Rakesh', '', '', 'adarsha4u@yahoo.com', '', '', '', '', '7892271416', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ganganagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '60', 'visiting(26/09/2018)', '', 'ACTIVE', 'LEAD', 0, '2018-09-26', '0000-00-00 00:00:00', '', '', '', ''), (68, '36', 57, '', '36', '', 'Girish', '', '', '', '', '', '', '', '9686859207', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'visiting(26/09/2018)', '', 'ACTIVE', 'LEAD', 0, '2018-09-26', '0000-00-00 00:00:00', '', '', '', ''), (69, '36', 57, '', '36', '', 'shruthi', '', '', '', '', '', '', '', '9482336439', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basvehwara nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '20', 'visited 27/09/2018 (dynamic website of 12K)', '', 'ACTIVE', 'LEAD', 0, '2018-09-27', '0000-00-00 00:00:00', '', '', '', ''), (70, '24', 69, '', '24', '', 'Avinash', '', '', '', '', '', '', '', '9831049255', '', 'Just Dial', 'Pre Qualified', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Photography application with mobile apps which is similar to our jaydeals with vendor, admin and customer portal.', '', 'ACTIVE', 'LEAD', 0, '2018-09-29', '0000-00-00 00:00:00', '', '', '', ''), (71, '36', 57, '', '20', '', 'Gururaj', '', '', 'gsskarthi@gmail.com', '', '', '', '', '9916699955', '', 'Existing Client Reference', '', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Kuvempu nagar', 'Mysore', 'Karnataka', 0, 'India', '', '', 'Exist', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-01', '0000-00-00 00:00:00', '', '', '', ''), (72, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '7676989814', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Neeladri Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-01', '0000-00-00 00:00:00', '', '', '', ''), (73, '36', 57, '', '36', '', 'Razia', '', '', '', '', '', '', '', '9686490797', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-01', '0000-00-00 00:00:00', '', '', '', ''), (74, '36', 57, '', '36', '', 'Yashraj', '', '', '', '', '', '', '', '9174762129', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'yeshwanthpur ', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-01', '0000-00-00 00:00:00', '', '', '', ''), (75, '36', 57, '', '36', '', 'Chandrashekar', '', '', '', '', '', '', '', '9916134679', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-01', '0000-00-00 00:00:00', '', '', '', ''), (76, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '9686452297 ', '', '', '', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sadashvinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'Waiting for approval on 8/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-02', '0000-00-00 00:00:00', '', '', '', ''), (78, '36', 57, '', '36', '', 'sagar', '', '', '', '', '', '', '', '8050000154', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'project cancelled', '', 'ACTIVE', 'LEAD', 0, '2018-10-03', '0000-00-00 00:00:00', '', '', '', ''), (79, '36', 57, '', '36', '', 'zabi', '', '', '', '', '', '', '', '9886523043', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '20', 'Dynamic website', '', 'ACTIVE', 'LEAD', 0, '2018-10-03', '0000-00-00 00:00:00', '', '', '', ''), (80, '36', 57, '', '36', '', 'Sanjay', '', '', '', '', '', '', '', '9964160447', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kalyan Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-04', '0000-00-00 00:00:00', '', '', '', ''), (81, '36', 57, '', '36', '', 'Manu ', '', '', '', '', '', '', '', '9620462277', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-04', '0000-00-00 00:00:00', '', '', '', ''), (82, '36', 57, '', '36', '', 'vinod', '', '', '', '', '', '', '', '9591002208', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-04', '0000-00-00 00:00:00', '', '', '', ''), (83, '36', 57, '', '36', '', 'Santosh', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kankapura road', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-04', '0000-00-00 00:00:00', '', '', '', ''), (84, '36', 57, '', '36', '', 'David ', '', '', '', '', '', '', '', '9899277690', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-04', '0000-00-00 00:00:00', '', '', '', ''), (86, '36', 57, '', '36', 'Kingsmen Timber', 'Sunil', '', '', '', '', '', '', '', '7349102888', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Madras Bombay Trunk Rd, Yeshwanthpur, Subramani Nagar, Hebbal,', 'Bangalore', 'karnataka', 560024, 'India', '', '', 'test', '80', 'contact on 9/10/2018 - contacted and shared the quotation on 9/10/2018 - RS.68,440 approval on 15/10/2018\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-10-08', '0000-00-00 00:00:00', '', '', '', ''), (88, '36', 57, '', '36', '', 'Ajay', '', '', '', '', '', '', '', '8618145976', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 9/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-09', '0000-00-00 00:00:00', '', '', '', ''), (89, '36', 57, '', '36', '', 'Avinash sinha', '', '', '', '', '', '', '', '9886564433', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 9/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-09', '0000-00-00 00:00:00', '', '', '', ''), (90, '36', 57, '', '36', '', 'kiran', '', '', 'sparrowsmg1@gmail.com', '', '', '', '', '7353010101', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'for static and dynamic(7K and 9K)GST', '', 'ACTIVE', 'LEAD', 0, '2018-10-09', '0000-00-00 00:00:00', '', '', '', ''), (92, '24', 69, '', '24', 'Reva University', 'Sudip', 'Dixit', '', 'sudipdixit@reva.edu.in', '', '7625069710', '', '', '7618792483', 'reva.edu.in', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Sudip', '7618792483', 'New', '80', 'Company profile shared and they asked to send quote', '', 'ACTIVE', 'LEAD', 0, '2018-10-10', '0000-00-00 00:00:00', '', '', '', ''), (93, '36', 57, '', '36', '', 'Naveen', '', '', '', '', '', '', '', '9900333310', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagadevanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 11/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (94, '36', 57, '', '36', '', 'Vinod', '', '', '', '', '', '', '', '8105206480', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 11/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (95, '36', 57, '', '36', '', 'XXXxxx', '', '', '', '', '', '', '', '9591111346', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 11/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (96, '36', 57, '', '36', '', 'Nabeel', '', '', 'Nabee46@hotmail.com', '', '', '', '', '9986797995', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New Bel Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 11/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (97, '36', 57, '', '36', '', 'Ajay', '', '', '', '', '', '', '', '9590008828', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 4th Block west', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 11/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (98, '24', 69, '', '24', 'Royal Oak Fintech Pvt Ltd', 'Ramesh', 'Chandramouli', '', 'rameshchandramouli@outlook.com', '', '', '', '', '9945699802', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '59/60, 1st floor, above Karnataka Bank, 4th cross, Gubbalala main road, Vinayakanagar', 'Bangalore', 'Karnataka', 0, 'India', 'Ramesh Chandramouli', '9945699802', 'New', '80', 'Job portal application with website', '', 'ACTIVE', 'LEAD', 0, '2018-10-11', '0000-00-00 00:00:00', '', '', '', ''), (99, '36', 57, '', '36', '', 'Rakesh', '', '', '', '', '', '', '', '9916760080', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 12/10/2018, waiting for approval on 15/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-12', '0000-00-00 00:00:00', '', '', '', ''), (101, '36', 57, '', '36', '', 'jagadish', '', '', '', '', '', '', '', '9945066010', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-12', '0000-00-00 00:00:00', '', '', '', ''), (102, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9886735633', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 12/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-12', '0000-00-00 00:00:00', '', '', '', ''), (105, '36', 57, '', '36', '', 'Aritra', '', '', 'aritra.majuncer25@gmail.com', '', '', '', '', '9831808584', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavangudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 13/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-13', '0000-00-00 00:00:00', '', '', '', ''), (106, '36', 57, '', '36', '', 'Dinesh', '', '', 'dineshr.devaraj@siemens.com', '', '', '', '', '9844472878', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 13/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-13', '0000-00-00 00:00:00', '', '', '', ''), (107, '36', 57, '', '36', '', 'Arjun', '', '', 'rudhifoundationindia@gmail.com', '', '', '', '', '7829385020', '', 'Just Dial', '', '0000-00-00', 'NGO', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Contact on 15/10/2018 Quotation sent for dynamic website ', '', 'ACTIVE', 'LEAD', 0, '2018-10-13', '0000-00-00 00:00:00', '', '', '', ''), (108, '24', 69, '', '24', 'Zerozilla', 'Vinay', 'Angadi', 'Ceo', 'vinay@zerozilla.com', '', '', '', '', '9916585246', 'zerozilla.com', 'Employee Referral', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Malleshwaram', 'Bangalore ', 'Karnataka', 0, 'India', 'Vinay', '9916585246', 'Exist', '80', 'Quote for school management system ', '', 'ACTIVE', 'LEAD', 0, '2018-10-13', '0000-00-00 00:00:00', '', '', '', ''), (109, '36', 57, '', '36', '', 'Arjun', '', '', '', '', '', '', '', '7829385020', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 15/10/2018 NGO website', '', 'ACTIVE', 'LEAD', 0, '2018-10-15', '0000-00-00 00:00:00', '', '', '', ''), (110, '36', 57, '', '36', '', 'Chandrakant', '', '', '', '', '', '', '', '9741263499', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'Exist', '60', 'contact on 15/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-15', '0000-00-00 00:00:00', '', '', '', ''), (111, '36', 57, '', '36', '', 'Punith', '', '', '', '', '', '', '', '9686434481', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 15/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-15', '0000-00-00 00:00:00', '', '', '', ''), (112, '36', 57, '', '36', '', 'Naman', '', '', '', '', ' 9916972072', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'contact on 15/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-15', '0000-00-00 00:00:00', '', '', '', ''), (113, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9886682013', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'contact on 15/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-15', '0000-00-00 00:00:00', '', '', '', ''), (114, '36', 57, '', '36', '', 'Uttam', '', '', 'uttamkumargupta@yahoo.com', '', '', '', '', '8310995608', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshakari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'static website 10K + GST', '', 'ACTIVE', 'LEAD', 0, '2018-10-16', '0000-00-00 00:00:00', '', '', '', ''), (115, '36', 57, '', '36', 'Bychancee', 'Rajanna', '', '', 'epulorestaurant@gmail.com', '', '', '', '', '9886052527', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'Exist', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-17', '0000-00-00 00:00:00', '', '', '', ''), (116, '36', 57, '', '20', '', 'ALT training college', '', '', 'lakshmi@altltd.com', '', '', '', '', '9448396874', '', 'Just Dial', 'Existing Customer', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Sarjapur road bellandur gate', 'Bangalore', 'Bangalore', 0, 'India', '', '', 'Exist', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-22', '0000-00-00 00:00:00', '', '', '', ''), (117, '36', 57, '', '20', '', 'Dr Madhusudhan', '', '', '', '', '', '', '', '9845452742', '', 'Just Dial', 'Existing Customer', '0000-00-00', '', 0, '', '', '', 0, '', '', '#74, M.M. Road, Frazer Town,', 'Bangalore', 'Bangalore', 0, 'India', '', '', 'Exist', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-23', '0000-00-00 00:00:00', '', '', '', ''), (118, '36', 57, '', '36', '', 'Prithviraj', '', '', '', '', '', '', '', '9483622711', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-23', '0000-00-00 00:00:00', '', '', '', ''), (119, '36', 57, '', '36', '', 'srikanth', '', '', 'nadakuduru.srikanth@gmail.com', '', '', '', '', '8147868225', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-23', '0000-00-00 00:00:00', '', '', '', ''), (120, '36', 57, '', '36', '', 'Anand ', '', '', '', '', '', '', '', '9036156000', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'chandra Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'catering service\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-10-24', '0000-00-00 00:00:00', '', '', '', ''), (121, '36', 57, '', '36', '', 'Srinivas', '', '', '', '', '', '', '', '9742646789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajingar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-24', '0000-00-00 00:00:00', '', '', '', ''), (122, '36', 57, '', '20', '', 'Sunil', '', '', 'Nsunil123456@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'New', '80', ' 1.4lac plus gst . ', '', 'ACTIVE', 'LEAD', 0, '2018-10-24', '0000-00-00 00:00:00', '', '', '', ''), (123, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9900250886', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Static website - 8K', '', 'ACTIVE', 'LEAD', 0, '2018-10-26', '0000-00-00 00:00:00', '', '', '', ''), (124, '36', 57, '', '36', '', 'Dinesh', '', '', '', '', '', '', '', '9901434758', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Contacted on 26/10/2018 - SEO package and website development', '', 'ACTIVE', 'LEAD', 0, '2018-10-26', '0000-00-00 00:00:00', '', '', '', ''), (126, '36', 57, '', '36', '', 'vishal', '', '', '', '', '', '', '', '9741500402', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 3rd phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 27/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-27', '0000-00-00 00:00:00', '', '', '', ''), (127, '36', 57, '', '36', '', 'Khan', '', '', '', '', '', '', '', '9066157862', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'contact on 27/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-27', '0000-00-00 00:00:00', '', '', '', ''), (128, '36', 57, '', '20', '', 'Zepnur', '', '', 'info@zepnur.com', '', '08067577717', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Level 8, Tower 1, Umiya Business Bay Cessna Business Park, 560 103,Marathahalli - Sarjapur Outer Ring Rd, Kaverappa Layout, Kadubeesanahalli, ', 'Bangalore', 'Karnataka', 560103, 'India', '', '', 'Exist', '80', '', '', 'ACTIVE', 'LEAD', 0, '2018-10-29', '0000-00-00 00:00:00', '', '', '', ''), (129, '36', 57, '', '36', '', 'Shivaprasad', '', '', '', '', '', '', '', '9663883977', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mandya', 'Mandya', 'Karnataka', 0, 'India', '', '', 'test', '80', 'web proposal aapplication development', '', 'ACTIVE', 'LEAD', 0, '2018-10-30', '0000-00-00 00:00:00', '', '', '', ''), (130, '36', 57, '', '36', '', 'Jumana Mohammed', '', '', 'saifuddinco@hotmail.com', '', '', '', '', '8884249782', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '80', 'E _ commerece proposal ', '', 'ACTIVE', 'LEAD', 0, '2018-10-30', '0000-00-00 00:00:00', '', '', '', ''), (131, '36', 57, '', '36', '', 'Zabi', '', '', '', '', '', '', '', '9886523043', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Freezeer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'contact on 30/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-30', '0000-00-00 00:00:00', '', '', '', ''), (132, '36', 57, '', '36', '', 'Harish', '', '', '', '', '', '', '', '9986682798', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram, 18th cross opp to kotak mahindra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'contact on 30/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-30', '0000-00-00 00:00:00', '', '', '', ''), (134, '36', 57, '', '36', '', 'Syed', '', '', 'atomcompounds@gmail.com', '', '', '', '', '7845721110', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'chandra layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Contact on 30/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-30', '0000-00-00 00:00:00', '', '', '', ''), (135, '36', 57, '', '36', 'chimmi garments', 'Poovaiah', '', '', '', '', '', '', '', '9900707576', '', 'Just Dial', '', '0000-00-00', 'TEXTILES', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Quotation - 30,000 shared , link shared,', '', 'ACTIVE', 'LEAD', 0, '2018-10-31', '0000-00-00 00:00:00', '', '', '', ''), (136, '36', 57, '', '36', '', 'idrif', '', '', '', '', '', '', '', '9740383376', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd Stage', 'Banglaore', 'karnataka', 0, 'India', '', '', 'test', '60', 'contact on 31/10/2018', '', 'ACTIVE', 'LEAD', 0, '2018-10-31', '0000-00-00 00:00:00', '', '', '', ''), (137, '36', 57, '', '36', '', 'George ', '', '', '', '', '', '', '', '9916847200', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthinagar', '', '', 0, '', '', '', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (138, '36', 57, '', '36', '', 'Swamy', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (140, '36', 57, '', '36', '', 'Farhan', '', '', '', '', '', '', '', '9108551347', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (141, '36', 57, '', '36', '', 'Shivaprasad', '', '', '', '', '', '', '', '7899493370', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (142, '36', 57, '', '36', '', 'sakhib', '', '', '', '', '', '', '', '9739291626', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (143, '36', 57, '', '36', '', 'Madhusudhan', '', '', '', '', '', '', '', '8884761679', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'online portal application', '', 'ACTIVE', 'LEAD', 0, '2018-11-05', '0000-00-00 00:00:00', '', '', '', ''), (145, '36', 57, '', '36', '', 'Bhavana', '', '', 'bhuvanamys@gmail.com', '', '', '', '', '9916829797', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', 'Active', '', 0, '', '', 'Bannerghatta road', 'Bnaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Dynamic website with e - commerce portal', '', 'ACTIVE', 'LEAD', 0, '2018-11-06', '0000-00-00 00:00:00', '', '', '', ''), (146, '36', 57, '', '36', '', 'Vijay', '', '', '', '', '', '', '', '9108339997', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-09', '0000-00-00 00:00:00', '', '', '', ''), (148, '36', 57, '', '36', '', 'Parasuram', '', '', '', '', '', '', '', '9900981549', '', 'Just Dial', '', '0000-00-00', 'TEXTILES', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'E - commerce on 12/11/2018 = 25K + gst, contact on 15/11/2018', '', 'ACTIVE', 'LEAD', 0, '2018-11-12', '0000-00-00 00:00:00', '', '', '', ''), (152, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '9980765001', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'E - commerce website for super market 40K ( approval on 13/11/2018)\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-11-13', '0000-00-00 00:00:00', '', '', '', ''), (153, '36', 57, '', '36', '', 'Rudolfus ', '', '', '', '', '', '', '', '7676932626', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M G road', 'Banglaore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Webproposal sent 9K+ gst and construction link and template shared', '', 'ACTIVE', 'LEAD', 0, '2018-11-13', '0000-00-00 00:00:00', '', '', '', ''), (154, '24', 69, '', '24', 'Garments factory', 'Praveena', '', '', '', '', '', '', '', '8660167343', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalasipalya', 'Bangalore', 'Karnataka', 0, 'India', 'Praveena', '8660167343', 'New', '20', 'Dynamic Website for a garments factory. Have told 8000 as minimum price and may be more depending on requirement.', '', 'ACTIVE', 'LEAD', 0, '2018-11-14', '0000-00-00 00:00:00', '', '', '', ''), (155, '36', 57, '', '20', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '', '', 'gururaj@investinmysore.com', '', '', '', '', '9916699955', '', 'Just Dial', '', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', '1104, Udayaravi Rd, Block K, Kuvempu Nagara', 'Mysore', 'Karnataka', 0, 'India', '', '', 'Exist', '80', 'New changes in work, purchase order in GSS application(5000 + GST)', '', 'ACTIVE', 'LEAD', 0, '2018-11-15', '0000-00-00 00:00:00', '', '', '', ''), (157, '36', 57, '', '36', '', 'Nagaraj', '', '', '', '', '', '', '', '7899083846', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala, sanjan signal antony church', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-16', '0000-00-00 00:00:00', '', '', '', ''), (158, '36', 57, '', '36', '', 'Balaji', '', '', 'Balaji29563@yahoo.com', '', '', '', '', '9449211152', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-16', '0000-00-00 00:00:00', '', '', '', ''), (159, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '9845734040', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-16', '0000-00-00 00:00:00', '', '', '', ''), (160, '36', 57, '', '36', '', 'Velu', '', '', '', '', '', '', '', '9886488003', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banaswadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-16', '0000-00-00 00:00:00', '', '', '', ''), (161, '36', 57, '', '36', '', 'Vijaya', '', '', '', '', '', '', '', '9945598006', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banergatta Road', 'Bangalore', 'Karanataka', 0, 'India', '', '', 'test', '60', 'update website, and changes in existing website.', '', 'ACTIVE', 'LEAD', 0, '2018-11-17', '0000-00-00 00:00:00', '', '', '', ''), (163, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '9916431421', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'city town ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'E - commerce website', '', 'ACTIVE', 'LEAD', 0, '2018-11-20', '0000-00-00 00:00:00', '', '', '', ''), (164, '36', 57, '', '24', '', 'Prabhu', '', '', '', '', '', '', '', '9845466416', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Uttarahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Website Development', '', 'ACTIVE', 'LEAD', 0, '2018-11-20', '0000-00-00 00:00:00', '', '', '', ''), (165, '36', 57, '', '36', '', 'Shivkumar', '', '', '', '', '', '', '', '9738000748', '', 'Just Dial', 'Contacted', '0000-00-00', 'TEXTILES', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '60', 'Clothes garment - dynamic website', '', 'ACTIVE', 'LEAD', 0, '2018-11-21', '0000-00-00 00:00:00', '', '', '', ''), (166, '36', 57, '', '36', '', 'Praveen kumar', '', '', 'praveenkumar3297@gmail.com', '', '', '', '', '7411238964', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', 'Acquired', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Advertising company- Dynamic website(5 pages , E -mail Id (6 with 100 MB), content, domain, hosting,) - quotation shared for 11,500k +GST , waiting for the approval for 26/11/2018.', '', 'ACTIVE', 'LEAD', 0, '2018-11-21', '0000-00-00 00:00:00', '', '', '', ''), (167, '36', 57, '', '36', '', 'Rajkumar', '', '', '', '', '', '', '', '9945106061', '', 'Just Dial', '', '0000-00-00', 'Food Industry', 0, '', 'Project Cancelled', '', 0, '', '', 'Banashakari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Project cancelled', '', 'ACTIVE', 'LEAD', 0, '2018-11-21', '0000-00-00 00:00:00', '', '', '', ''), (169, '36', 57, '', '36', '', 'Channu', '', '', 'channuin@gmail.com', '', '', '', '', '9900641111', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashakari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will Visit Office at 5.00 PM', '', 'ACTIVE', 'LEAD', 0, '2018-11-21', '0000-00-00 00:00:00', '', '', '', ''), (170, '36', 57, '', '20', '', 'Indian Society of Professional Social Works', '', '', '', '', '', '', '', '9663808626', 'www.ispsw.in', 'Just Dial', 'Existing Customer', '0000-00-00', 'HEALTHCARE', 0, '', 'Active', '', 0, '', '', 'Department of Psychiatric Social Work,NIMHANS', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'Exist', '80', 'SSL Certificate Quotation shared for 3,000K + GST , waiting for the approval for 26/11/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-11-21', '0000-00-00 00:00:00', '', '', '', ''), (172, '36', 57, '', '36', '', 'Pradeep', '', '', 'bpradeep90@gmail.com', '', '', '', '', '9348103907', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', 'Acquired', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Web proposal sent - Rs. 2,62,000 - application + Android + IOS', '', 'ACTIVE', 'LEAD', 0, '2018-11-23', '0000-00-00 00:00:00', '', '', '', ''), (173, '36', 57, '', '36', '', 'Harish', '', '', 'harish.s2012@gmail.com', '', '', '', '', '9738066903', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kudlu gate', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-23', '0000-00-00 00:00:00', '', '', '', ''), (174, '36', 57, '', '36', '', 'Vivek', '', '', '', '', '', '', '', '9885791171', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Itpl Road-Whitefield(Beside orian mall)', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'Waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-23', '0000-00-00 00:00:00', '', '', '', ''), (175, '36', 57, '', '24', '', 'Pramodh', '', '', 'drpramodh100@gmail.com', '', '', '', '', '9886417947', '', 'External Referral', 'Contacted', '0000-00-00', '', 0, '', 'Acquired', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Dynamic website Static website: 15k , Domain & hosting: 3k + Plus gst , Quotation to be shared', '', 'ACTIVE', 'LEAD', 0, '2018-11-26', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (176, '36', 57, '', '36', '', 'Sandeep', '', '', '', '', '', '', '', '9538883335', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar, post office', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-26', '0000-00-00 00:00:00', '', '', '', ''), (177, '36', 57, '', '36', '', 'Vinay ', '', '', '', '', '', '', '', '9731384061', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay Nagar', 'Banglore', 'karnataka', 0, 'India', '', '', 'test', '80', 'Quotation shared for application', '', 'ACTIVE', 'LEAD', 0, '2018-11-26', '0000-00-00 00:00:00', '', '', '', ''), (178, '36', 57, '', '36', '', 'Shruthi', '', '', 'lovedaherbals@gmail.com', '', '', '', '', '8197780380', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'Waiting for approval', '', 'ACTIVE', 'LEAD', 0, '2018-11-26', '0000-00-00 00:00:00', '', '', '', ''), (180, '24', 69, '', '24', '', 'Lokesh Kumar ', 'patel', '', '', '', '', '', '', '7829503000', '', 'Existing Client Reference', 'Pre Qualified', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Lokesh Kumar Patel', '7829503000', 'New', '80', 'Existing client referral, wants custom website like astrosage.com. wants in 3 phases. 1st phase is CMS, 2nd is API integration, 3rd is e commerce.', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (181, '36', 57, '', '36', '', 'Manjunath ', '', '', '', '', '', '', '', '8884158127', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', 'Acquired', '', 0, '', '', 'shanthinagar busstand', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '20', 'Matrimony', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (182, '36', 57, '', '24', '', 'Puroshotam', '', '', '', '', '', '', '', '9611167111', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Konanakunte', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Furniture sale', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (183, '36', 57, '', '36', '', 'Kaif', '', '', '', '', '', '', '', '9901311001', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'nagawara', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (184, '36', 57, '', '36', '', 'Swathi', '', '', '', '', '', '', '', '9880145571', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (185, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '', '', '', '8618737538', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-11-30', '0000-00-00 00:00:00', '', '', '', ''), (187, '36', 57, '', '36', '', 'Asad ali', '', '', '', '', '', '', '', '9599694540', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Panduranga nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Contact evening after 6.00PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (188, '36', 57, '', '36', '', 'Vinayak', '', '', '', '', '', '', '', '8668596400', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Pune', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS ,E- commerce website(Flip kart , amazon) Client will CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (189, '36', 57, '', '36', '', 'Syed', '', '', '', '', '', '', '', '9177220367', '', 'Just Dial', '', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Frazer town', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (190, '36', 57, '', '36', '', 'No Name', '', '', '', '', '', '', '', '8310382429', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (191, '36', 57, '', '36', '', 'Sumit', '', '', 'Ksuresh24371@gmil.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (192, '36', 57, '', '', '', 'Bikey', '', '', 'Bikeymahira778@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (193, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '7044171803', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (196, '36', 57, '', '36', '', 'Srinivas', '', '', '', '', '', '', '', '8553894879', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson Garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, CB In eve(4/12/2018)', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (197, '36', 57, '', '36', '', 'Raju kumar', '', '', '', '', '', '', '', '7477747300', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (198, '36', 57, '', '36', '', 'Christy ', '', '', '', '', '', '', '', '9742210803', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indranagar coffee day', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Banking sector, CMR Tools - schedule at Evening 6.30PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (199, '36', 57, '', '36', '', 'Dilip', '', '', 'dileepaapu2012@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (200, '36', 57, '', '36', '', 'Dhanush', '', '', 'dhanu.nandan@gmail.com', '', '', '', '', '7618707997', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Clothes (buyer & seller) , Reference website - swiggy - whole sale, Company Profile to be shared throug watsapp(4/11/2018)', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (201, '36', 57, '', '36', '', 'Kanyakumari dadam', '', '', 'devikanya752@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (202, '36', 57, '', '36', '', 'Seher', '', '', 'seher225@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (203, '36', 57, '', '36', '', 'Anoop', '', '', 'anup.mys@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (204, '36', 57, '', '36', '', 'Suresh', '', '', '', '', '8026717134', '', '', '8884401107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Contacted but not potential', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (205, '36', 57, '', '36', '', 'Sabarish', '', '', 'rsabarish169@yahoo.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New bel road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (206, '36', 57, '', '36', '', 'No name', '', '', '', '', '', '', '', '9746914238', '', 'Just Dial', '', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (207, '36', 57, '', '36', '', 'Aman singh', '', '', '', '', '', '', '', '8437461333', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th block', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (208, '36', 57, '', '36', '', 'Raghuveer', '', '', '', '', '', '', '', '8618212769', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indiranagar, RT nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Software dealers, Executive to meet schedule not fixed', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (209, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9773808964', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Millers road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy,Busy', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (210, '36', 57, '', '36', '', 'Ranganath', '', '', 'rangasvv@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (211, '36', 57, '', '36', '', 'Mohammed', '', '', 'zsean0901@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (212, '36', 57, '', '36', '', 'Mateen', '', '', '', '', '', '', '', '9945749728', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', ' Begur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (213, '36', 57, '', '36', '', '', '', '', '', '', '', '', '', '8978504340', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (215, '36', 57, '', '36', '', 'Altaf ', '', '', 'sse4786@gmail.com', '', '', '', '', '7892619256', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hrbr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB , NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (216, '36', 57, '', '36', '', 'Venkatesan', '', '', 'kattukuppam.che@fr.dtdc.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Beml main road-new thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (217, '36', 57, '', '36', '', 'Saul', '', '', '', '', '', '', '', '9894301166', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ashoknagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (218, '36', 57, '', '36', '', 'Manu', '', '', '', '', '', '', '', '9611577466', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB - 4/11/2018 , NS, website, (finance), App- Nithin number sent to Client.', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (219, '36', 57, '', '36', '', 'NoName', '', '', '', '', '', '', '', '9113267178', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, Busy, JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (220, '36', 57, '', '36', '', 'sharan', '', '', 'sajansharan91@gmail.com', '', '', '', '', '8088840555', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ballery', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Call Forwarding,', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (221, '36', 57, '', '36', '', 'Raziq', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Ub City Mall-Vittal Mallya Roa', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (222, '36', 57, '', '36', '', 'Mahesh', '', '', 'mahesh_knsa@yahoo.com', '', '', '', '', '9740405040', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Graphical Designer', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (223, '36', 57, '', '36', '', 'Sukamal maity', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ballichak', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB after 6 PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (224, '36', 57, '', '36', '', 'Balaji ', '', '', 'balaji@gmail.com', '', '', '', '', '9241213222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Valid', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (225, '36', 57, '', '36', '', 'Nithin kumar', '', '', 'rubiya@codeproofs.com', '', '', '', '', '9480073712', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'They will Provide the IT Services', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (227, '36', 57, '', '36', '', 'Raj Kumar', '', '', '', '', '', '', '', '8296432763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,NS,NR,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (228, '36', 57, '', '36', '', 'Santhosh ', '', '', 'svetmysuru@gmail.com/santkmr2907@gmail.com', '', '', '', '', '9901917222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Company Profile shared(4/11/2018) ,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (229, '36', 57, '', '36', '', 'Ajay kumar', '', '', '', '', '', '', '', '9110021965', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, CB,NS, Spam Call', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (230, '36', 57, '', '36', '', 'Balaji', '', '', 'balaji.p2020@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (231, '36', 57, '', '36', '', 'Rajesh ', '', '', '', '', '', '', '', '8555817033', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, JOB\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (232, '36', 57, '', '36', '', 'Chiranjeevi', '', '', 'chiru.700@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 1st block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (233, '36', 57, '', '36', '', 'Karthikraman', '', '', 'kartikjanakiram@gmail.com', '', '', '', '', '9343833477', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (234, '36', 57, '', '36', '', 'Maria', '', '', '', '', '', '', '', '8050533566', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (236, '36', 57, '', '36', '', 'Supriya', '', '', '', '', '', '', '', '7760180217', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (237, '36', 57, '', '36', '', 'Shakthi', '', '', '', '', '', '', '', '9606517302', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kamakshi palya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB,NS, Searching for Internship in Bangalore', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (238, '36', 57, '', '36', '', 'Ravi', '', '', '', '', '', '', '', '7892037450', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (239, '36', 57, '', '36', '', 'Anjana', '', '', 'chuckanjana@gmail.com', '', '', '', '', '7349528433', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (240, '36', 57, '', '36', '', 'Jatin', '', '', 'jathint@gmail.com', '', '', '', '', '7022360707', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sarjapur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (241, '36', 57, '', '36', '', 'Balu', '', '', '', '', '', '', '', '9880728273', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sarjapur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Application , Executive to meet at after 4.30', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (242, '36', 57, '', '36', '', 'Kiran', '', '', 'akirancharles2001@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (243, '36', 57, '', '36', '', 'Angeraj', '', '', '', '', '', '', '', '9738033009', '', 'Just Dial', 'Lost Lead', '0000-00-00', '', 0, '', 'Project Cancelled', '', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (244, '36', 57, '', '36', '', '', '', '', '', '', '', '', '', '9980212032', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (245, '36', 57, '', '36', '', 'Santhosh', '', '', 'sanremo0007@gmail.com', '', '', '', '', '9535090874', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hanumantha Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will visit office on 5/11/2018, NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-03', '0000-00-00 00:00:00', '', '', '', ''), (246, '36', 57, '', '36', '', 'Rohit', '', '', '', '', '', '', '', '9091699023', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (247, '36', 57, '', '36', '', 'sharan', '', '', '', '', '', '', '', '8088840555', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Ballary', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Application informed to subbu sir Regarding this', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (248, '36', 57, '', '36', '', 'Karim shaik', '', '', 'karimnaughty1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Banglaore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (249, '36', 57, '', '36', '', 'Manjunath', '', '', 'manjunath.nagamangala@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (250, '36', 57, '', '36', '', 'Rohit', '', '', '', '', '', '', '', '7619479422', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(searched for bike Rental)', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (251, '36', 57, '', '36', '', 'Arunjith', '', '', 'arunjithc@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (253, '36', 57, '', '36', '', 'Bharathi ', '', '', '', '', '', '', '', '7019091831', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banaswadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (254, '36', 57, '', '36', '', 'Harish kumar', '', '', 'hariblr2004@yahoo.co.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (255, '36', 57, '', '36', '', 'Mahesh ', 'V N', '', '', '', '', '', '', '9845351841', '', 'Urban Clap', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nayanda Halli,', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, music, profile Details , payment Gateway Quoted amount within 10K(application - 40K)', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (256, '36', 57, '', '36', '', 'Hsarish', '', '', '', '', '', '', '', '9110672483', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'he had his own Training institute for Software developers', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (257, '36', 57, '', '36', '', 'Mohan', '', '', '', '', '', '', '', '9168722424', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk layout', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (258, '36', 57, '', '36', '', 'Sdgdhfj', '', '', 'sudrdh@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (259, '36', 57, '', '36', '', 'chandan sreevathsa', '', '', 'schandansreevathsa@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (260, '36', 57, '', '36', '', 'Taquveem fathima', '', '', '', '', '', '', '', '9880258588', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (261, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9773808964', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (262, '36', 57, '', '36', '', 'Kavitha', '', '', '', '', '', '', '', '7338352421', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (263, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '9845298458', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet 7/11/2018 at 11.00', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (265, '36', 57, '', '36', '', 'Vineeth', '', '', '', '', '', '', '', '9886297846', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Company Link shared and profile(watsapp)', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (266, '36', 57, '', '36', '', 'Prathiba Srinivas', '', '', '', '', '', '', '', '8971950008', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ulsoor', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,NS,CW,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-04', '0000-00-00 00:00:00', '', '', '', ''), (267, '36', 57, '', '36', '', 'Rehman', '', '', 'timetotaj@gmail.com', '', '', '', '', '9980396281', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New Bel Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Gif images(not Required)', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (268, '36', 57, '', '36', '', 'Anshuman', '', '', '', '', '', '', '', '9591947666', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Client will CB when they need', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (269, '36', 57, '', '36', '', 'Pradeep pradhan', '', '', '', '', '', '', '', '8296259209', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frank public school jp nagar 6th phase', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(Searching some number in website)', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (270, '36', 57, '', '36', '', 'Archana', '', '', '', '', '', '', '', '9164751939', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (271, '36', 57, '', '36', '', 'Triveni', '', '', 'tshankar@prowidesolutions.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Onl;y Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (272, '36', 57, '', '36', '', 'Swaroop', '', '', 'vishnu.reddy515@gmail.com', '', '', '', '', '8310644628', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar 6th Phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Brocher Design informed subbu sir to call', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (273, '36', 57, '', '36', '', 'Khan ', '', '', 'faisaljamalkhan7008@gmail.com', '', '', '', '', '8660144814', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yashwanth Pur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Start up company(Educational Website, Dynamic) Executive to meet on 8/12/2018,NS, Nithin num shared client will Contact him.', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (274, '36', 57, '', '36', '', 'Nadeem', '', '', 'nadeem.ansari@indiqube.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brookefield', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (276, '36', 57, '', '36', '', 'Dubbal', '', '', '', '', '', '', '', '9110660997', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will Contact from the office number,B', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (278, '36', 57, '', '36', '', 'Srikanta', '', '', '', '', '', '', '', '7975923655', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Looking for an Marketing Executive', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (279, '36', 57, '', '36', '', 'Sunitha', '', '', '', '', '', '', '', '9972829950', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (280, '36', 57, '', '36', '', 'no Name', '', '', 'syedmujju76@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lingarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (281, '36', 57, 'CLOSED', '36', '', 'Ramu', '', '', 'ramu9657@gmail.com', '', '', '', '', '9449821177', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Redesign of the website. Client will call when he need', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (282, '36', 57, '', '', '', '', '', '', '', '', '', '', '', '7338271415', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Uttarahalli road-subramanyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Audible , CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (283, '36', 57, '', '36', '', 'Sudesh singh', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gubbalala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (284, '36', 57, '', '36', '', 'Bikash', '', '', '', '', '', '', '', '7996818092', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B,CW, Basic website contact on 10/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (285, '36', 57, '', '36', '', 'Muru', '', '', 'murugeshak.jgi@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (286, '36', 57, '', '36', '', 'Siddaraju', '', '', '', '', '', '', '', '9844268176', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (287, '36', 57, '', '36', '', 'Raghuram', '', '', '', '', '', '', '', '9535195489', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jigani', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Basic website - for Restaurants informed to Call on 6/12/2018, B,NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (288, '36', 57, '', '36', '', 'Somagani tilak', '', '', 'tilak@getstorify.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', 'only email\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (289, '36', 57, '', '36', '', 'Ruth samuel', '', '', '', '', '', '', '', '9686493073', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Call not Connected,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-05', '0000-00-00 00:00:00', '', '', '', ''), (290, '36', 57, '', '36', '', 'Mukundan', '', '', '', '', '', '', '', '9886410360', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Banaglore', 'Karnaraka', 0, 'India', '', '', 'test', '60', 'NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (291, '36', 57, '', '36', '', 'Shakeel', '', '', '', '', '', '', '', '9632685060', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (293, '36', 57, '', '36', '', 'Srivaran', '', '', '', '', '', '', '', '9030536539', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (294, '36', 57, '', '36', '', 'Prasoon', '', '', '', '', '', '', '', '9035249637', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karntaka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (295, '36', 57, '', '36', '', 'Pallavi khedle', '', '', 'pallavi8khedle@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (296, '36', 57, '', '36', '', 'No Name', '', '', '', '', '6303701471', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,they will msg the concerned person number,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (297, '36', 57, '', '36', '', 'Divyesh bhimani', '', '', '', '', '', '', '', '9664524146', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (298, '36', 57, '', '36', '', 'Jiju', '', '', '', '', '', '', '', '9036604532', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (299, '36', 57, '', '36', '', 'Abhi', '', '', '', '', '', '', '', '8884133351', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (302, '36', 57, '', '36', '', 'Raja', '', '', '', '', '', '', '', '9705494840', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (303, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '6363931059', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Washing machine sale and service (cb after 1 hour),CB\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (304, '36', 57, '', '36', '', 'Shashank', '', '', '', '', '', '', '', '8951310124', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,CW, Switch off', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (305, '36', 57, '', '36', '', 'Rasik', '', '', '', '', '', '', '', '7338507250', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormanagala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, Client will CB in Eve(Basic Website= 5K),NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (307, '36', 57, '', '36', '', 'Ravi', '', '', '06ravigowda@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ms ramaiah nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (308, '36', 57, '', '36', '', 'Manoj', '', '', '', '', '', '', '', '9939815446', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,B,B,CW,B,Switch off,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (309, '36', 57, '', '36', '', 'Ashish', '', '', '', '', '', '', '', '9567066150', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bhbcs layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'informed to share location(client will visit office) on 8/12/2018,NS,B,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (311, '36', 57, '', '36', '', 'Chiranjeevi', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 1st block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '', 'Only Email\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (313, '36', 57, '', '36', '', 'Vinayak', '', '', 'baavtransports@gmail.com/ ', '', '', '', '', '9309854743', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Pune', '', 0, 'India', '', '', 'test', '60', 'NS,NS,NS,Client will send the URL on basis of that price to Quote,www.alphabulkmessage.com(8K + GST)- 5days', '', 'ACTIVE', 'LEAD', 0, '2018-12-06', '0000-00-00 00:00:00', '', '', '', ''), (314, '36', 57, '', '36', '', 'Prasad', '', '', '', '', '', '', '', '9019955368', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kartrigubbe ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'news portal website (Client will send the link) for alteration in website,not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (315, '36', 57, '', '36', '', 'Kavya', '', '', 'kavya.r0021@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (317, '36', 57, '', '36', '', 'Kalyan', '', '', '', '', '', '', '', '7760117502', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Not Auidible,NS,Executive to meet on 10/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (319, '36', 57, '', '36', '', 'Bhavani', '', '', 'bhavani.rkranjith@gmail.com', '', '', '', '', '9606622677', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,CW, Application for Chit Funds - informed subbu sir to call', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (321, '36', 57, '', '36', '', 'Srinivas', '', '', 'marathe.srinivas@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (322, '36', 57, '', '36', '', 'Kala', '', '', 'kalavathy.govindaswamy@globalpropertymanagement.org', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (323, '36', 57, '', '36', '', 'Mahaver', '', '', '', '', '', '', '', '', 'kiranmehta.u@gmail.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Maruthi sevanagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (324, '36', 57, '', '36', '', 'Kannan', '', '', '', '', '', '', '', '7811878558', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (325, '36', 57, '', '36', '', 'Sushma', '', '', '', '', '', '', '', '9113625843', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ebrahim sahib street', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (326, '36', 57, '', '36', '', 'Mallikarjun', '', '', 'kmallikarjuna98@yahoo.com', '', '', '', '', '8880688880', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashakari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,Redseign, Logist-mineral import and Export (CB at 12.30),B,NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (327, '36', 57, '', '36', '', 'Keerthi', '', '', '', '', '', '', '', '9663536616', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'By mistake it happen', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (328, '36', 57, '', '36', '', 'Sachin', '', '', '', '', '', '', '', '9740590245', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dairy Circle', '', '', 0, '', '', '', 'test', '60', 'NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-07', '0000-00-00 00:00:00', '', '', '', ''), (329, '36', 57, '', '36', '', 'Pradeep', '', '', '', '', '', '', '', '9632280091', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yelachenahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (330, '36', 57, '', '36', '', 'Yatish', '', '', '', '', '', '', '', '7676416384', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'School,Dynamic website, Executive to meet on 10/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (331, '36', 57, '', '36', '', 'Girish ', '', '', '', '', '', '', '', '9535687384', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Application like just dial , informed to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (332, '36', 57, '', '36', '', 'Mithun', '', '', '', '', '', '', '', '8123455220', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB in eve at 5.00PM,NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (333, '36', 57, '', '36', '', 'Zak', '', '', 'SAKUPKD@GMAIL.COM', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (334, '36', 57, '', '36', '', 'Paedeep', '', '', 'pardeepkumar49226@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (335, '36', 57, '', '36', '', 'OM', '', '', '', '', '', '', '', '9886324000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,CF,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (336, '36', 57, '', '36', '', 'Sunil Kumar', '', '', '', '', '', '', '', '8884011883', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,B,CW,CW,NOT Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (337, '36', 57, '', '36', '', 'Sanjay', '', '', '', '', '', '', '', '9916721601', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,CF,not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (339, '36', 57, '', '36', '', 'Sanjay', '', '', 'san.btt@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore ', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (340, '36', 57, '', '36', '', 'Nuzhath', '', '', 'nuzhathjkhan@gmail.com', '', '', '', '', '9740031807', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Beauty Parlour Static Website - 7K ,Client will CB ,B,Not Required (old website she got) - NOT Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (342, '36', 57, '', '36', '', 'Yogesh vk', '', '', '566gowda@gmail.com', '', '', '', '', '9945215565', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB On 10/12/2018,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''), (343, '36', 57, '', '36', '', 'Customer care no', '', '', '', '', '', '', '', '8918787344', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-08', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (345, '36', 57, '', '36', '', 'Sreenivasreddy', '', '', '', '', '', '', '', '7829391577', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Thindlu', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(something checking )', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (346, '36', 57, '', '36', '', 'Naveen ', '', '', '', '', '', '', '', '8884107193', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay Nagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Modelling and advertising - Company profile shared through watsapp, infomred to contact on eve around 5, informed to contact on 13/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (347, '36', 57, '', '36', '', 'Sarah', '', '', '', '', '', '', '', '9740031807', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Dynamic Website - 14K spa, skin teatments(VLCC) contact on jan 2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (348, '36', 57, '', '36', '', 'Rupesh', '', '', '', '', '', '', '', '9845575544', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marthalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'ups Investor(SEO) through watsapp SEO Package shared', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (349, '36', 57, '', '36', '', 'Affaan khan', '', '', '', '', '', '', '', '9945482771', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (350, '36', 57, '', '36', '', 'no name', '', '', '', '', '', '', '', '9448261982', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srirampura', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (351, '36', 57, '', '36', '', 'Tamim', '', '', '', '', '', '', '', '8668184475', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chennai', 'Chennai', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB, NS, CB on 11/12/2018 he want web development office to be in chennai', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (352, '36', 57, '', '36', '', 'Sadashiv ', '', '', 'prakashpcables@yahoo.in', '', '', '', '', '9986033551', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Social media Website - inform to Contact on 11/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (353, '36', 57, '', '36', '', 'Vinod ', '', '', '', '', '', '', '', '9632407095', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Digital Marketing informed subbu sir ', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (354, '36', 57, '', '36', '', 'Lingam', '', '', 'wood@woodlands.in', '', '914542242111', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Commercial Street', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Number not valid', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (355, '36', 57, '', '36', '', 'Ginesh', '', '', 'abdulnavas679@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hal 3rd stage new thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (356, '36', 57, '', '36', '', 'Poornima shet', '', '', '', '', '', '', '', '', 'poornimashet94@gmail.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram west', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (357, '36', 57, '', '36', '', 'Ali', '', '', '', '', '', '', '', '7204120199', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (358, '36', 57, '', '36', '', 'Vanditha', '', '', 'vandithagowda19@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (360, '36', 57, '', '36', '', 'Jai', '', '', 'kishoreyadav.n@gmail.com', '', '', '', '', '9066693953', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,CB at 7PM,NS,B,Construction company - Executive to meet at 12.30(15/12/2018)', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (361, '36', 57, '', '36', '', 'Ramesh', '', '', '', '', '', '', '', '9108879323', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB after 12.30,Static Website - 7K informed to contact on 15/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (362, '36', 57, '', '36', '', 'Dharmaram', '', '', 'dr.choudhary783@gmail.com', '', '', '', '', '8296799919', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', 'Busy,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (363, '36', 57, '', '36', '', 'Deepa', '', '', 'krishna.kle@gmail.com', '', '', '', '', '8867740688', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NOT Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (364, '36', 57, '', '36', '', 'Ilyaz', '', '', '', '', '', '', '', '7019745370', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(Enquired for Plastic )', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (365, '36', 57, '', '36', '', 'Kavya', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (366, '36', 57, '', '36', '', 'Suresh', '', '', '', '', '8026717134', '', '', '8884401107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Call forwarded to Ajay Sir', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (367, '36', 57, '', '36', '', 'Sampath', '', '', 'kskini@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (368, '36', 57, '', '36', '', 'Prashanth ap', '', '', '', '', '', '', '', '9901821170', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy,He is looking for item place order(NOT Required)', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (369, '36', 57, '', '36', '', 'Mohanraj', '', '', 'mnandagopala@nsssecure.com', '', '', '', '', '8041222389', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Number not Valid', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (370, '36', 57, '', '36', '', 'Prabhu', '', '', '', '', '', '', '', '8884282829', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (371, '36', 57, '', '36', '', 'Somashekar', '', '', '', '', '8040964207', '', '', '9901983874', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (372, '36', 57, '', '36', '', 'Sheela', '', '', '', '', '', '', '', '9535206569', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Beml layout kundalhalli whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Real Estate,Cb on 12/12/2018,Incomming call bared', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (373, '36', 57, '', '36', '', 'Ritesh', '', '', 'ritesh@shopeeq.com', '', '', '', '', '9606445020', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Dynamic Website(only Developing - 5 pages)Domain , hosting, Logo, content everything will be given by client,Quotation share for 7K, CB after 14/12/2018,switch off', '', 'ACTIVE', 'LEAD', 0, '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (375, '36', 57, '', '36', '', 'Venkatesh', '', '', 'indianshiva32@gmail.com', '', '', '', '', '9591979501', 'http://astrojaydev.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Informed nithin to call, SEO package shared,contact on 15/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (376, '36', 57, '', '36', '', 'Arsalan', '', '', 'bhatarsalan069@gmail.com', '', '', '', '', '9149733107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (378, '36', 57, '', '36', '', 'latha sree', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (379, '36', 57, '', '36', '', 'Ahmed ', '', '', 'syedsiddique85@gmail.com', '', '', '', '', '8217286037', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr Layout,BDA Complex', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Furniture sale, arround 300 Executive to meet - 11/12/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (380, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '8309308219', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kamalanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (381, '36', 57, '', '36', '', 'Shail', '', '', 'shihheal83@gmail.com', '', '', '', '', '9900650093', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'website (7K) Cb after - 17/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (382, '36', 57, '', '36', '', 'Sanjay jagadish', '', '', '', '', '', '', '', '7848977099', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Horamavu', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'he is only a developer', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (384, '36', 57, '', '36', '', 'NOName', '', '', '', '', '', '', '', '9535451412', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR,NR,CW,B,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (385, '36', 57, '', '36', '', 'Praveen', '', '', '', '', '', '', '', '9513797575', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthala nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (386, '36', 57, '', '36', 'PC Group Pvt Ltd', 'Siddayya', '', '', 'civilsiddu123@gmail.com', '', '', '', '', '7676123545', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Quotation to be shared on 14/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (387, '36', 57, '', '36', '', 'Sunil kumar', '', '', '', '', '', '', '', '9035935903', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required (He is looking for the Board design)', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (388, '36', 57, '', '36', '', 'Rabarna', '', '', 'vijuvibu1231@gmail.com', '', '', '', '', '8608958011', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR,NR,NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (389, '36', 57, '', '36', '', 'Pooja', '', '', '', '', '', '', '', '8317360797', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR,NR,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (390, '36', 57, '', '36', '', 'Deepmanyu purohit', '', '', '', '', '', '', '', '9571909996', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 5th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (391, '36', 57, '', '36', '', 'Martin', '', '', 'martinangelraj@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 8th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (392, '36', 57, '', '36', '', 'Mudassir', '', '', '', '', '', '', '', '8310977873', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'He is into Digital Marketing - Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (393, '36', 57, '', '36', '', 'Murali ', '', '', 'bmm138657@gmail.com', '', '', '', '', '7760337234', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required (Searching for Vedio grapher)', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (395, '36', 57, '', '36', '', 'Nahid', '', '', '', '', '', '', '', '7406789786', 'najmuddincool@gmail.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-11', '0000-00-00 00:00:00', '', '', '', ''), (396, '36', 57, '', '36', '', 'Mahani ', '', '', '', '', '', '', '', '9035311740', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (397, '36', 57, '', '36', '', 'Customer care', '', '', '', '', '', '', '', '9163829349', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', ' Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (398, '36', 57, '', '36', '', 'Anand ', '', '', 'anand.ragava@gmail.com', '', '', '', '', '9986889949', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Home care System, Profile Executive to meet on 13/12/2018(2.30PM)', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (399, '36', 57, '', '36', '', 'Satish', '', '', 'hsatishgowda@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mallathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (400, '36', 57, '', '36', '', 'Vidya', '', '', 'vidyanaik22545@gmail.com', '', '', '', '', '8971067789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'CB,Job', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (401, '36', 57, '', '36', '', 'sagar', '', '', '', '', '', '', '', '9036467086', '89sagar@gmail.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathi puram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Informed to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (402, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9518763514', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (404, '36', 57, '', '36', '', 'Praveen Kumar', '', '', '', '', '', '', '', '9591227022', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '80', 'Client will visit office on 13/12/2018(visited)', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (405, '36', 57, '', '36', '', 'Palani', '', '', 'palani_kumar_n_s@dell.com', '', '', '', '', '9880776000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Traking attendance and salary slip(application),Quotation shared 15K + GST, ecommerce website wth android and iOS application for 2,50,000 plus gst.', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (406, '36', 57, '', '36', '', 'Gurav', '', '', '', '', '', '', '', '8453874666', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (408, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9910198398', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'not Required(ISO Certificate)', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (409, '36', 57, '', '36', '', 'Vikesh', '', '', '', '', '', '', '', '9686651900', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,CW,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (411, '36', 57, '', '36', '', 'Geetha', '', '', 'mailtogeetha72@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (413, '36', 57, '', '36', '', 'Divya', '', '', '', '', '', '', '', '7899018061', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (414, '36', 57, '', '36', '', 'Thammaiah KP', '', '', '', '', '', '', '', '9740914950', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dollar scheme colony-btm 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (415, '36', 57, '', '36', '', 'Somu', '', '', '', '', '', '', '', '9008224738', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(Incoming call not Allowed on this number)', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (416, '36', 57, '', '', '', 'Srinivas', '', '', 'srinivas9880@yahoo.co.in', '', '8040949090', '', '', '9980009296', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (417, '36', 57, '', '36', '', 'Srinivas', '', '', '', '', '', '', '', '9980009296', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy,CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (418, '36', 57, '', '36', '', 'Mohammed', '', '', '', '', '', '', '', '8904455416', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaya bank layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (420, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9845541612', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jc road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (421, '36', 57, '', '36', '', 'Ayesha', '', '', 'ayeshakouser11@gmail.com', '', '', '', '', '8971097083', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kalyan Nagar', 'Banglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (422, '36', 57, '', '36', '', 'Biswajith', '', '', '', '', '', '', '', '7204620779', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'Website - executive to meet on 14/12/2018 at after 11PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-13', '0000-00-00 00:00:00', '', '', '', ''), (423, '36', 57, '', '36', '', 'Soul', '', '', '', '', '', '', '', '9886527606', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR, CF, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (424, '36', 57, '', '36', '', 'Chandhu', '', '', 'talarichendu123@gmail.com', '', '', '', '', '9900236611', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramurthy Nagar, NRA Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, CB, Executive to meet -14/12/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (425, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9901604489', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Udupi', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'E- commerce website including payment gateway 30K - contact on 18/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (426, '36', 57, '', '36', '', 'Bindesh', '', '', 'bindish.gowda@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 6th phase', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (427, '36', 57, '', '36', '', 'Raghavendra', '', '', '', '', '', '', '', '9739903600', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR, php developer working in linux informed to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (428, '36', 57, '', '36', '', 'Srinivasan', '', '', 'brsvasan@rediffmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Babusapalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (429, '36', 57, '', '36', '', 'Vahidha', '', '', '', '', '', '', '', '7019741681', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ebrahim Sahib Street', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (430, '36', 57, '', '36', '', 'Naveen', '', '', 'naveennavee@rediffmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srinidhi layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (431, '36', 57, '', '36', '', 'Arunjith nambiar', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (433, '36', 57, '', '36', '', 'Vijayalakshmi', '', '', '', '', '', '', '', '9380773738', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (434, '36', 57, '', '36', '', 'manu', '', '', '', '', '', '', '', '8123416126', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (435, '36', 57, '', '36', '', 'Sunita darji', '', '', 'sunitadarji7823@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (436, '36', 57, '', '36', '', 'Sam', '', '', '', '', '', '', '', '8095277782', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 9th Block ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Dynamic Website - Executive to meet on - 14/12/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (437, '36', 57, '', '36', '', 'Ashu doriya', '', '', 'tata.collectiondelhi1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (439, '36', 57, '', '36', '', 'Ramkrishna ', '', '', 'venkat.swaru@gmail.com', '', '', '', '', '8105524624', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (440, '36', 57, '', '36', '', 'Deepak', '', '', 'deepu1948@gmail.com', '', '', '', '', '9066666269', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-14', '0000-00-00 00:00:00', '', '', '', ''), (441, '36', 57, '', '36', '', 'Dhondiba gorge', '', '', '', '', '', '', '', '9325041841', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (442, '36', 57, '', '36', '', 'Vinai kumar mathur', '', '', 'vinaimathur@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar industrial estate', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (443, '36', 57, '', '36', '', 'Shailendrsingh', '', '', '', '', '', '', '', '7291992413', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (444, '36', 57, '', '36', '', 'Tirth sandeep patel', '', '', '', '', '', '', '', '8200983194', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 9th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Industrial Visit(Not Required)', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (445, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required ( there are the Developer)', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (447, '36', 57, '', '36', '', 'Ramesh', '', '', '', '', '', '', '', '9177618524', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (448, '36', 57, '', '36', '', 'Hasansab', '', '', '', '', '', '', '', '7406419321', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Horamavu', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (449, '36', 57, '', '36', '', 'Raghuveer', '', '', 'raghuvtp@gmail.com', '', '', '', '', '8618212769', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Executive to meet at 17/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (450, '36', 57, '', '36', '', 'Madhan', '', '', 'iammadan04@gmail.com', '', '', '', '', '9916616612', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hormavu', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Real Estate(Dynamic Website) - Executive to meet on 17/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (451, '36', 57, '', '36', '', 'Ajith kumar', '', '', 'Mittapallai@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (452, '36', 57, '', '36', '', 'Dilip', '', '', 'dilipacm@gmail.com', '', '', '', '', '9743453243', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (453, '36', 57, '', '36', '', 'Ajay ', '', '', '', '', '', '', '', '9538288279', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (454, '36', 57, '', '36', '', 'noname', '', '', '', '', '', '', '', '9354439178', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (455, '36', 57, '', '36', '', 'Kiran', '', '', 'slokhadesigna@gmail.com', '', '', '', '', '9739808235', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'Interior Architecture - Dynamic Website ( Client will visit office on 17/12/2018) - Details shared through watsapp', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (456, '36', 57, '', '36', '', 'Girishbabu', '', '', 'girishbabub7@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (457, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9620252094', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (458, '36', 57, '', '36', '', 'Ragavendra', '', '', 'ragavendra9636@gmail.com', '', '', '', '', '9164363999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (459, '36', 57, '', '36', '', 'Farah', '', '', '', '', '', '', '', '8880030528', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Xavier Layout-Gaurd mall', '', '', 0, 'India', '', '', 'test', '60', 'NS,Executive to meet on 19/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (460, '36', 57, '', '36', '', 'Veena', '', '', '', '', '', '', '', '9902122532', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Incoming calls are not Allowed to this number', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (461, '36', 57, '', '36', '', 'Dinesh', '', '', '', '', '', '', '', '9686673940', 'http://www.aloxysoftwarellc.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Price to be mentioned,Not Required\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (462, '36', 57, '', '36', '', 'Mohith', '', '', '', '', '', '', '', '9870168200', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (465, '36', 57, '', '36', '', 'Kavita krishna paunikar', '', '', 'kavitakrishnapaunikar@meesho.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 5th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (466, '36', 57, '', '36', '', 'Puranjay', 'Gupta', '', '', '', '', '', '', '7218199964', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shakti nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required( searching for sale)', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (467, '36', 57, '', '36', '', 'Punitha ', '', '', '', '', '', '', '', '9591634187', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (468, '36', 57, '', '36', '', 'Ilyaz', '', '', '', '', '', '', '', '7019745370', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(Searching for some item in JD)', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (469, '36', 57, '', '36', '', 'Payal mitra', '', '', 'recruiter.imc2@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (470, '36', 57, '', '36', '', 'Chetan ', '', '', '', '', '', '', '', '8861195899', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', 'Switch off,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (471, '36', 57, '', '36', '', 'NoName', '', '', '', '', '', '', '', '9113264659', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (472, '36', 57, '', '36', '', 'Peter', '', '', 'pbkk76@gmail.com', '', '9148589955', '', '', '7022044505', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sarjapur Road', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Watsapp company profile and Quotation shared. he will CB on 20/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (473, '36', 57, '', '36', '', 'NoName', '', '', '', '', '', '', '', '9902703617', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (474, '36', 57, '', '36', '', 'Punith', '', '', 'mysoreapparels@gmail.com', '', '', '', '', '9886999922', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sharadadevi Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required ( he is a developer )', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (475, '36', 57, '', '36', '', 'Subhan', '', '', '', '', '', '', '', '9886406808', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (476, '36', 57, '', '36', '', 'Santhosh', '', '', '', '', '', '', '', '8553992918', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Call not allowed,NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (478, '36', 57, '', '36', '', 'Ranjan', '', '', 'devarajntgkoppa@gmail.com', '', '', '', '', '9606065566', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Magadi Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB,CB,email ID shared,Manufactrue , e- commerce website, app 80K(Quotation shared),Executive to meet on 29/12/2018 at 11AM', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (479, '36', 57, '', '36', '', 'Khan', '', '', 'moeinkhan23@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lingarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (480, '36', 57, '', '36', '', 'Shilpa', '', '', 's.sangandatte@gmail.com', '', '', '', '', '9036636345', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Hospital - Static Website -5K,Basic Template Design shared. contact on 21/12/2018 in eve', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (481, '36', 57, '', '36', '', 'Babu', '', '', 'babug009@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (482, '36', 57, '', '36', '', 'Data', '', '', '', '', '', '', '', '8310323846', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS, Executive to meet at 18/12/2018,NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (483, '36', 57, '', '36', '', 'Deepa', '', '', '', '', '8022452073', '', '', '9886115474', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jayanagar 4th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Switch off,NS,alreday website there only designing part to be done, Client will CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (484, '36', 57, '', '36', '', 'Mohammed zakria', '', '', '', '', '', '', '', '7411677969', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Coles road-frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB on 18/12/2018,NS,CB in eve,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (485, '36', 57, '', '36', '', 'Ningaraju', '', '', '', '', '', '', '', '7760440469', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 1', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required(looking for vechile spare)', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (487, '36', 57, '', '36', '', 'Araan', '', '', 'khan.arhaan001@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-17', '0000-00-00 00:00:00', '', '', '', ''), (488, '36', 57, '', '36', '', 'Pooja', '', '', 'poojabharadhwaj597@gmail.com', '', '', '', '', '8073104106', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (489, '36', 57, '', '36', '', 'Manjula', '', '', 'MANJULA_CHANDRAPPA@REDIFFMAIL.COM', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (490, '36', 57, '', '36', '', 'Andre', '', '', 'mathew.stephen66@gmail.com', '', '', '', '', '9916787885', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,same as Quicker application', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (491, '36', 57, '', '36', '', 'Lakshman', '', '', '', '', '', '', '', '8310162851', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Busy,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (492, '36', 57, '', '36', '', 'Arshad', '', '', '', '', '', '', '', '7708193607', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (495, '36', 57, '', '36', '', 'Vipin', '', '', 'vipin.vinculum@gmail.com', '', '', '', '', '9538349998', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'C v raman nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS - informed subbu sir to call', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (496, '36', 57, '', '36', '', 'Prabhu', '', '', '', '', '', '', '', '8861566176', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B,NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (497, '36', 57, '', '36', '', 'Kavita krishna paunikar', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 5th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (498, '36', 57, '', '36', '', 'john ', '', '', 'jovinodk@aol.com', '', '', '', '', '9591496169', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', 'B,NS,CB , informed to contact on Monday at 24/12/2018\r\n', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (500, '36', 57, '', '36', '', 'Sanjay singh', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-18', '0000-00-00 00:00:00', '', '', '', ''), (501, '36', 57, '', '36', '', 'Anu', '', '', '', '', '', '', '', '8073694071', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ejipura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,CW,B', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (502, '36', 57, '', '36', '', 'Sumit', '', '', '', '', '', '', '', '9380320646', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS, JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (503, '36', 57, '', '36', '', 'Mutahir', '', '', 'mutahirkhandri19@gmail.com', '', '', '', '', '9972766786', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Not required', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (504, '36', 57, '', '36', '', 'Arun', '', '', 'arundhas@outlook.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indira nagar 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (505, '36', 57, '', '36', '', 'Asim ', '', '', '', '', '', '', '', '9717270686', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Banaglore', 'karnataka', 0, 'India', '', '', 'test', '60', 'website there, he wants to make updation , he wants a developer to come and update in their spot', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (506, '36', 57, '', '36', '', 'noname', '', '', '', '', '', '', '', '7996740913', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB in Eve,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (507, '36', 57, '', '36', '', 'Prasoon', '', '', 'pkanval93@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (508, '36', 57, '', '36', '', 'Christina', '', '', 'christinaf83@gmail.com', '', '', '', '', '7899418360', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'art and craft website 7K Quotation shared.NS,NS,B', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (509, '36', 57, '', '36', '', 'Shoba', '', '', '', '', '', '', '', '8095228171', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar industrial estate', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Switch off,Switch off', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (510, '36', 57, '', '36', '', 'khan', '', '', '', '', '', '', '', '9916529702', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-19', '0000-00-00 00:00:00', '', '', '', ''), (511, '36', 57, '', '36', '', 'Syed mastan', '', '', '', '', '', '', '', '9538408752', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS,Switch off,Switch Off', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (512, '36', 57, '', '36', '', 'Roger', '', '', 'roger@buljsms.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (513, '36', 57, '', '36', '', 'Ramachndra', '', '', '', '', '', '', '', '8971170239', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB after 12PM,B,B', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (514, '36', 57, '', '36', '', 'NoName', '', '', '', '', '', '', '', '9113500295', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required(By mistake it happen)', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (515, '36', 57, '', '36', '', 'Bhaskar', '', '', '', '', '', '', '', '8147338705', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 9th block', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not required( Carpenter)', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (516, '36', 57, '', '36', '', 'Nikhil', '', '', 'nikhild429@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (517, '36', 57, '', '36', '', 'khushboo', '', '', '', '', '', '', '', '9819001521', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mubai', '', 0, '', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (518, '36', 57, '', '36', '', 'Kiran', '', '', 'kiranj1318@gmail.com', '', '', '', '', '9845723515', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B,CW,CW,B,B', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (519, '36', 57, '', '36', '', 'Sharath', '', '', '', '', '', '', '', '8792439379', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will mail the Requirments.', '', 'ACTIVE', 'LEAD', 0, '2018-12-20', '0000-00-00 00:00:00', '', '', '', ''), (521, '36', 57, '', '36', '', 'Sebastian ', '', '', '', '', '', '', '', '8971683838', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Varthur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'informed to contact on 24/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (522, '36', 57, '', '36', '', 'sathyanarayana', '', '', '', '', '', '', '', '8861882000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (523, '36', 57, '', '36', '', 'Banshidhar pramanik', '', '', 'banshipramanik333@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (524, '36', 57, '', '36', '', 'Aniktha', '', '', '', '', '', '', '', '9620027390', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 2nd phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (525, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7338120129', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (526, '36', 57, '', '36', '', 'Honnesh gowda', '', '', '', '', '', '', '', '9731280156', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Switch Off', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (527, '36', 57, '', '36', '', 'Raghu', '', '', 'mysmiletrust@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (528, '36', 57, '', '36', '', 'shekar', '', '', '', '', '', '', '', '9986911339', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet at 21/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (530, '36', 57, '', '36', '', 'Prithviraj ', '', '', 'prithviraj.rd@gmail.com', '', '', '', '', '9483622711', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout 7th sector.', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet at 24/12/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (531, '36', 57, '', '36', '', 'Raj kumar', '', '', '', '', '', '', '', '8296432763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'switch off', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (532, '36', 57, '', '36', '', 'Swathi', '', '', '', '', '', '', '', '9632174398', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (533, '36', 57, '', '36', '', 'Azeem', '', '', '', '', '', '', '', '9742122837', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vasanth Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (534, '36', 57, '', '36', '', 'Mudit', '', '', '', '', '', '', '', '9929280359', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB ,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (535, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8825346605', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (536, '36', 57, '', '36', '', 'iyer', '', '', 'info@creativeextint.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (537, '36', 57, '', '36', '', 'Arun', '', '', '', '', '', '', '', '9677959518', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 6', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB at 22/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (538, '36', 57, '', '36', '', 'Daniel', '', '', '', '', '', '', '', '9003212371', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR,NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-21', '0000-00-00 00:00:00', '', '', '', ''), (539, '36', 57, '', '36', '', 'Praveen', '', '', '', '', '', '', '', '9972822275', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,CW.JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (540, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '9880018889', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Tours and travells , Executiive to meet at 24/12/2018 after 11.00PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (541, '36', 57, '', '36', '', 'Anil', '', '', 'anilgowda5835@gmail.com', '', '', '', '', '9902666247', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan Nagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet on 22/12/2018 2.00PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (542, '36', 57, '', '36', '', 'Shyamala kumari', '', '', 'milee.sham@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (543, '36', 57, '', '36', '', 'Shafiq', '', '', 'msbajajhouse@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'New delhi', '', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (544, '36', 57, '', '36', '', 'Dayashankar', '', '', '', '', '', '', '', '9448321598', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mamulpet near Avenu Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'E-commerce website , Executive to meet at 22/12/2018 at 2.00PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (545, '36', 57, '', '36', '', 'Mohan', '', '', '', '', '9449534235', '', '', '9480339212', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (546, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '8660186828', 'http://srisvv.com/', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Agrahara', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Matrimony website Link has to be shared( http://srisvv.com/ ) Reference Link contact in eve,NS,Cb in eve 24/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (547, '36', 57, '', '36', '', 'NoNmae', '', '', '', '', '', '', '', '8217692951', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (548, '36', 57, '', '36', '', 'Tarun', '', '', 'tharundevaru@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (549, '36', 57, '', '36', '', 'Vijay', '', '', '', '', '', '', '', '7892286036', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (550, '36', 57, '', '36', '', 'Shruthi', '', '', '', '', '', '', '', '8197780380', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will CB at 24/12/2018(Website)', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (551, '36', 57, '', '36', '', 'Arun', '', '', 'arunkenahalli1@gmail.com', '', '', '', '', '7411586727', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (553, '36', 57, '', '36', '', 'Harsha', '', '', 'harshareddy061@gmail.com', '', '9963095495', '', '', '8555073924', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,e - commerce website Glossary', '', 'ACTIVE', 'LEAD', 0, '2018-12-22', '0000-00-00 00:00:00', '', '', '', ''), (554, '36', 57, '', '36', '', 'Anand', '', '', 'g9.anandgm@gmail.com', '', '', '', '', '7892835763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (555, '36', 57, '', '36', '', 'Manish', '', '', '', '', '', '', '', '8884345034', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (556, '36', 57, '', '36', '', 'Splendid events', '', '', 'pundirsachin18@gmail.com', '', '', '', '', '7906016562', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Maruthi nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (557, '36', 57, '', '36', '', 'Sandeep', '', '', 'deepu.kingmaker@gmail.com', '', '', '', '', '8095000050', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (558, '36', 57, '', '36', '', 'Swathi', '', '', '', '', '', '', '', '8197729451', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Shankar Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet at 24/12/2018 ', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (559, '36', 57, '', '36', '', 'Sunil', '', '', 'sunil18anil@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Golhalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (560, '36', 57, '', '36', '', 'Subash', '', '', 'om777subash@gamil.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (561, '36', 57, '', '36', '', 'Rajesh', '', '', 'luvablerajesh_4u@yahoo.com', '', '', '', '', '9986488865', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (562, '36', 57, '', '36', '', 'Naveen', '', '', '', '', '', '', '', '9632888493', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'Not Required ( He is a marketing Executive )', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (563, '36', 57, '', '36', '', 'Dileswari sahoo', '', '', '', '', '', '', '', '', 'dileswari.sahoo775@gmail.com', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Arakere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (564, '36', 57, '', '36', '', 'Mahendra', '', '', '', '', '', '', '', '9637306771', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'S cadambi vidya kendra-basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (565, '36', 57, '', '36', '', 'Pramod', '', '', '', '', '', '', '', '9900151115', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kathriguppe', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (566, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8003660636', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indira nagar 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (567, '36', 57, '', '36', '', 'Muralidhar', '', '', 'muralidhar1987@gmail.com', '', '', '', '', '9480241170', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet at 27/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (568, '36', 57, '', '36', '', 'srinivas', '', '', 'sreni_gb@yahoo.com', '', '', '', '', '9880444666', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sampangiramnagar', '', '', 0, '', '', '', '', '', 'B', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (569, '36', 57, '', '36', '', 'Sameer', '', '', 'shakthi.121@gmail.com', '', '8066678131', '', '', '9916777441', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-24', '0000-00-00 00:00:00', '', '', '', ''), (571, '36', 57, '', '36', '', 'Jalli', '', '', '', '', '', '', '', '7829329986', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (572, '36', 57, '', '36', '', 'Naveen', '', '', '', '', '', '', '', '7624946698', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (574, '36', 57, '', '36', '', 'noname', '', '', '', '', '', '', '', '8003660636', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indira nagar 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (575, '36', 57, '', '36', '', 'Vinay', '', '', 'vinayvictory31@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (576, '36', 57, '', '36', '', 'Santhosh', '', '', 'mgfk143@gmail.com', '', '', '', '', '9738465842', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (577, '36', 57, '', '36', '', 'Manoj', '', '', 'manojmec@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (578, '36', 57, '', '36', '', 'Anif', '', '', '', '', '', '', '', '9850234617', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kanaka nagar-rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (579, '36', 57, '', '36', '', 'Adithya', '', '', 'adithya@loadcontrols.net', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (580, '36', 57, '', '36', '', 'Yugesh tandi', '', '', '', '', '6361212032', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Church street', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '(Not Required) They are the service provider', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (581, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8328081049', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 1st phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'JOB', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (582, '36', 57, '', '36', '', 'Adithya', '', '', 'adithya@loadcontrol.net', '', '', '', '', '9632698628', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'our JB profile shared', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (583, '36', 57, '', '36', '', 'Rangaswamy', '', '', 'rangu165@gmail.com', '', '', '', '', '9900916095', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '2nd main road-prakash nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static Website Quotation shared', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (584, '36', 57, '', '36', '', 'Anand', '', '', 'anandbadukadiyalu@gmail.com', '', '', '', '', '9886719272', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (585, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '4440026141', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout Sector 1', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', 'Number not Valid', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (586, '36', 57, '', '36', '', 'Udaya sri', '', '', '', '', '', '', '', '9848187180', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yelahanka new town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (587, '36', 57, '', '36', '', 'No Name', '', '', '', '', '', '', '', '9535451412', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt nagar', '', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (588, '36', 57, '', '36', 'Online bidding', 'Ragavendra', '', '', 'nraghub@live.com', '', '', '', '', '9480077168', '', 'Just Dial', '', '0000-00-00', '', 0, '', 'Active', '', 0, '', '', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar- 560010', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'Quotation shared( Existing client)', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (589, '36', 57, '', '36', '', 'Mohan', '', '', '', '', '', '', '', '7353000043', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'C V Raman Nagar', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'Executive to meet on 27/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-26', '0000-00-00 00:00:00', '', '', '', ''), (590, '36', 57, '', '36', '', 'Manoj kumar', '', '', 'manojthottathil@hotmail.com', '', '', '', '', '9400362618', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (591, '36', 57, '', '36', '', 'Urvika soni', '', '', '', '', '', '', '', '7016806803', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (592, '36', 57, '', '36', '', 'Muzzu', '', '', '', '', '', '', '', '9036967865', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (593, '36', 57, '', '36', '', 'Nandini', '', '', '', '', '', '', '', '9743315261', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (594, '36', 57, '', '36', '', 'Surender paswan', '', '', '', '', '', '', '', '8757058081', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Varthur', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (595, '36', 57, '', '36', '', 'Prakash', '', '', '', '', '', '', '', '8618257886', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nayandanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Basic Website - 7K', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (597, '36', 57, '', '36', '', 'Rafi', '', '', '', '', '', '', '', '9980791933', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th t block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'The client visited the office on 26/12/2018 - Quotation shared - 2,50,000L', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (598, '36', 57, '', '36', '', 'Rentmystay', '', '', 'abhijit@rentmystay.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bamgalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (599, '36', 57, '', '36', '', 'Murthy', '', '', 'narasimha8@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (600, '36', 57, '', '36', '', 'Byusha', '', '', 'byusha_a@rediffmail.com', '', '', '', '', '9538766601', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indiranagar', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NR', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (601, '36', 57, '', '36', '', 'Somashekar', '', '', '', '', '', '', '', '9980606060', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, Hotel purpose ', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (602, '36', 57, '', '36', '', 'Reddy', '', '', '', '', '', '', '', '9036056999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (603, '36', 57, '', '36', '', 'Sixth sense', '', '', 'contact@sixthsensesalon.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (604, '36', 57, '', '36', '', 'Madhusudhan', '', '', 'madhusudhan888@yahoo.co.in', '', '', '', '', '9844761888', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'B,', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (605, '36', 57, '', '36', '', 'Suresh ', '', '', '', '', '08026717134', '', '', '8884401107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'CB ', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (607, '36', 57, '', '36', '', 'Akmal', '', '', '', '', '', '', '', '9902205327', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar main road r t nagar', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (608, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9071940233', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Padmanabhanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Client will CB', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (609, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9017214425', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (610, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '9535842859', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (611, '36', 57, '', '36', '', 'Nikhil', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (612, '36', 57, '', '36', '', 'amrish', '', '', '', '', '', '', '', '9880073679', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, Startup company- Education center - 8K - Company profile shared(wtasapp) - conatct on 4/1/2019', '', 'ACTIVE', 'LEAD', 0, '2018-12-27', '0000-00-00 00:00:00', '', '', '', ''), (613, '36', 57, '', '36', '', 'Rakesh', '', '', 'rakeshdoddera@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 8th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (614, '36', 57, '', '36', '', 'Propic', '', '', 'solutionspropic@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Murugeshpalya', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (615, '36', 57, '', '36', '', 'Manoj kumar', '', '', 'rajabhaiya1900@gmail.com', '', '', '', '', '8506990993', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (616, '36', 57, '', '', '', '', '', '', '', '', '', '', '', '9482182427', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (617, '36', 57, '', '36', '', 'Santosh', '', '', '', '', '', '', '', '9148822225', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyapeeta Circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Dynamic or E-commerce website 20 product to be added. Executive to meet on 30/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (618, '36', 57, '', '36', '', 'Mansukh', '', '', 'sjewelslmt@gmail.com', '', '', '', '', '9742163699', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CF, NGO, commercial purpose (2 websites) - Executive to meet at 29/12/2018 - Company profile link shared', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (619, '36', 57, '', '36', '', 'Saraswathi ', '', '', '', '', '', '', '', '9652664162', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW,B,for confirmation for our side CB in eve', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (620, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '8310918572', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, CW, sales@jyblues.com Email Id shared for Requirments', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (621, '36', 57, '', '36', '', 'chakravarthy', '', '', '', '', '6363355397', '', '', '9141023456', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (622, '36', 57, '', '36', '', 'Nagarjun', '', '', 'nagarjuna.nanu66@gmail.com', '', '', '', '', '9035453666', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (623, '36', 57, '', '36', '', 'Simran', '', '', 'sanayainam078@gmail.com', '', '', '', '', '8197604426', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Event management - Static Website - 7K', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (624, '36', 57, '', '36', '', 'Shruthi', '', '', 'lovedaherbals@gmail.com', '', '', '', '', '8197780380', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', 'NOT REQUIRED ( they prefer Freelancer to work on their Company )', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (625, '36', 57, '', '36', '', 'Moulik', '', '', '', '', '', '', '', '8920663356', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mubai', '', '', 0, 'India', '', '', 'test', '60', 'modeling static website - 4K - Template shared (not potential)', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (626, '36', 57, '', '36', '', 'Ranganath', '', '', 'sonumarketing@gmail.com', '', '', '', '', '9535560858', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (627, '36', 57, '', '36', '', 'Kiran ', '', '', '', '', '', '', '', '7022319242', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Tours and Travells website - Mantri Mall Executive to call on 29/12/2018 in the 2nd half - waiting for approval after - 11/1/2019( 10K)', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (628, '36', 57, '', '36', '', 'Ravichandra', '', '', '', '', '', '', '', '9108988886', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (629, '36', 57, '', '36', '', 'Raghavendra', '', '', 'raga_sagi@yahoo.com', '', '', '', '', '9880658391', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar yediyur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'http://www.greenpeacehomestay.in - same as website - 7K(Quotation shared)', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (630, '36', 57, '', '36', '', 'Arunkumar', '', '', 'arunkumarjadhav2016@gmail.com', '', '', '', '', '8971103559', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, tours, and travels (static) - 7K - NOT REQUIRED', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (632, '36', 57, '', '36', '', 'Manjunath', '', '', 'manjunath1242@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-28', '0000-00-00 00:00:00', '', '', '', ''), (634, '36', 57, '', '36', '', 'Niharika singh', '', '', 'niharika@globalshiksha.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Austin town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (635, '36', 57, '', '36', '', 'kumar', '', '', 'info@eastrovedica.com', '', '', '', '', '9388556053', 'http://www.eastrovedica.com/', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Redesign informed to Call at 11.AM ( client informed to CB after 15 DAYS )', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (637, '36', 57, '', '36', '', 'Umesh', '', '', 'ummi811@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 2nd phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (638, '36', 57, '', '36', '', 'Praveen', '', '', 'praveendarshed8080@gmail.com', '', '', '', '', '7899499435', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, NOT REQUIRED', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (639, '36', 57, '', '36', '', 'Sri ram', '', '', 'ram743g@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosur road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (640, '36', 57, '', '36', '', 'Noname', '', '', '', '', '6381948265', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet on 31/12/2018 at 4.00 PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (641, '36', 57, '', '36', '', 'Girish ', '', '', 'safetysolution.bangalore@gmail.com', '', '', '', '', '9844101459', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CW, another client number shared but its not valid - 71565411711', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (642, '36', 57, '', '36', '', 'pavan', '', '', 'pavankanva91@gmail.com', '', '', '', '', '9141129638', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'NS,Cb on 31/12/2018', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (643, '36', 57, '', '36', '', 'Murali', '', '', 'murali27@gmail.com', '', '', '', '', '9886525253', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-29', '0000-00-00 00:00:00', '', '', '', ''), (644, '36', 57, '', '36', '', 'Sangeeta', '', '', 'sangeeta3119@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (646, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '8309308219', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (647, '36', 57, '', '36', '', 'Srinivasa', '', '', '', '', '', '', '', '9902226667', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kodichikanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (648, '36', 57, '', '36', '', 'Pawan', '', '', '', '', '', '', '', '8951264434', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (649, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8317304592', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required (property sale searching)', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (650, '36', 57, '', '36', '', 'Tarun', '', '', '', '', '', '', '', '8142163777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (651, '36', 57, '', '36', '', 'James vasanthan', '', '', '', '', '', '', '', '8754679499', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Contact on 2/1/2019', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (652, '36', 57, '', '36', '', 'Noname', '', '', 'venkye3610@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 7', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (654, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8848507901', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th t block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (655, '36', 57, '', '36', '', 'Murali', '', '', 'murali27@gmail.com', '', '', '', '', '9886525253', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (656, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7892432366', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (657, '36', 57, '', '36', '', 'Abhishek', '', '', '', '', '', '', '', '9840325996', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Varthur', 'Banglaore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (658, '36', 57, '', '36', '', 'Deepika', '', '', 'deepika@bingoitlabs.coms', '', '', '', '', '9742010889', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (660, '36', 57, '', '36', '', 'Dharani', '', '', '', '', '', '', '', '8197235271', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (661, '36', 57, '', '36', '', 'Mind omega', '', '', 'baignazeerbaig@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Babusapalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (662, '36', 57, '', '36', '', 'Yamini', '', '', 'PP1962909@GMAIL.COM', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (663, '36', 57, '', '36', '', 'Noname', '', '', 'venkye3610@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr layout sector 7', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (664, '36', 57, '', '36', '', 'Eli stevenson', '', '', '', '', '', '', '', '8095146000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kanakapura road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (665, '36', 57, '', '36', '', 'Rumana', '', '', '', '', '8073964590 ', '', '', '8073964590', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'jc nagar - maratta garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'School website, Executive to meet on 1/1/2019 at 12 PM', '', 'ACTIVE', 'LEAD', 0, '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (666, '36', 57, '', '36', '', 'Bilal ', '', '', '', '', '', '', '', '9845043637', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sp Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (667, '36', 57, '', '36', '', 'Ajay', '', '', 'ajaychoudary007@gmail.com', '', '', '', '', '9008305452', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (668, '36', 57, '', '36', '', 'Sashi', '', '', 'shashid.shashi664@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (669, '36', 57, '', '36', '', 'sashi', '', '', 'shashid.shashi664@gmail.com', '', '', '', '', '9739693291', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (670, '36', 57, '', '36', '', 'Shivam', '', '', 'shivam143d@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (671, '36', 57, '', '36', '', 'shyeb', '', '', '', '', '', '', '', '9036246590', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Tours and travels - executive to meet on 2/1/2019 at 2.30', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (672, '36', 57, '', '36', '', 'Swamy ', '', '', 'swamy.ah@gmail.com', '', '', '', '', '9632766669', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (673, '36', 57, '', '36', '', 'sandeep', '', '', 'vkamal360@gmail.com', '', '', '', '', '9035690099', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (674, '36', 57, '', '36', '', 'Sowmya', '', '', 'joinsowmyasirsi@gmail.com', '', '', '', '', '9916436562', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (675, '36', 57, '', '36', '', 'Deepa', '', '', '', '', '9844257135', '', '', '8025361560', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nandi Durga Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (676, '36', 57, '', '36', '', 'Muzzu', '', '', '', '', '', '', '', '9036967865', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (677, '36', 57, '', '36', '', 'Siddu', '', '', '', '', '', '', '', '8748049816', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (678, '36', 57, '', '36', '', 'Sandeep', '', '', '', '', '', '', '', '9620852526', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (679, '36', 57, '', '36', '', 'jaganath', '', '', 'jagannath.honnakatti@gmail.com', '', '', '', '', '9663044668', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (680, '36', 57, '', '36', '', 'Yadav', '', '', 'yadav_yadav2@yahoo.com', '', '', '', '', '9886728862', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', 'NOT REQUIRED', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (681, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7874963796', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (682, '36', 57, '', '36', '', 'Khaleel', '', '', '', '', '6363149935', '', '', '9901311002', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (683, '36', 57, '', '36', '', 'Abhinav', '', '', '', '', '', '', '', '8051338530', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (684, '36', 57, '', '36', '', 'Madhu ', '', '', 'madhu.v9738@gmail.com', '', '', '', '', '9738633257', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (685, '36', 57, '', '36', '', 'Neha bafna', '', '', 'neha.bafna.06@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New bel road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (686, '36', 57, '', '36', '', 'Krishna prasad', '', '', 'krrish.kitty@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (687, '36', 57, '', '36', '', 'Ramesh', '', '', 'ramnadig2001@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Adugodi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (689, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8828072162', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (690, '36', 57, '', '36', '', 'Lohith', '', '', 'lohithshivawebsolutions@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Only Email', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (691, '36', 57, '', '36', '', 'Rahul singh', '', '', 'purchase@evidentinternational.com', '', '', '', '', '9999628126', '', 'Open source', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (692, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9632888493', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (693, '36', 57, '', '36', '', 'noname', '', '', '', '', '', '', '', '7892087107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (694, '36', 57, '', '36', '', 'Deena ponnamma', '', '', '', '', '', '', '', '8277010514', '', 'just dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahalakshmipuram layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (695, '36', 57, '', '36', '', 'Nagaraj', '', '', 'nagarajay2030@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-02', '0000-00-00 00:00:00', '', '', '', ''), (697, '36', 57, '', '36', '', 'Lubina kaviya', '', '', '', '', '', '', '', '9066563661', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (698, '36', 57, '', '36', '', 'Chetan', '', '', 'chethancool23@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (699, '36', 57, '', '36', '', 'Harish', '', '', 'harishraj.damibi@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 1st phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (700, '36', 57, '', '36', '', 'Bharath', '', '', '', '', '', '', '', '9663985486', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (701, '36', 57, '', '36', '', 'Sadashivappa', '', '', '', '', '', '', '', '7975959362', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (702, '36', 57, '', '36', '', 'Jeet', '', '', '', '', '', '', '', '7002334240', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Karmelaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (703, '36', 57, '', '36', '', 'Sadashiv', '', '', 'kondisadashiv@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Only email', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (704, '36', 57, '', '36', '', 'Monish', '', '', 'moneish@yahoo.com', '', '', '', '', '9099090087', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (705, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9488558853', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (706, '36', 57, '', '36', '', 'Sagar', '', '', 'byatsagar03@gmail.com', '', '', '', '', '9739327321', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' New Thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (708, '36', 57, '', '36', '', 'Irfan', '', '', '', '', '', '', '', '8880666031', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (709, '36', 57, '', '36', '', 'Krishna Kumar', '', '', 'gowdakrishna3630@gmail.com', '', '', '', '', '7019676697', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (710, '36', 57, '', '36', '', 'Vidhi', '', '', '', '', '', '', '', '7600339275', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city phase 1', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (712, '36', 57, '', '36', '', 'Rajesh', '', '', 'md@igicorp.in', '', '', '', '', '9980198000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Residency road near Richmond Circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Dynamic Website - 5 pages - Executive to meet on 3/1/2019 at 4PM', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (713, '36', 57, '', '36', '', 'Smitha raju', '', '', 'usha@e-matrixconsultants.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Madivala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (714, '36', 57, '', '36', '', 'Shafi ', '', '', '', '', '', '', '', '9986355334', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson Garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (715, '36', 57, '', '36', '', 'Gopi', '', '', 'multideals99@gmail.com', '', '', '', '', '9845559445', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (718, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9773808964', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (719, '36', 57, '', '36', '', 'Sreenivas', '', '', '', '', '', '', '', '9490576462', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (720, '36', 57, '', '36', '', 'Dhileepp', '', '', 'dhileepp07@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (721, '36', 57, '', '36', '', 'Seshappa', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (722, '36', 57, '', '36', '', 'Mudassir pasha', '', '', '', '', '', '', '', '8310977873', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (723, '36', 57, '', '36', '', 'Prakash', '', '', '', '', '', '', '', '8660912818', 'brochill.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (724, '36', 57, '', '36', '', 'Doreswamy', '', '', '', '', '', '', '', '9606060600', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (725, '36', 57, '', '36', '', 'rehan', '', '', 'rehnafathz@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Byrasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-03', '0000-00-00 00:00:00', '', '', '', ''), (726, '36', 57, '', '36', '', 'suresh', '', '', 'suresh.bil@gmail.com', '', '', '', '', '7022388431', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yelahanka', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (727, '36', 57, '', '36', '', 'Rakesh', '', '', '', '', '', '', '', '7798349449', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (728, '36', 57, '', '36', '', 'Naveen', '', '', 'sampadagne@gmail.com', '', '', '', '', '9611174886', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (729, '36', 57, '', '36', '', 'Shweta', '', '', '', '', '', '', '', '8971579354', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 7', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (730, '36', 57, '', '36', '', 'Amarendra ', '', '', '', '', '', '', '', '8575830705', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (731, '36', 57, '', '36', '', 'Prabhu', '', '', 'prabhu18mysore@gmail.com', '', '', '', '', '9036849577', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gundlupete', 'gundlupete', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (732, '36', 57, '', '36', '', 'Vinod', '', '', '', '', '', '', '', '9341246688', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banaswadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (733, '36', 57, '', '36', '', 'Ambika', '', '', '', '', '', '', '', '8722323562', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (734, '36', 57, '', '36', '', 'ajay', '', '', '', '', '', '', '', '9739719158', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (735, '36', 57, '', '36', '', 'sharanya', '', '', '', '', '', '', '', '9962140467', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (736, '36', 57, '', '36', '', 'preetham', '', '', '', '', '', '', '', '7892806312', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'he had 5 static website - he want that to be done in low cost - informed to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (737, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7349396961', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathi puram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (738, '36', 57, '', '36', '', 'Vinod', '', '', 'pranaveenwse385@gmail.com', '', '', '', '', '9845321368', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (739, '36', 57, '', '36', '', 'Sunil', '', '', 'soniavhat@gmail.com', '', '', '', '', '9916419708', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'yadhe hospital near white field', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (741, '36', 57, '', '36', '', 'Mind omega', '', '', 'baignazeerbaig@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (742, '36', 57, '', '', '', 'Roona ponnappa', '', '', '', '', '', '', '', '9741816653', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (745, '36', 57, '', '36', '', 'Harsha ', '', '', '', '', '', '', '', '7624999047', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-04', '0000-00-00 00:00:00', '', '', '', ''), (747, '36', 57, '', '36', '', 'Taaheer shah', '', '', 'taaseershahma@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramasagara', 'Bangalore', 'Karnaraka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (748, '36', 57, '', '36', '', 'Srinivas', '', '', '', '', '', '', '', '9620988599', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (749, '36', 57, '', '36', '', 'Srinivasa', '', '', '2seenu@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (750, '36', 57, '', '36', '', 'Sreepath', '', '', '', '', '', '', '', '9743157015', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (751, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '8825993039', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (752, '36', 57, '', '36', '', 'Aatif ', '', '', 'actionp401@gmail.com', '', '', '', '', '7411500400', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (754, '36', 57, '', '36', '', 'Vinod', '', '', 'vinodhnb4u@rediffmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (755, '36', 57, '', '36', '', 'Durga prasad', '', '', '', '', '', '', '', '9618778489', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (756, '36', 57, '', '36', '', 'Kasipathy kasina', '', '', 'drkasipathy@hotmail.com', '', '', '', '', '7676795999', '', 'JD', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'CB after 11.30AM', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (757, '36', 57, '', '36', '', 'Devender', '', '', 'jsmitha.deva@gmail.com', '', '', '', '', '9553755351', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (758, '36', 57, '', '36', '', 'JOY', '', '', '', '', '', '', '', '8310724698', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (759, '36', 57, '', '36', '', 'Sidharjan', '', '', 'sidharthdinesh@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 1st block', 'Banglore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (760, '36', 57, '', '36', '', 'Anand', '', '', 'fastfireservice@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (761, '36', 57, '', '36', '', 'Basavaraj shekhappa khanapur', '', '', 'basavaraj.k85@gmail.com', '', '', '', '', '9916809290', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (762, '36', 57, '', '36', '', 'Prakash', '', '', '', '', '', '', '', '7892071904', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Subbanapalaya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (763, '36', 57, '', '36', '', 'Saravanan', '', '', 'er.saravanaprasath@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (764, '36', 57, '', '36', '', 'Zain', '', '', 'mohsinzain7090@gmail.com', '', '', '', '', '7090603013', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (765, '36', 57, '', '36', '', 'Vijaykumar', '', '', 'hbvijayakumar@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (766, '36', 57, '', '36', '', 'Guru prasda', '', '', '', '', '', '', '', '9686734998', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (767, '36', 57, '', '36', '', 'Revathi', '', '', '', '', '', '', '', '7760172361', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th t block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (768, '36', 57, '', '36', '', 'Rohit', '', '', 'rohithv1991@gmail.com', '', '', '', '', '7411394358', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (769, '36', 57, '', '36', '', 'Zibran akhtar', '', '', '', '', '', '', '', '9686090441', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (770, '36', 57, '', '36', '', 'Pallavi', '', '', 'pallavi.ashok1795@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (771, '36', 57, '', '36', '', 'Arunkumar', '', '', 'arunkumarsmrk@gmail.com', '', '', '', '', '9585700795', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 2nd block', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (772, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '9148923452', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (773, '36', 57, '', '36', '', 'Kiran', '', '', '', '', '', '', '', '7026571209', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (774, '36', 57, '', '36', '', 'Anitha', '', '', '', '', '', '', '', '9972547866', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (775, '36', 57, '', '36', '', 'Santosh', '', '', 'santhosh9008030423@gmail.com', '', '', '', '', '9008030423', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (776, '36', 57, '', '36', '', 'Sanjay', '', '', '', '', '', '', '', '9845038433', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (777, '36', 57, '', '36', '', 'Trs', '', '', '', '', '', '', '', '8548822222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (778, '36', 57, '', '36', '', 'Balaji', '', '', '', '', '', '', '', '9241213222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (779, '36', 57, '', '36', '', 'Nandan', '', '', '', '', '', '', '', '7892402889', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (780, '36', 57, '', '36', '', 'Priyanka', '', '', '', '', '', '', '', '7996993993', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (781, '36', 57, '', '36', '', 'Anitha', '', '', '', '', '', '', '', '7795748397', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (782, '36', 57, '', '36', '', 'Vemanna', '', '', 'nmtransport990@gmail.com', '', '', '', '', '7829281007', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (783, '36', 57, '', '36', '', 'Falsil', '', '', '', '', '', '', '', '8892402684', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (784, '36', 57, '', '36', '', 'shams', '', '', '', '', '7338272866', '', '', '9886026964', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Benson Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (785, '36', 57, '', '36', '', 'harsha', '', '', '', '', '', '', '', '7624999047', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (786, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '8501824934', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (787, '36', 57, '', '36', '', 'Manish', '', '', 'purohitmanish5@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Race course road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (788, '36', 57, '', '36', '', 'Nargis', '', '', '', '', '', '', '', '9741258905', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (789, '36', 57, '', '36', '', 'Amarendra', '', '', '', '', '', '', '', '8575830705', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (790, '36', 57, '', '36', '', 'Umesh', '', '', '', '', '', '', '', '9972398018', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (791, '36', 57, '', '36', '', 'Srinivas murthy', '', '', 'srinivasamurthysn@yahoo.in', '', '', '', '', '7022544445', 'https://www.honeywellaidc.com/', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (792, '36', 57, '', '36', '', 'venugopal ', '', '', 'venu.lumira@gmail.com', '', '', '', '', '9986665613', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (793, '36', 57, '', '36', '', 'Venkatesh', '', '', 'nani.v4@gmail.com', '', '', '', '', '9686227796', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (794, '36', 57, '', '36', '', 'Surendra', '', '', 'suri.tinku555@gmail.com', '', '', '', '', '9731397999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (795, '36', 57, '', '36', '', 'Vishwas', '', '', 'vishwas008877@gmail.com', '', '', '', '', '7022811424', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cox Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (796, '36', 57, '', '36', '', 'Deepak ', '', '', 'd33puu@gmail.com', '', '', '', '', '8123422123', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (797, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8951836148', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk layout', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (798, '36', 57, '', '36', '', 'Shrinivas', '', '', '', '', '', '', '', '9738031563', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Infantry road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (800, '36', 57, '', '36', '', 'Manjunath ', '', '', 'manjujm470@gmail.com', '', '', '', '', '8105324488', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (801, '36', 57, '', '36', '', 'Lalji', '', '', '', '', '', '', '', '9513734062', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (803, '36', 57, '', '36', '', 'Vijetha', '', '', 'vijjiamin@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-07', '0000-00-00 00:00:00', '', '', '', ''), (804, '36', 57, '', '36', '', 'Jungare devarao', '', '', 'jd1518063@gmail.com', '', '', '', '', '9014832513', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (806, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9739496889', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (807, '36', 57, '', '36', '', 'Shivani chintaman vaidya', '', '', 'shivanigvaidya@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (808, '36', 57, '', '36', '', 'siddu', '', '', 'sidduWsiddu@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (809, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9769027046', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hoodi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (810, '36', 57, '', '36', '', 'Venktesh', '', '', '', '', '', '', '', '9686227796', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (811, '36', 57, '', '36', '', 'Afzal', '', '', '', '', '', '', '', '9900136885', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout 2nd stage land mark: Vidya jyothi school', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (812, '36', 57, '', '36', '', 'Vikaash', '', '', '', '', '', '', '', '7395990773', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (813, '36', 57, '', '36', '', 'Sudhindra ', '', '', '', '', '', '', '', '9916547951', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (814, '36', 57, '', '36', '', 'Paramesh', '', '', '', '', '', '', '', '7338448899', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (815, '36', 57, '', '36', '', 'Jagadish', '', '', '', '', '', '', '', '7019056140', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (816, '36', 57, '', '36', '', 'Ganesh', '', '', 'ganesh.muthappa@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (817, '36', 57, '', '36', '', 'Shiv kumar', '', '', '', '', '', '', '', '9620555177', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (818, '36', 57, '', '36', '', 'Sdgdhfj', '', '', 'sudrdh@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hal', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (819, '36', 57, '', '36', '', 'Ganesh', '', '', '', '', '', '', '', '9008024060', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (820, '36', 57, '', '36', '', 'Vijay', '', '', 'vijayplakkat@gmail.com', '', '', '', '', '9741107978', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (821, '36', 57, '', '36', '', 'Tanzeem khan', '', '', '', '', '', '', '', '9886567788', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (822, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9108153562', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (823, '36', 57, '', '36', '', 'Thomas', '', '', '', '', '', '', '', '7204750066', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (824, '36', 57, '', '36', '', 'siren', '', '', '', '', '', '', '', '9686808909', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (825, '36', 57, '', '36', '', 'Rupsi', '', '', 'rupsi.r@gmail.com', '', '', '', '', '9902919616', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (826, '36', 57, '', '36', '', 'Siva kumar', '', '', 'shivagk3@gmail.com', '', '', '', '', '9945506736', 'https://www.rskdesign.in/', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'CV raman nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (827, '36', 57, '', '36', '', 'jain', '', '', 'vishcmb@gmail.com', '', '', '', '', '9590686611', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-08', '0000-00-00 00:00:00', '', '', '', ''), (829, '36', 57, '', '36', '', 'Shalu', '', '', '', '', '', '', '', '7986544869', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (830, '36', 57, '', '36', '', 'Animesh dutta', '', '', 'duttaanimesh.cse@gmail.com', '', '', '', '', '7483677262', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (831, '36', 57, '', '36', '', 'Sameer', '', '', 'sameer.gangavathi@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (832, '36', 57, '', '36', '', 'Shreyas', '', '', 'shreyasacharya22@gmail.com', '', '', '', '', '9008264901', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (833, '36', 57, '', '36', '', 'Yadav', '', '', 'hybriticinfo@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (834, '36', 57, '', '36', '', 'Veena', '', '', 'srimaaindia@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (835, '36', 57, '', '36', '', 'Mudassir pasha', '', '', '', '', '', '', '', '8310977873', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (836, '36', 57, '', '36', '', 'Mukesh', '', '', 'anand.mmz01@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalasipalyam', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (838, '36', 57, '', '36', '', 'Vikas', '', '', 'daycaretissuess@hotmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (839, '36', 57, '', '36', '', 'Ashwini', '', '', '', '', '', '', '', '9930972301', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (840, '36', 57, '', '36', '', 'Gopi', '', '', 'gopikrishnan1892@gmail.com', '', '', '', '', '8310108908', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (841, '36', 57, '', '36', '', 'Madhukumar', '', '', 'madhukumarengg@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shivaji nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (842, '36', 57, '', '36', '', 'Manikandan ruban', '', '', '', '', '', '', '', '9884922187', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 5th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (843, '36', 57, '', '36', '', 'Madhusudhan shatigara', '', '', '', '', '', '', '', '8919684796', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (844, '36', 57, '', '36', '', 'Preetisharma', '', '', '', '', '', '', '', '9832167997', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (845, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8660387801', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (846, '36', 57, '', '36', '', 'Swarup', '', '', 'sk.acharya94@gmail.comb', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalolre', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (847, '36', 57, '', '36', '', 'Hariprasad', '', '', '', '', '', '', '', '9945784874', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (848, '36', 57, '', '36', '', 'Mahesh', '', '', 'mahseh.srikantan@gmail.com', '', '', '', '', '9845778378', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Uttarahalli', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (849, '36', 57, '', '36', '', 'Lourd', '', '', 'lourdicici@yahoo.com', '', '', '', '', '9035551777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Infantry Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', 'Executive to meet on 10/1/2019 at 11 AM', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (850, '36', 57, '', '36', '', 'Varun', '', '', 'varunreddy575@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (851, '36', 57, '', '36', '', 'Souvikpatra', '', '', 'souvikpatra20@gmail.com', '', '', '', '', '8972724856', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (852, '36', 57, '', '36', '', 'Irshad', '', '', '', '', '', '', '', '9742938786', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-09', '0000-00-00 00:00:00', '', '', '', ''), (853, '36', 57, '', '36', '', 'Sandesh', '', '', '', '', '', '', '', '9972900196', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (854, '36', 57, '', '36', '', 'Venkatesh ', '', '', 'vijayalakshmienterprises77@gmail.com', '', '', '', '', '9741214400', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (855, '36', 57, '', '36', '', 'Prasad', '', '', 'amarvadlamudi@yahoo.co.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (856, '36', 57, '', '36', '', 'Om', '', '', '', '', '', '', '', '9845622222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (858, '36', 57, '', '36', '', 'Mansoor', '', '', 'mohammedmansoor675@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (859, '36', 57, '', '36', '', 'Pawan', '', '', '', '', '', '', '', '9901343590', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (860, '36', 57, '', '36', '', 'Girish', '', '', 'http://pickmylaundry.in', '', '', '', '', '9886463822', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (861, '36', 57, '', '36', '', 'Asif', '', '', 'asif.pasha9036363671@gmail.com', '', '', '', '', '7019285795', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (862, '36', 57, '', '36', '', 'Sreepath ', '', '', '', '', '', '', '', '9743157015', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (863, '36', 57, '', '36', '', 'Prabodh anillumar', '', '', '', '', '', '', '', '8138950864', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brindavan nagar sadduguntepalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (864, '36', 57, '', '36', '', 'Bharath', '', '', '', '', '', '', '', '9901001374', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (865, '36', 57, '', '36', '', 'Alisha', '', '', '', '', '6362952827', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cooke Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (866, '36', 57, '', '36', '', 'Rajesh', '', '', 'sringesh@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (867, '36', 57, 'CLOSED', '36', '', 'Asha rao', '', '', '', '', '', '', '', '7353724771', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srirampura', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (868, '36', 57, '', '36', '', 'sameer', '', '', 'sameer.gangavathi@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' ', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (869, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '9482988817', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (870, '36', 57, 'CLOSED', '36', '', 'Rajanna', '', '', '', '', '', '', '', '9448033308', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (871, '36', 57, '', '36', '', 'Puttegowda ', '', '', '', '', '', '', '', '9902311091', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Magadi Road', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (872, '36', 57, '', '36', '', 'Harsha', '', '', 'harsha05.sj@gmail.com', '', '7338635985', '', '', '9916390926', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (873, '36', 57, 'CLOSED', '36', '', 'Sharathbabu', '', '', 'sharathbabucg81@gmail.com', '', '', '', '', '9886929885', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (874, '36', 57, 'CLOSED', '36', '', 'Madhanagopal', '', '', 'madhangopal500@gmail.com', '', '', '', '', '9791257564', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (875, '36', 57, 'CLOSED', '36', '', 'Sabraishwaran', '', '', '', '', '', '', '', '8807731340', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (876, '36', 57, 'CLOSED', '36', '', 'Sai kumar', '', '', '', '', '', '', '', '7022010352', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (877, '36', 57, 'CLOSED', '36', '', 'raghuveer', '', '', '', '', '', '', '', '8618212769', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (880, '36', 57, '', '36', '', 'Sudeep', '', '', 'mktg@flowtechblr.com', '', '', '', '', '8762453495', 'http://www.flowtechpumps.co.in', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gigini', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (881, '36', 57, 'CLOSED', '36', '', 'Naveen', '', '', '', '', '', '', '', '9972021990', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-10', '0000-00-00 00:00:00', '', '', '', ''), (884, '36', 57, '', '36', '', 'Varun soni', '', '', '', '', '', '', '', '9636406325', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 5th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (885, '36', 57, '', '36', '', 'Ashok', '', '', 'ashokraj64199@gmail.com', '', '', '', '', '8050328034', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (886, '36', 57, '', '36', '', 'Akmal', '', '', '', '', '', '', '', '9902205327', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar main road r t nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (887, '36', 57, '', '36', '', 'Nitesh ps', '', '', '', '', '', '', '', '8722207187', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 8th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (888, '36', 57, '', '36', '', 'Nidhi', '', '', 'hr@qdc.com', '', '', '', '', '7829340367', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (889, '36', 57, '', '36', '', 'Bindhyachal academy', '', '', 'bindhyachalacade@gmail.com', '', '', '', '', '9431177848', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (891, '36', 57, '', '36', '', 'Manuj', '', '', 'ramanujds9@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (892, '36', 57, '', '36', '', 'Pranab', '', '', 'pranab.onden36@gmail.com', '', '', '', '', '8884487221', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (893, '36', 57, '', '36', '', 'Mudassir', '', '', '', '', '', '', '', '9538205708', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (894, '36', 57, '', '36', '', 'Bodhitech', '', '', 'ashwinipalani79@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (895, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '8553994477', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (896, '36', 57, '', '36', '', 'Priya', '', '', 'amul.priyanka1996@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brigade road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (897, '36', 57, '', '36', '', 'Swathi', '', '', 'swathisdoll@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Domlur layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (898, '36', 57, '', '36', '', 'Muni', '', '', 'yamini.raju3@gmail.com', '', '', '', '', '9902171779', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (899, '36', 57, '', '36', '', 'Aruna', '', '', 'sales@b.office.in', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (900, '36', 57, '', '36', '', 'Syed Ahmed', '', '', '', '', '', '', '', '7892585645', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (901, '36', 57, '', '36', '', 'Venkatesh ', '', '', '', '', '', '', '', '9066214913', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-11', '0000-00-00 00:00:00', '', '', '', ''), (903, '36', 57, '', '36', '', 'Jayagopi', '', '', '', '', '', '', '', '8073429057', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (904, '36', 57, '', '36', '', 'Venu', '', '', '', '', '', '', '', '9886672351', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ecc road whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (905, '36', 57, '', '36', '', 'Ig pradeep', '', '', 'i.g.pradeep@hotmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Subbaiyapalya extension', 'Banglore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (906, '36', 57, '', '36', '', 'Mahesh', '', '', 'javacookie12@gmail.com', '', '', '', '', '8023303668', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shiva nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (908, '36', 57, '', '36', '', 'Subramanian aks', '', '', 'aksrealestate.in@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (909, '36', 57, '', '36', '', 'Aashish', '', '', '', '', '', '', '', '8318789401', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Varthur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (910, '36', 57, '', '36', '', 'Justin', '', '', '', '', '', '', '', '9731045167', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (911, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9491170759', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (912, '36', 57, '', '36', '', 'Kanchana', '', '', '', '', '', '', '', '8217635010', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk layout', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (913, '36', 57, '', '36', '', 'Kbn', '', '', 'dadhu786@gmail.com', '', '', '', '', '9663882040', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (914, '36', 57, '', '36', '', 'Sarthak', '', '', 'sarthak.urs@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (915, '36', 57, '', '36', '', 'Abhishek', '', '', '', '', '9886574888', '', '', '8048530419', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (916, '36', 57, '', '36', '', 'Hegde', '', '', 'globalfacade@gmail.com', '', '', '', '', '9448902119', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (917, '36', 57, '', '36', '', 'bipin', '', '', 'sajtks@gmail.com', '', '', '', '', '9900076884', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Not Required', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (918, '36', 57, '', '36', '', 'Devendra', '', '', '', '', '', '', '', '9065983944', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (919, '36', 57, '', '36', '', 'vasudev', '', '', '', '', '', '', '', '9945612144', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (920, '36', 57, '', '36', '', 'Manu', '', '', 'manu.biddappa@gmail.com', '', '', '', '', '9731162242', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (921, '36', 57, '', '36', '', 'Priyanka chandra', '', '', '', '', '6204020747', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'H b r layout 3rd block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (922, '36', 57, '', '36', '', 'Amen', '', '', '', '', '', '', '', '9549725493', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (923, '36', 57, '', '36', '', 'Nandan', '', '', '', '', '', '', '', '9964768554', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 7th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (924, '36', 57, '', '36', '', 'Ganesh prasad', '', '', 'krupa1249@gmail.com', '', '', '', '', '9900149051', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (925, '36', 57, '', '36', '', 'Ashish kumar', '', '', '', '', '', '', '', '7004295272', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (926, '36', 57, '', '36', '', 'Karnaa', '', '', 'karnahh@gmail.com', '', '', '', '', '9902883774', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (927, '36', 57, '', '36', '', 'Arun edward', '', '', '', '', '', '', '', '7034011444', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (928, '36', 57, '', '36', '', 'Srija ', '', '', '', '', '', '', '', '9092316031', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (929, '36', 57, '', '36', '', 'Bhargav', '', '', '', '', '', '', '', '7411781582', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajendranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-12', '0000-00-00 00:00:00', '', '', '', ''), (930, '36', 57, '', '36', '', 'Khagendra', '', '', '', '', '', '', '', '8310439204', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Panathur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (931, '36', 57, '', '36', '', 'User', '', '', '', '', '', '', '', '8884383595', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hanumantha nagar-banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (932, '36', 57, '', '36', '', 'Raghavendra', '', '', 'yraghavendra.rao@rediffmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (933, '36', 57, '', '36', '', 'Vaishali yekbote', '', '', 'vaishali822020@gmail.com', '', '', '', '', '9869275200', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (934, '36', 57, '', '36', '', 'Raghib', '', '', 'faridi.raghib@yahoo.com', '', '', '', '', '7090997416', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (935, '36', 57, '', '36', '', 'Rohith ', '', '', 'rohitkhattri7@gmail.com', '', '', '', '', '9886262697', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (936, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9945620417', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandru', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (937, '36', 57, '', '36', '', 'Rijvan', '', '', 'rizwankhan8640@gmail.com', '', '', '', '', '9024788745', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (938, '36', 57, '', '36', '', 'Noname', '', '', 'shantanu.sarker@gmail.com', '', '', '', '', '9986149649', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (939, '36', 57, '', '36', '', 'Praveen', '', '', 'indcnews6890@gmail.com', '', '', '', '', '9741466356', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (940, '36', 57, '', '36', '', 'Raju', '', '', 'mvn2raju@gmail.com', '', '', '', '', '7899884727', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (941, '36', 57, '', '36', '', 'Debaranjan', '', '', 'debaranjan82@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tasker town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (942, '36', 57, '', '36', '', 'Raju', '', '', '', '', '', '', '', '7899884727', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakar Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (944, '36', 57, '', '36', '', 'adhi', '', '', '', '', '', '', '', '9902024235', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (945, '36', 57, '', '36', '', 'Varun', '', '', '', '', '', '', '', '7847047132', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (946, '36', 57, '', '36', '', 'Sangeetha', '', '', '', '', '', '', '', '8861729579', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (947, '36', 57, '', '36', '', 'Mohan', '', '', 'mohanevents@gmail.com', '', '', '', '', '9113262633', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (948, '36', 57, '', '36', '', 'Sampath', '', '', 'sampuachar@gmail.com', '', '', '', '', '9916445500', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (949, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '8928663511', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karantaka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (950, '36', 57, '', '36', '', 'Chidanand', '', '', '', '', '9886630440', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (951, '36', 57, '', '36', '', 'noname', '', '', '', '', '6363884557', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (952, '36', 57, '', '36', '', 'Tasmia', '', '', 'tasmiajadav@hotmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 4', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (953, '36', 57, '', '36', '', 'Divakar', '', '', '', '', '', '', '', '9880324555', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (954, '36', 57, '', '36', '', 'Krishnamurthy', '', '', 'krishnamurthys272@gmail.com', '', '', '', '', '9206753070', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (955, '36', 57, '', '36', '', 'Zeeshan', '', '', '', '', '', '', '', '9845518892', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 7', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (956, '36', 57, '', '36', '', 'Sathish ', '', '', '', '', '', '', '', '9742956820', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Seshadripuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (957, '36', 57, '', '36', '', 'Amar', '', '', '', '', '6361636355', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (958, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8219106100', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Madivala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (959, '36', 57, '', '36', '', 'Sharan', '', '', 'sharancr77@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (960, '36', 57, '', '36', '', 'Navneet kumar', '', '', '', '', '', '', '', '8709661664', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ulsoor', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (961, '36', 57, '', '36', '', 'Amar', '', '', 'amarkn143@gmail.com', '', '6361636355', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (962, '36', 57, '', '36', '', 'Naresh kumar', '', '', '', '', '', '', '', '9459787041', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jc road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (963, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8279793319', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-14', '0000-00-00 00:00:00', '', '', '', ''), (964, '36', 57, '', '36', '', 'Kumar', '', '', '', '', '', '', '', '9535916620', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (965, '36', 57, '', '36', '', 'Ramya', '', '', 'absha7777@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (966, '36', 57, '', '36', '', 'Basheer ahmed', '', '', 'basheerahmed23@gmail.com', '', '', '', '', '9994174018', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (967, '36', 57, '', '36', '', 'Nikhil patel', '', '', 'nikhilstar121@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (968, '36', 57, '', '36', '', 'Knis khan', '', '', '', '', '', '', '', '9163955763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (969, '36', 57, '', '36', '', 'Mohammed ', '', '', '', '', '', '', '', '7019413107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (970, '36', 57, '', '36', '', 'Nagarathna', '', '', 'nagarathnahr007@gmail.com', '', '', '', '', '9880672068', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gandhi Bazar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (971, '36', 57, '', '36', '', 'Vishu', '', '', '', '', '6387782307', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (972, '36', 57, '', '36', '', 'Raj kumar', '', '', '', '', '', '', '', '8296432763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (974, '36', 57, '', '36', '', 'Nagalinga', '', '', 'naghaart@gmail.com', '', '', '', '', '9740178752', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (975, '36', 57, '', '36', '', 'Sachin', '', '', '', '', '', '', '', '7624818819', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (976, '36', 57, '', '36', '', 'Rohith', '', '', 'rohithkrish111@gmail.com', '', '', '', '', '9738210072', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Corporation Circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (977, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7975636597', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (978, '36', 57, '', '36', '', 'Abdul waheed', '', '', '', '', '', '', '', '8108269848', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (979, '36', 57, '', '', '', 'Izzath', '', '', '', '', '', '', '', '7975636597', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (980, '36', 57, '', '36', '', 'Nagaraj', '', '', 'nagrajgowda078@gmail.com', '', '', '', '', '9731189606', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (981, '36', 57, '', '36', '', 'Tousif hoda', '', '', 'tousifhoda1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthinagar', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (982, '36', 57, '', '36', '', 'Dhanush', '', '', '', '', '', '', '', '8951233022', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (983, '36', 57, '', '36', '', 'pradeep', '', '', 'pradeep_dominos@jublfood.com', '', '', '', '', '8885509717', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (984, '36', 57, '', '36', '', 'Poornima shet', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (985, '36', 57, '', '36', '', 'krishna', '', '', '', '', '', '', '', '9902061163', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (986, '36', 57, '', '36', '', 'James', '', '', 'carltan@lightmech.com', '', '', '', '', '9845369487', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (987, '36', 57, '', '36', '', 'Khan', '', '', '', '', '', '', '', '9916529702', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout Sector 1', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (988, '36', 57, '', '36', '', 'Mahesh ', '', '', '', '', '', '', '', '8660478462', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banaswadi', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (989, '36', 57, '', '36', '', 'Anjali joglekar', '', '', '', '', '', '', '', '9960223210', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (990, '36', 57, '', '36', '', 'Amarnath', '', '', 'avam46@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (991, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '9845982542', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Matikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (992, '36', 57, '', '36', '', 'Praval', '', '', '', '', '', '', '', '7829446499', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (993, '36', 57, '', '36', '', 'Tabrez ', '', '', 'khantabrez7@gmail.com', '', '', '', '', '9886671696', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (994, '36', 57, '', '36', '', 'Aleemuddin shaik', '', '', '', '', '', '', '', '8050522613', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (995, '36', 57, '', '36', '', 'Mahendrakumarv', '', '', '', '', '', '', '', '9597126842', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Adugodi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (997, '36', 57, '', '36', '', 'Shakeeb', '', '', 'shakeebhussain90@yahoo.com', '', '', '', '', '9741355059', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (998, '36', 57, '', '36', '', 'Mayur', '', '', '', '', '', '', '', '9886091674', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (999, '36', 57, '', '36', '', 'Shib sankar bhattacharya', '', '', '', '', '', '', '', '8910167031', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-16', '0000-00-00 00:00:00', '', '', '', ''), (1000, '36', 57, '', '36', '', 'Jennifer', '', '', 'pattersonjude_sound@yahoo.co.in', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1001, '36', 57, '', '36', '', 'Kannan', '', '', '', '', '', '', '', '8296455888', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'H S R Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1002, '36', 57, '', '36', '', 'Hemanth ', '', '', '', '', '', '', '', '8884839660', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1003, '36', 57, '', '36', '', 'Propic', '', '', 'solutionspropic@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Murugeshpalya', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1004, '36', 57, '', '36', '', 'Mohammed akram', '', '', 'sowcartraders@hotmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1005, '36', 57, '', '36', '', 'Designsoft', '', '', 'designsofthgh@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1006, '36', 57, '', '36', '', 'Rk ravi', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1007, '36', 57, '', '36', '', 'Dhaval', '', '', 'virdhavaldesai@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'India', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1008, '36', 57, 'CLOSED', '36', '', 'Pooja', '', '', '', '', '', '', '', '8130136423', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 7th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1009, '36', 57, '', '36', '', 'Prasad', '', '', '', '', '', '', '', '9986665816', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1010, '36', 57, '', '36', '', 'Pradeep ', '', '', 'aradhyapradeepmedicals@yahoo.co.uk', '', '', '', '', '9845029041', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Begur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1011, '36', 57, '', '36', '', 'Nikhil patel', '', '', 'nikhilstar121@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1012, '36', 57, '', '36', '', 'Shekar', '', '', '', '', '', '', '', '9845674142', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1013, '36', 57, '', '36', '', 'Akshay', '', '', 'akshaybhatmalali@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Timber yard layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1014, '36', 57, '', '36', '', 'Praveen', '', '', 'praveenkumar.bm@gmail.com', '', '', '', '', '9008045042', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1015, '36', 57, 'CLOSED', '36', '', 'Yuvraj', '', '', 'yuvi.sree@gmail.com', '', '', '', '', '9880486688', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1018, '36', 57, '', '36', '', 'Mohammed', '', '', '', '', '', '', '', '9786098454', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1019, '36', 57, '', '36', '', 'Archana Gowda', '', '', '', '', '', '', '', '9535812873', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1020, '36', 57, '', '36', '', 'Sonu', '', '', '', '', '', '', '', '9852763494', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1021, '36', 57, '', '36', '', 'Mihir', '', '', 'mihirpatel22297@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1022, '36', 57, '', '36', '', 'Suraj', '', '', '', '', '', '', '', '7767081031', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-17', '0000-00-00 00:00:00', '', '', '', ''), (1023, '36', 57, '', '36', '', 'Sathish smart', '', '', '', '', '', '', '', '7090656732', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidya nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1024, '36', 57, '', '36', '', 'Satish', '', '', 'stsashtaj2@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1025, '36', 57, '', '36', '', 'Shakthi', '', '', 'mary.cheemu@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1026, '36', 57, '', '36', '', 'shiva', '', '', '', '', '6364773921', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1027, '36', 57, '', '36', '', 'Shreya', '', '', '', '', '', '', '', '9022319720', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 3rd block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1028, '36', 57, '', '36', '', 'Sonu', '', '', '', '', '', '', '', '8867394240', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar 4th stage', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1029, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9845684063', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1030, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7876477770', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1031, '36', 57, '', '36', '', 'Bhavana', '', '', 'bhawtrash80@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1032, '36', 57, '', '36', '', 'Shah', '', '', '', '', '', '', '', '7338115430', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road near Honel well Compnay ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1034, '36', 57, '', '36', '', 'channesh', '', '', '', '', '', '', '', '9916557136', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1035, '36', 57, '', '36', '', 'parthiban', '', '', 'kulaparthi@gmail.com', '', '', '', '', '7010103617', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hongasandra', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1036, '36', 57, '', '36', '', 'Gopal ', '', '', 'gopalcm@gmail.com', '', '', '', '', '9986666030', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1037, '36', 57, '', '36', '', 'Mohan raju', '', '', '', '', '', '', '', '7019236310', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1038, '36', 57, '', '36', '', 'Rahul verma', '', '', 'drawingroom4you@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1039, '36', 57, '', '36', '', 'Manu', '', '', 'arukrn87@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1040, '36', 57, '', '36', '', 'Gokul raj', '', '', 'gokulfc@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1041, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '9945088356', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1042, '36', 57, '', '36', '', 'lakshmish', '', '', 'laxmimish@yahoo.in', '', '', '', '', '8867584241', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1043, '36', 57, '', '36', '', 'Sohil ', '', '', '', '', '', '', '', '7025699236', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1044, '36', 57, '', '36', '', 'Manohar', '', '', 'manohar.naik@outlook.com', '', '', '', '', '8139999988', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1045, '36', 57, '', '36', '', 'Rashmi', '', '', 'rashmi@abhilekha.com', '', '', '', '', '9686202330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1046, '36', 57, '', '36', '', 'Meenakshi raj', '', '', 'raj.meenakshi123@gmail.com', '', '', '', '', '9901717084', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1047, '36', 57, '', '36', '', 'Tony', '', '', 'tony.arpi279@gmail.com', '', '', '', '', '8861889215', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-18', '0000-00-00 00:00:00', '', '', '', ''), (1048, '24', 69, '', '24', '', 'Abdul Hafiz', '', '', 'abdulhaffiz@gmail.com', '', '', '', '', '8971216250', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-19', '0000-00-00 00:00:00', '', '', '', ''), (1049, '36', 57, 'CLOSED', '36', '', 'Pradeep', '', '', '', '', '', '', '', '8217609923', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kathriguppe', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1050, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9773808964', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 6th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1051, '36', 57, '', '36', '', 'Ravi biradar', '', '', 'biradarsravi@gmail.com', '', '', '', '', '8884657196', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banaglore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1052, '36', 57, 'CLOSED', '36', '', 'Rajesh', '', '', 'sushmaray@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1053, '36', 57, 'CLOSED', '36', '', 'Mallkarjuna', '', '', '', '', '', '', '', '9663592999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yeshwanthpur', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1054, '36', 57, '', '36', '', 'Dheeraj', '', '', '', '', '', '', '', '8123492563', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Community hall road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1055, '36', 57, '', '36', '', 'Rajesh', '', '', '', '', '', '', '', '8309308219', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1056, '36', 57, '', '36', 'Vagdevi vilas institutions ', 'Ramesh', '', '', '', '', '', '', '', '9845622222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'marathahalli', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1057, '36', 57, '', '36', '', 'venkatesh', '', '', '', '', '', '', '', '9620850935', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kathriguppe', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1058, '36', 57, 'CLOSED', '36', '', 'Nagaraj ', '', '', 'nagarajukp7@gmail.com', '', '6360659560', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kamakshipalya', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1059, '36', 57, '', '36', '', 'Abhinand', '', '', 'abhinand2050@gmail.com', '', '', '', '', '8660862192', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Basaveshwara Nagar', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1060, '36', 57, '', '36', '', 'mahadev', '', '', '', '', '', '', '', '7899681830', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1061, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9620138660', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1062, '36', 57, '', '36', '', 'jaspal', '', '', '', '', '', '', '', '9835108511', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Majestic', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1063, '36', 57, '', '36', '', 'Raj', '', '', 'dayasenha@gmail.com', '', '', '', '', '9620443096', 'https://www.letzgain.com/', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'H r b r layout kalyan nagar 2nd block', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1064, '36', 57, '', '36', '', 'Britse', '', '', '', '', '', '', '', '7795065657', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 9th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1065, '36', 57, '', '36', '', 'Farhan', '', '', '', '', '', '', '', '8884050000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1066, '36', 57, '', '36', '', 'Giridhar', '', '', 'giri6572.gn@gmail.com', '', '', '', '', '9900767877', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1067, '36', 57, '', '36', '', 'Mitesh', '', '', 'contactun@furecs.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1070, '36', 57, '', '36', '', 'Harish ', '', '', '', '', '', '', '', '9880880821', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala - opp sapna book House', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1071, '36', 57, '', '36', '', 'Abdul ', '', '', '', '', '', '', '', '8971216250', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1072, '36', 57, '', '36', '', 'Shereen', '', '', 'nshereen111@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1073, '36', 57, '', '36', '', 'Varun', '', '', 'varun@samaavesh.com', '', '', '', '', '7816012068', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1074, '36', 57, '', '36', '', 'jay', '', '', '', '', '', '', '', '9825189994', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1075, '36', 57, '', '36', '', 'shyeb', '', '', '', '', '', '', '', '9036246590', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1076, '36', 57, '', '36', '', 'Rodney jude', '', '', 'rodney.jude@propurban.com', '', '', '', '', '9886167983', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthi nagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1077, '36', 57, '', '36', '', 'Mani', '', '', 'sales.claroh@gmail.com', '', '', '', '', '9538236069', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1078, '36', 57, '', '36', '', 'Shanaz', '', '', '', '', '', '', '', '9844287114', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1079, '36', 57, '', '36', '', 'Kaustubh kasturiranga', '', '', '', '', '', '', '', '7795733895', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kaustubh2nasa@gmail.com', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1080, '36', 57, '', '36', '', 'prabha', '', '', 'prabhakar.dts@gmail.com', '', '', '', '', '9731263208', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kalyan Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1081, '36', 57, '', '36', '', 'vijay', '', '', '', '', '9742533116', '', '', '9739744329 ', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1082, '36', 57, '', '36', '', 'Karthik', '', '', 'sales.claroblr@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1083, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7975433665', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1084, '36', 57, '', '36', '', 'Panchal', '', '', '', '', '', '', '', '9834438046', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Race course road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1085, '36', 57, '', '36', '', 'Updesh kumar', '', '', 'mannu.avdhesh@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1086, '36', 57, '', '36', '', 'Afsan', '', '', '', '', '', '', '', '9380586148', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1087, '36', 57, '', '36', '', 'Neeraja Reedy', '', '', '', '', '', '', '', '9491170759', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'india', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1088, '36', 57, '', '36', '', 'Sdgdhfj', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Benson town', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1089, '36', 57, '', '36', '', 'Harsha', '', '', '', '', '', '', '', '8073285511', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1090, '36', 57, '', '36', '', 'Shib sankar bhattacharya', '', '', '', '', '', '', '', '8910167031', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gnanabharathi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-21', '0000-00-00 00:00:00', '', '', '', ''), (1091, '36', 57, '', '36', '', 'Jd wilson baburw', '', '', '', '', '', '', '', '8008181975', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1092, '36', 57, '', '36', '', 'Priyanka chouhan', '', '', '', '', '', '', '', '9664028792', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1093, '36', 57, '', '36', '', 'Akash', '', '', '', '', '', '', '', '8805285141', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1094, '36', 57, '', '36', '', 'Fareed ', '', '', '', '', '', '', '', '7905894788', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1095, '36', 57, '', '36', '', 'Devraj singh', '', '', '', '', '', '', '', '8307320783', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1096, '36', 57, '', '36', '', 'Gnanaprakash', '', '', 'prakash.6770@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1097, '36', 57, '', '36', '', 'Archana', '', '', '', '', '', '', '', '9741629002', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1098, '36', 57, '', '36', '', 'Krishna', '', '', 'krishnahmkrishna@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bovipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1099, '36', 57, '', '36', 'rightwaystudenthelpline', 'Shiva', '', '', '', '', '', '', '', '9741690004', 'http://rightwaystudentshelpline.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '#69,4th Main Road, Ganga Nagar Extn, Ganga Nagar, Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1100, '36', 57, '', '36', '', 'Mohammed iqbal', '', '', '', '', '', '', '', '9611140337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1101, '36', 57, '', '36', '', 'Harsha', '', '', '', '', '', '', '', '8073285511', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1102, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '9164051755', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Govindshetty palya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1103, '36', 57, '', '36', '', 'Karthik', '', '', '', '', '', '', '', '7338141337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1104, '36', 57, '', '36', '', 'Laptopmarket', '', '', '', '', '', '', '', '9626707152', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1105, '36', 57, '', '36', '', 'Krishna', '', '', 'krishnahmkrishna7@gmail.com', '', '', '', '', '9980402147', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1106, '36', 57, '', '36', '', 'Akhmal', '', '', 'akhmal4u@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ganganagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1107, '36', 57, '', '36', '', 'Nikhil', '', '', 'nikhild429@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1108, '36', 57, '', '36', '', 'Sai', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1109, '36', 57, '', '36', '', 'Varun', '', '', 'varun@samaavesh.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1110, '36', 57, '', '36', '', 'Jena', '', '', '', '', '', '', '', '7978468540', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1111, '36', 57, '', '36', '', 'Ramesh', '', '', 'rameshtalwar8118@gmail.com', '', '', '', '', '8088778118', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1112, '36', 57, '', '36', '', 'Rakesh', '', '', '', '', '', '', '', '8553535605', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1113, '36', 57, '', '36', '', 'Charitha', '', '', '', '', '', '', '', '7996096211', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1114, '36', 57, '', '36', '', 'Anita', '', '', '', '', '', '', '', '9538866022', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1115, '36', 57, '', '36', '', 'Rajaiah', '', '', 'prideindustries2009@gmail.com', '', '', '', '', '9900085500', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1116, '36', 57, '', '36', '', 'Prashantha', '', '', '', '', '', '', '', '9844368398', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brigade road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1117, '36', 57, '', '36', '', 'Wilson', '', '', '', '', '', '', '', '8296837111', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1118, '36', 57, '', '36', '', 'Vikas', '', '', 'vicky3408@yahoo.com', '', '', '', '', '9845954321', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1119, '36', 57, '', '36', '', 'Hemantha kumar', '', '', 'blhemanthakumar@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1120, '36', 57, '', '36', '', 'chutiya', '', '', '', '', '', '', '', '9025466960', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New gurappanapalya-btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1121, '36', 57, '', '36', '', 'Parameshwara', '', '', 'Paramaathma.c@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Akkipet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1122, '36', 57, '', '36', '', 'Yashwanth', '', '', '', '', '', '', '', '9980995334', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar Land mark near - mahalakshmi sweets', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-22', '0000-00-00 00:00:00', '', '', '', ''), (1123, '36', 57, '', '36', '', 'Raghavendra ', '', '', '', '', '', '', '', '9986857894', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri Satelite Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1124, '36', 57, '', '36', '', 'Sangeetha', '', '', '', '', '', '', '', '9739986737', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1125, '36', 57, '', '36', '', 'Sai', '', '', '', '', '', '', '', '7286079857', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1126, '36', 57, '', '36', '', 'Siddharath', '', '', '', '', '', '', '', '8105738158', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1127, '36', 57, '', '36', '', 'Amrit', '', '', 'amritmjadhav24@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1128, '36', 57, '', '36', '', 'Syed', '', '', '', '', '', '', '', '8050307876', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1129, '36', 57, '', '36', '', 'Rehana', '', '', 'rehnafathz@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1130, '36', 57, '', '36', '', 'Hemanth kumar', '', '', '', '', '', '', '', '9731225272', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1131, '36', 57, '', '36', '', 'Manmath gowda', '', '', 'manmathprema@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1132, '36', 57, '', '36', '', 'indradeep', '', '', '', '', '', '', '', '8105133444', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar 7th Phase', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1133, '36', 57, '', '36', '', 'Mohammed', '', '', '', '', '', '', '', '9632873224', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kottigepalya, Nagarbavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1134, '36', 57, '', '36', '', 'Punith', '', '', '', '', '', '', '', '9035915830', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1135, '36', 57, '', '36', '', 'Arunachalam ', '', '', 'arunmio@yahoo.com', '', '', '', '', '9945275901', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Banagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1136, '36', 57, '', '36', '', 'Gurubasaviah ', '', '', 'gnhosmatt@gmail.com', '', '6363545260', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1137, '36', 57, '', '36', '', 'Syed', '', '', '', '', '', '', '', '9886071459', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1138, '36', 57, '', '36', '', 'Shiva', '', '', 'shivashankar551@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1139, '36', 57, '', '36', '', 'Raghu', '', '', '', '', '', '', '', '9972534087', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1140, '36', 57, '', '36', '', 'Shaila', '', '', '', '', '', '', '', '9886823584', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cox Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1141, '36', 57, '', '36', '', 'Syed umar', '', '', 'jagadishiaver@gmail.com', '', '', '', '', '9739769991', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1142, '36', 57, '', '36', '', 'Raju', '', '', '', '', '', '', '', '9986698768', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1143, '36', 57, '', '36', '', 'Amaresh babu', '', '', 'romeoravan2225@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th t block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1144, '36', 57, '', '36', '', 'Jovan', '', '', 'jovan00789@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vittal mallya road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1145, '36', 57, '', '36', '', 'ranjana raju', '', '', 'ranjana@seigroup.in', '', '', '', '', '7406000526', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1146, '36', 57, '', '36', '', 'Manu', '', '', '', '', '', '', '', '8179796769', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Garvebhavipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-23', '0000-00-00 00:00:00', '', '', '', ''), (1147, '36', 57, '', '36', '', 'Harshit', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahalakshmipuram layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1149, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9738821412', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield main road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1150, '36', 57, '', '36', '', 'Ashok kumar', '', '', 'ashokkumaradn@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1151, '36', 57, '', '36', '', 'Ramya', '', '', '', '', '', '', '', '9066464115', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1152, '36', 57, '', '36', '', 'Fathimunnisa', '', '', '', '', '', '', '', '8660037969', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1153, '36', 57, '', '36', '', 'raghavendra', '', '', '', '', '', '', '', '9739903600', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1154, '36', 57, '', '36', '', 'Akash', '', '', '', '', '', '', '', '9731106633', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1155, '36', 57, '', '24', '', 'Ajit singh', '', '', 'ajitsinghajitsingh63@gmail.com', '', '', '', '', '8542804048', '', 'Wed Research', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1156, '36', 57, '', '24', '', 'Balram', '', '', '', '', '', '', '', '8930907582', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1157, '36', 57, '', '36', '', 'Noname', '', '', '', '', '6363734257', '', '', '', '', 'JD', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1158, '36', 57, '', '36', '', 'Akshay', '', '', 'akshaykamath999@gmail.com', '', '', '', '', '7022296356', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Abhaya hospital-wilson garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1159, '36', 57, '', '24', '', 'Govind', '', '', 'govindaraj197412@gmail.com', '', '', '', '', '7667474749', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'India', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1160, '36', 57, '', '36', '', 'praveen', '', '', 'praveenlakshyaprao@gmail.com', '', '', '', '', '9164556789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' yelanaka - near country club', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1161, '36', 57, '', '36', '', 'Harry', '', '', 'harryraj@msn.com', '', '', '', '', '9663299206', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1162, '36', 57, '', '36', '', 'Vignesh', '', '', 'vignesh6409@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Devasandra extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1163, '36', 57, '', '36', '', 'Khan', '', '', 'zabyulla@yahoo.com', '', '', '', '', '9845603616', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1164, '36', 57, '', '36', '', 'Syed', '', '', 'syed_wahid1@yahoo.in', '', '', '', '', '9740000818', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1165, '36', 57, '', '36', '', 'Ragini', '', '', '', '', '', '', '', '8095309359', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1166, '36', 57, '', '36', '', 'Sidannagowda', '', '', '', '', '', '', '', '8050404036', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Edward road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1167, '36', 57, '', '36', '', 'Pramod', '', '', '', '', '', '', '', '9945555813', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1168, '36', 57, '', '36', '', 'Manjunath', '', '', 'manju131k@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1169, '36', 57, '', '36', '', 'Vijayabhaskarreddy', '', '', 'vbreddy449@gmail.com', '', '', '', '', '8497099211', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lalbagh Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1170, '36', 57, '', '36', '', 'ravi', '', '', '', '', '', '', '', '9901447079', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1171, '36', 57, '', '36', '', 'Ranjith', '', '', 'sales@technospacio.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1172, '36', 57, '', '36', '', 'Pooja', '', '', '', '', '', '', '', '8861953803', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1173, '36', 57, '', '24', '', 'Lakshman Sigh', '', '', 'luckybann2397@gmail.com', '', '', '', '', '9001432738', '', 'Wed Research', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1174, '36', 57, '', '36', '', 'Nandar', '', '', 'nandarsingh7733@gemil.com', '', '', '', '', '7733975951', '', 'open source', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1175, '36', 57, '', '24', '', 'Sunil', '', '', 'sunilnath1986@gmail.com', '', '6261557088', '', '', '', '', 'Wed Research', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-24', '0000-00-00 00:00:00', '', '', '', ''), (1176, '36', 57, '', '36', '', 'Sai', '', '', '', '', '', '', '', '7286079857', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1177, '36', 57, '', '36', '', 'Rajesh ', '', '', 'rashi2raj@hotmail.com', '', '', '', '', '9845982542', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1178, '36', 57, '', '36', '', 'Sachin jain ss', '', '', '', '', '', '', '', '8553947153', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1179, '36', 57, '', '36', '', 'Suresh ', '', '', 'sureshbhat40@gmail.com', '', '', '', '', '9901562543', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1180, '36', 57, '', '36', '', 'Lokesh', '', '', '', '', '', '', '', '8553574852', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1181, '36', 57, '', '36', '', 'Kiran', '', '', '', '', '', '', '', '8867337119', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Swamy shivanandapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1182, '36', 57, '', '36', '', 'Abhi', '', '', '', '', '', '', '', '8884133351', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1183, '36', 57, '', '36', '', 'Mohammed akhmal', '', '', 'akhmal4u@gmail.com', '', '', '', '', '9901044667', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kadugondanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1184, '36', 57, '', '36', '', 'Thoufeeq', '', '', '', '', '', '', '', '9663974354', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Achutarya Rd,Pulikeshi Nagar,', 'Bnagalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1185, '36', 57, '', '36', '', 'Kiran', '', '', 'kiranaxa@gmail.com', '', '', '', '', '8618059760', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1186, '36', 57, '', '36', '', 'Subodh sharma', '', '', 'subodhsharma343@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marenahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1187, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8973359338', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1188, '36', 57, '', '36', '', 'Sourav singh', '', '', 'souravs.isme1719@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1189, '36', 57, '', '36', '', 'Tejeshwini', '', '', '', '', '', '', '', '7901006517', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1190, '36', 57, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1191, '36', 57, '', '36', '', 'Shiva ', '', '', '', '', '', '', '', '9620744024', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 5th Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1192, '36', 57, '', '36', '', 'Mohammed ', '', '', 'yunus.designmatrix@gmail.com', '', '', '', '', '9513512358', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1193, '36', 57, '', '36', 'Shree sai Tech', 'Rajashekar', '', '', '', '', '6362420863', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'harsikere - near modhi higher school', 'Bangalore', 'Karantaka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1194, '36', 57, '', '36', '', 'Jithendar ', '', '', '', '', '', '', '', '9900693766', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1195, '36', 57, '', '36', '', 'Innovary technologies', '', '', '', '', '', '', '', '7760857043', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Marenahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1196, '36', 57, '', '36', '', 'Reema', '', '', '', '', '', '', '', '9741533000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Marenahalli', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1197, '36', 57, '', '36', '', 'Ramakrishana', '', '', '', '', '', '', '', '9611005330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1198, '36', 57, '', '36', '', 'Prasanth', '', '', '', '', '', '', '', '9035869999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1199, '36', 57, '', '36', '', 'Sharadha', '', '', '', '', '', '', '', '8553428209', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1200, '36', 57, '', '36', '', 'Pankit', '', '', 'pankil.85@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kasturi nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1201, '36', 57, '', '36', '', 'Sachin', '', '', '', '', '', '', '', '9035022082', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1202, '36', 57, '', '36', '', 'Sourav singh', '', '', 'souravs.isme1719@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnarataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1203, '36', 57, '', '36', '', 'Mahesh', '', '', 'mahesha58@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Race course road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-25', '0000-00-00 00:00:00', '', '', '', ''), (1204, '36', 57, '', '36', '', 'Adarsh', '', '', '', '', '6476469630', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Canada', '', '', 0, 'Canada', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1205, '36', 57, '', '36', '', 'rakesh', '', '', '', '', '', '', '', '8553535605', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1206, '36', 57, '', '36', '', 'Siddhannagowda', '', '', 'siddugbgowda@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1207, '36', 57, '', '36', '', 'Pranav', '', '', '', '', '', '', '', '7406114123', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1208, '36', 57, '', '36', '', 'Ashwini', '', '', '', '', '', '', '', '9686627388', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1209, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8007112048', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1210, '36', 57, '', '36', '', 'Thiru', '', '', 'kmarasu@mail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1211, '36', 57, '', '36', '', 'Puroshatam', '', '', '', '', '', '', '', '9483756088', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sp Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1212, '36', 57, '', '36', '', 'Madhu', '', '', '', '', '', '', '', '8553210501', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1213, '36', 57, '', '36', '', 'Vijay', '', '', 'vijaykrishnadl@gmail.com', '', '', '', '', '9880040134', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1214, '36', 57, '', '36', '', 'Ramesh', '', '', 'rameshn.iyya@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1215, '36', 57, '', '36', '', 'Vatsan', '', '', 'kannet.watson2003@yahoo.co.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ulsoor', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1216, '36', 57, '', '36', '', 'Dc chetan', '', '', 'info@benaka.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Gururaja layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1217, '36', 57, '', '36', '', 'Om prakash', '', '', 'ompvas@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1218, '36', 57, '', '36', '', 'Mahendar kumar', '', '', '', '', '', '', '', '9113207306', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Madivala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1219, '36', 57, '', '36', '', 'Bharath', '', '', 'bharathba@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Brigade road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1220, '36', 57, '', '36', '', 'Ramchandra Acharya', '', '', '', '', '', '', '', '8884478889', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hdfc bank indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1221, '36', 57, '', '36', '', 'Akshay', '', '', ' akshaykamath999@gmail.com', '', '', '', '', '7022296356', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Abhaya hospital-wilson garden', 'Banglaore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1222, '36', 57, '', '36', '', 'Aasim mistry', '', '', 'aasim_m@hotmail.com', '', '', '', '', '9845367636', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1223, '36', 57, '', '36', '', 'yugendra', '', '', '', '', '', '', '', '9886770762', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Padmanabhanagar', 'Bangalore', 'Karnataaka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1224, '36', 57, '', '36', '', 'Mohina ', '', '', '', '', '', '', '', '9740427602', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1225, '36', 57, '', '36', '', 'Chethan', '', '', '', '', '', '', '', '8388868789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1226, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9964012381', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cambridge Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1227, '36', 57, '', '36', '', 'Ganesh', '', '', 'ganeshgunashekaran19@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1228, '36', 57, '', '36', '', 'Narinder', '', '', 'narinder@translineindia.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Shanthala nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1229, '36', 57, '', '36', '', 'Pradeep', '', '', 'pradeep_nrp@yahoo.com', '', '', '', '', '9945607946', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1230, '36', 57, '', '36', '', 'Salman farsi', '', '', '', '', '', '', '', '9742309084', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Basavanagudi', 'Bangalore', 'Kanataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1231, '36', 57, '', '36', '', 'Shourab', '', '', 'saurabh_shukla01@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1232, '36', 57, '', '36', '', 'Swaroop', '', '', '', '', '', '', '', '7975414902', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1233, '36', 57, '', '36', '', 'Priya ', '', '', 'kmpriyagowda@gmail.com', '', '', '', '', '7338554966', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kanakapura Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1234, '36', 57, '', '36', '', 'Yugandarr', '', '', '', '', '6361591155', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1235, '36', 57, '', '36', '', 'sowmya', '', '', 'abimankind1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 8th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1236, '36', 57, '', '36', '', 'jaganath', '', '', 'askjathhe@gmail.com', '', '', '', '', '8217657452', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hennur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1237, '36', 57, '', '36', '', 'Khaleel', '', '', '', '', '6363149935', '', '', '9901311002', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1238, '36', 57, '', '36', '', 'Akshay', '', '', 'akshayj916@gmail.com', '', '', '', '', '7019312054', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hanumantha Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1239, '36', 57, '', '36', '', 'Santosh', '', '', 'a_ganesh7@yahoo.com', '', '', '', '', '9916034734', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1240, '36', 57, '', '36', '', 'maria', '', '', 'deepikamarata@gmail.com', '', '', '', '', '7760855058', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1241, '36', 57, '', '36', '', 'Firdoz', '', '', '', '', '', '', '', '9844027862', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Banashankari 6th stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1242, '36', 57, '', '36', '', 'Mohan Krishna', '', '', '', '', '', '', '', '8309609909', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Murugeshpalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1243, '36', 57, '', '36', '', 'Kishore', '', '', 'kishoresarja99434@gmail.com', '', '', '', '', '8660669638', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1244, '36', 57, '', '36', '', 'Dilipan', '', '', '', '', '', '', '', '9750470102', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1245, '36', 57, '', '36', '', 'shuboda sharma', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Marenahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1247, '36', 57, '', '36', '', 'Deepa', '', '', 'divya_mona20@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1248, '36', 57, '', '36', '', 'Vipul vineta', '', '', 'mailmevipul7@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1249, '36', 57, '', '36', '', 'Dr jaydip mukerji', '', '', 'j_mukerji@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'India', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1250, '36', 57, '', '36', '', 'Shilpa shree', '', '', 'shilpashree206@gmail.com', '', '', '', '', '9606275637', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1251, '36', 57, '', '36', '', 'Achar', '', '', '8722451961manju@gmail.com', '', '', '', '', '8722451961', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1252, '36', 57, '', '36', '', 'sudendra', '', '', 'sudhendra.ks@gmail.com', '', '', '', '', '9845863968', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hanumantha Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1253, '36', 57, '', '36', '', 'Sunil', '', '', 'sunilk2020@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jayanagar 4th t block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-28', '0000-00-00 00:00:00', '', '', '', ''), (1254, '36', 57, '', '36', '', 'Archana', '', '', 'carchanac@gmail.com', '', '', '', '', '9844456687', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1255, '36', 57, '', '36', '', 'Anusha', '', '', 'anusha@intimesol.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1256, '36', 57, '', '36', '', 'Sowmya ', '', '', 'sowmyabasavaraj@gmail.com', '', '', '', '', '8197336990', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1257, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8077778161', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1258, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9738821412', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1259, '36', 57, '', '36', '', 'Vijayashree', '', '', '', '', '', '', '', '9901470743', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1260, '36', 57, '', '36', '', 'ashwath', '', '', '', '', '', '', '', '9481593698', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1261, '36', 57, '', '36', '', 'Girish', '', '', 'girishachar3601@gmail.com', '', '', '', '', '9591556540', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sunkadakatte bustop', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1262, '36', 57, '', '36', '', 'Pooja sp', '', '', 'poojasp2703@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Mysore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1263, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Subbaiyapalya extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1264, '36', 57, '', '36', '', 'Arthik', '', '', '', '', '', '', '', '8277604948', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1265, '36', 57, '', '36', '', 'Vijendra singh', '', '', 'ncprajasthan100@gmail.com', '', '', '', '', '9414265810', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1266, '36', 57, '', '36', '', 'vijay krishna', '', '', 'vijaykrishnadl@gmail.com', '', '', '', '', '9880040134', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1267, '36', 57, '', '36', '', 'Amit', '', '', 'billmyhomegoa@gmail.com', '', '', '', '', '8788492406', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Goa', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1268, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '7760448259', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1269, '36', 57, '', '36', '', 'Gautham', '', '', '', '', '', '', '', '9986009105', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1270, '36', 57, '', '36', '', 'Nupur', '', '', '', '', '', '', '', '9720783454', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1271, '36', 57, '', '36', '', 'Satyanarayan', '', '', '', '', '', '', '', '8762014683', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1272, '36', 57, '', '36', '', 'vandana', '', '', '', '', '', '', '', '9886607763', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1273, '36', 57, '', '36', '', 'Dc chetan', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gururaja layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1274, '36', 57, '', '36', '', 'Omkar', '', '', 'omkarkasbekar@yahoo.co.in', '', '', '', '', '9870400064', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1275, '36', 57, '', '36', '', 'Jyothi', '', '', 'rmujrs@gmail.com', '', '08884244410', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'accenture , mahadevpura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1276, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8618844516', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1277, '36', 57, '', '35', '', 'Ranjith', '', '', 'sales@technospacio.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 1', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1278, '36', 57, '', '36', '', 'Om prakash', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalolre', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1279, '36', 57, '', '36', '', 'Praksh', '', '', 'prakash.hadikere@gmail.com', '', '6362531969', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1280, '36', 57, '', '36', '', 'Salman', '', '', '', '', '', '', '', '9656960000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Freezer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1282, '36', 57, '', '36', '', 'Ragu', '', '', '', '', '', '', '', '8660208053', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1283, '36', 57, '', '36', '', 'Harish', '', '', 'mgghp@yahoo.co.in', '', '', '', '', '9535353830', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-29', '0000-00-00 00:00:00', '', '', '', ''), (1284, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8714126948', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Race course road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1285, '36', 57, '', '36', '', 'Rakesh', '', '', '', '', '', '', '', '9108637109', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'Inida', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1286, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1287, '36', 57, '', '36', '', 'Aman Raj', '', '', '', '', '', '', '', '9955998736', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1288, '36', 57, '', '36', '', 'Mohamed house shariff', '', '', '', '', '', '', '', '8861109803', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1289, '36', 57, '', '36', '', 'Manish', '', '', 'manishdsouza2308@gmail.com', '', '', '', '', '8123129457', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1290, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8884243044', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1291, '36', 57, '', '36', '', 'aditya', '', '', '', '', '', '', '', '9155778250', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore Gpo', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1292, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7976369325', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1293, '36', 57, '', '36', '', 'Vishal', '', '', '', '', '', '', '', '9590686611', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1294, '36', 57, '', '36', '', 'Pradeep', '', '', '', '', '6360635495', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1295, '36', 57, '', '36', '', 'Thrimurthy', '', '', '3murthy.c@gmail.com', '', '', '', '', '8970999439', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1296, '36', 57, '', '36', '', 'Padmaraj', '', '', '', '', '', '', '', '9448179135', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashakari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1297, '36', 57, '', '36', '', 'kathyani', '', '', 'karthikeyan.g@gmail.com', '', '', '', '', '9901231254', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1298, '36', 57, '', '36', '', 'Sowmya', '', '', 'soumyak95@gmail.com', '', '', '', '', '8548837816', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1299, '36', 57, '', '36', '', 'Rajat Baid', '', '', '', '', '', '', '', '9916965663', '', 'Urban Clap', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthi nagar', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1300, '36', 57, '', '36', '', 'srinivas', '', '', 'fcsolutions.com@gmail.com', '', '', '', '', '9986558418', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1301, '36', 57, '', '36', '', 'Murty', '', '', '', '', '', '', '', '9113292478', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1302, '36', 57, '', '36', '', 'Venkatraman', '', '', '', '', '', '', '', '7022702265', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Edward road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1303, '36', 57, '', '36', '', 'Shri hari', '', '', '', '', '', '', '', '9739240596', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dollars Colony', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1304, '36', 57, '', '36', '', 'Ashok', '', '', 'ashokbbantwal@gmail.com', '', '', '', '', '9972919797', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indira nagar 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1305, '36', 57, '', '36', '', 'Lavina', '', '', '', '', '', '', '', '8105571111', 'http://www.celestile.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1306, '36', 57, '', '36', '', 'Parth devani', '', '', '', '', '', '', '', '8530983428', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jc road', 'Bnagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1307, '36', 57, '', '36', '', 'Samir jogi smsidea', '', '', 'sameerjogi1999@gmail.com', '', '', '', '', '7069293111', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1308, '36', 57, '', '36', '', 'Ajay', '', '', 'ajay_apl@yahoo.in', '', '', '', '', '9113588634', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara Nagar', 'bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1309, '36', 57, '', '36', '', 'Madhu', '', '', '', '', '', '', '', '7090988422', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1310, '36', 57, '', '36', '', 'rajgopal', '', '', '', '', '', '', '', '7411627292', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rahmath Nagar', 'Karnataka', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1311, '36', 57, '', '36', '', 'Govind', '', '', 'g.saiassociates@gmail.com', '', '', '', '', '9945939049', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1312, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '8884109428', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1313, '36', 57, '', '36', '', 'Lokesh', '', '', 'lokiweddingplanner@gmail.com', '', '', '', '', '7795594466', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' New Thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1314, '36', 57, '', '36', '', 'Ashraf', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Benson Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1315, '36', 57, '', '36', '', 'Priya', '', '', '', '', '', '', '', '8884445887', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kadubeesanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-30', '0000-00-00 00:00:00', '', '', '', ''), (1316, '36', 57, '', '36', '', 'Swamy', '', '', '', '', '', '', '', '8660860466', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1317, '36', 57, '', '36', '', 'Nithesh', '', '', '', '', '', '', '', '9901264717', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Ring road alanahalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1318, '36', 57, '', '36', '', 'Narendra ', '', '', 'diamond.naren@gmail.com', '', '', '', '', '9900268785', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1319, '36', 57, '', '35', '', 'Shivshankar', '', '', '', '', '', '', '', '7278623519', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Primerose road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1320, '36', 57, '', '36', '', 'Ramakrishna', '', '', '', '', '', '', '', '9611005330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1321, '36', 57, '', '36', '', 'Paramappa', '', '', '', '', '6304903289', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1322, '36', 57, '', '36', '', 'praveen', '', '', '', '', '', '', '', '9449946906', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1323, '36', 57, '', '36', '', 'sachin kumar', '', '', '', '', '', '', '', '9740590245', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1324, '36', 57, '', '36', '', 'Swathi', '', '', 'swathipatel047@gmail.com', '', '', '', '', '7899772015', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1325, '36', 57, '', '36', '', 'Ram shelake', '', '', '', '', '', '', '', '9359220265', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1326, '36', 57, '', '36', '', 'Ashik', '', '', '', '', '', '', '', '9972667714', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar industrial estate', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1328, '36', 57, '', '36', '', 'Singh', '', '', '', '', '', '', '', '9501065551', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1329, '36', 57, '', '', '', 'Ramachandra', '', '', 'ramachandra.sari@gmail.com', '', '', '', '', '9986492135', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosa Road-Naganathapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1330, '36', 57, '', '36', '', 'Mohammaed', '', '', '', '', '', '', '', '7892696470', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Manyatha tech park', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1331, '36', 57, '', '36', '', 'Vishnu', '', '', 'vishnugowda25@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1332, '36', 57, '', '36', '', 'Aashi', '', '', '', '', '', '', '', '7976833560', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Karnataka', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1333, '1', 1, '', '36', '', 'Nalina', '', '', 'pavan_nalini@yahoo.com', '', '', '', '', '7411456738', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brookefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1334, '1', 1, '', '36', '', 'Amersh', '', '', 'animesh.rai@rippleslearning.com', '', '', '', '', '9845283269', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1335, '1', 1, '', '36', '', 'Girish', '', '', '', '', '', '', '', '7022963521', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1336, '1', 1, '', '36', '', 'Ketan', '', '', '', '', '', '', '', '9076008982', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M g road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1337, '1', 1, '', '36', '', 'Devendra', '', '', '', '', '', '', '', '7905586590', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1338, '1', 1, '', '36', '', 'Binuprakash', '', '', 'vinuprakash@yahoo.com', '', '', '', '', '7899748163', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kasturi Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1339, '1', 1, '', '36', '', 'Ranga swamy', '', '', 'ranga99000@gmail.com', '', '', '', '', '9900096796', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1340, '1', 1, '', '36', '', 'Prasanna', '', '', '', '', '', '', '', '9071411146', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1341, '1', 1, '', '36', '', 'Abdul mohsin', '', '', '', '', '', '', '', '7019294721', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dinnur main road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1342, '1', 1, '', '36', '', 'Mamtha', '', '', '', '', '8660585265', '', '', '9844474504', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kamanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-01-31', '0000-00-00 00:00:00', '', '', '', ''), (1343, '36', 57, '', '36', '', 'Abdul basith', '', '', '', '', '', '', '', '9500724706', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1344, '36', 57, '', '36', '', 'Pandith', '', '', '', '', '', '', '', '9739277975', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1345, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '9980751001', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1347, '36', 57, '', '36', '', 'Swargesh', '', '', '', '', '', '', '', '9686966665', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Old Airport Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1348, '36', 57, '', '36', '', 'Nikil', '', '', '', '', '', '', '', '9731558944', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1349, '36', 57, '', '36', '', 'Katti narahari', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 1st stage', 'Banshankari', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1350, '36', 57, '', '36', '', 'Nishanth ', '', '', 'nishanthfx4u@gmail.com', '', '', '', '', '8317477621', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1352, '36', 57, '', '36', '', 'Propic', '', '', 'solutionspropic@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Murugeshpalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1353, '36', 57, '', '36', '', 'Sona', '', '', '', '', '', '', '', '7259987101', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1354, '36', 57, '', '36', '', 'Ramesh', '', '', 'paulrameshkumar@gmail.com', '', '', '', '', '8050528452', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1355, '36', 57, '', '36', '', 'Kiran kumar', '', '', 'kiran.kumar@rushnetworks.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1356, '36', 57, '', '36', '', 'deepu', '', '', '', '', '', '', '', '9902519508', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1357, '36', 57, '', '36', '', 'Jaykumar ', '', '', 'jayakumar4772@yahoo.com', '', '', '', '', '9739400654', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1358, '36', 57, '', '36', '', 'Ashwath', '', '', '', '', '9164469091 ', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mandya', 'Mandya', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1360, '36', 57, '', '36', '', 'siddapa', '', '', '', '', '', '', '', '9972460560', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1361, '36', 57, '', '36', '', 'shiv', '', '', 'kmshivakumar111@gmail.com', '', '', '', '', '9845440639', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1362, '36', 57, '', '36', '', 'Chethan reddy', '', '', '', '', '', '', '', '9113285962', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1363, '36', 57, '', '36', '', 'Suhas', '', '', '', '', '', '', '', '9900157711', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-01', '0000-00-00 00:00:00', '', '', '', ''), (1364, '36', 57, '', '36', '', 'Issac', '', '', 'kenosisfoundation@yahoo.com', '', '', '', '', '9900724842', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1365, '36', 57, '', '36', '', 'Deepak kumar samal', '', '', 'qualitymagnify@gmail.com', '', '', '', '', '9742362009', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1366, '36', 57, '', '36', '', 'Thomas', '', '', 'tomstar.2005@gmail.com', '', '', '', '', '9886370476', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Nandhini Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1367, '36', 57, '', '36', '', 'Ringson', '', '', '', '', '', '', '', '7892622572', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1368, '36', 57, '', '36', '', 'Kumari reena', '', '', 'kumarireena2390@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1369, '36', 57, '', '36', '', 'Venkatesh', '', '', 'venku31@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Postal colony', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1370, '36', 57, '', '36', '', 'Raju', '', '', '', '', '', '', '', '8892794114', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Manjunatha layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1371, '36', 57, '', '36', '', 'Nandhini', '', '', 'nanraj99@gmail.com', '', '', '', '', '9880358408', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1372, '36', 57, '', '36', '', 'Sabiha', '', '', '', '', '', '', '', '9901299629', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1373, '36', 57, '', '36', '', 'Shrayan', '', '', 'suprithkb77@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Belvadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1374, '36', 57, '', '36', '', 'goswamy', '', '', '', '', '', '', '', '9980724251', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Old Airport Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1375, '36', 57, '', '36', '', 'Rajesh', '', '', 'rajesh.das07@in.ibm.com', '', '', '', '', '9886787215', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Padmanabhanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1376, '36', 57, '', '36', '', 'Kalyan ', '', '', 'kalyan_dk@yahoo.com', '', '', '', '', '9980228843', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'C V Raman Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1377, '36', 57, '', '36', '', 'Sadan', '', '', 'sanjukc48@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1378, '36', 57, '', '36', '', 'bramha', '', '', 'brahmaemail@gmail.com', '', '', '', '', '9900000372', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1379, '36', 57, '', '36', '', 'Anji', '', '', '', '', '', '', '', '7892038219', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kaggadasapura Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1380, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9632414482', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1381, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9738821412', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1382, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1384, '36', 57, '', '36', '', 'Nandan', '', '', '', '', '', '', '', '8150880448', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Siddartha Layout', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1385, '36', 57, '', '36', '', 'Kiran kumar', '', '', 'kiran.kumar@rushnetworks.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1386, '36', 57, '', '36', '', 'Mujeeb', '', '', '', '', '', '', '', '9900359787', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1387, '36', 57, '', '36', '', 'Nazeer', '', '', '', '', '', '', '', '9845228173', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1388, '36', 57, '', '36', '', 'Hemant', '', '', '', '', '', '', '', '9108290753', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1389, '36', 57, '', '36', '', 'Manjunath', '', '', 'mla.manju@rediffmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1390, '36', 57, '', '36', '', 'Aman', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 4th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1391, '36', 57, '', '36', '', 'Rehan', '', '', '', '', '', '', '', '8105292758', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1392, '36', 57, '', '36', '', 'Seema', '', '', 'bhomika_12@yahoo.co.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1393, '36', 57, '', '36', '', 'Divya', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1394, '36', 57, '', '36', '', 'Vikas', '', '', 'rashi13@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1395, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '', '', '', '9901547182', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 1st phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1396, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7892039912', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1397, '36', 57, '', '36', '', 'Praveen', '', '', '', '', '', '', '', '8527596234', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1398, '36', 57, '', '36', '', 'Guru', '', '', '', '', '', '', '', '7619131558', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1399, '36', 57, '', '36', '', 'Kiran kumar', '', '', 'kirankumar.redington@gmail.com', '', '', '', '', '9632455177', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sajjapur road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1400, '36', 57, '', '36', '', 'Ramraj', '', '', 'ramrajtj@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1401, '36', 57, '', '36', '', 'Sneha', '', '', '', '', '', '', '', '7899159027', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1402, '36', 57, '', '36', '', 'Abhi', '', '', '', '', '', '', '', '9507764652', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jayanagar 9th block', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1403, '36', 57, '', '36', '', 'Rajath', '', '', 'vsrtravels2014@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1404, '36', 57, '', '36', '', 'Divya', '', '', 'divyaanjan981@gmail.com', '', '', '', '', '8867268641', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1405, '36', 57, '', '36', '', 'Vishwanath', '', '', '', '', '', '', '', '7745077242', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd Stage', 'bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1407, '36', 57, '', '36', '', 'Venkatesh', '', '', '', '', '', '', '', '9880472568', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Venkateshapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1408, '36', 57, '', '36', '', 'Bhavya', '', '', '', '', '', '', '', '9742277022', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1409, '36', 57, '', '36', '', 'Kavitha', '', '', 'kavitha.n.blr@gmail.com', '', '', '', '', '7813033020', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1410, '36', 57, '', '36', '', 'Akshara', '', '', 'aksharaa4444@gmail.com', '', '', '', '', '8110908972', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-04', '0000-00-00 00:00:00', '', '', '', ''), (1411, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '8197357337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1412, '36', 57, '', '36', '', 'Prashanth', '', '', '', '', '', '', '', '8880448925', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1413, '36', 57, '', '36', '', 'Ssd solution davangere', '', '', 'info@appsyntax.com', '', '', '', '', '8904701741', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1414, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8073054712', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1415, '36', 57, '', '36', '', 'Karthik', '', '', '', '', '', '', '', '8496823394', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1416, '36', 57, '', '', '', 'noname', '', '', '', '', '', '', '', '8200170159', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Infantry road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1419, '36', 57, '', '36', '', 'Bharath', '', '', '', '', '', '', '', '9686323361', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1420, '36', 57, '', '36', '', 'Punith', '', '', '', '', '', '', '', '9035915830', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1421, '36', 57, '', '36', '', 'Subbaraja', '', '', '', '', '', '', '', '8660250844', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1422, '36', 57, '', '36', '', 'Nandini', '', '', 'nanraj99@gmail.com', '', '', '', '', '9900042391', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'nagarbavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1423, '36', 57, '', '36', '', 'Deepa', '', '', 'corporatehelpdesk@metamorfs.com', '', '', '', '', '8904504365', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1424, '36', 57, '', '36', '', 'Anand', '', '', 'suresh1991@live.com', '', '', '', '', '8951692318', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1425, '36', 57, '', '36', '', 'Dinesh', '', '', '', '', '', '', '', '9686390563', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Victoria layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1426, '36', 57, '', '36', '', 'User', '', '', '', '', '', '', '', '9051780113', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New gurappanapalya-btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1427, '36', 57, '', '36', '', 'Dhanajay', '', '', '', '', '6261307962', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1428, '36', 57, '', '36', '', 'Nitin', '', '', '', '', '', '', '', '8319104725', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1429, '36', 57, '', '36', '', 'Sandeep', '', '', '', '', '', '', '', '9810886093', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1430, '36', 57, '', '36', '', 'Sachin', '', '', 'sachin1425@gmail.com', '', '', '', '', '9916544322', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1431, '36', 57, '', '36', '', 'Akshayraj ', '', '', 'instadatasolutions@gmail.com', '', '', '', '', '7483560337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1432, '36', 57, '', '36', '', 'Raju', '', '', 'rajukj1988@gmail.com', '', '', '', '', '9886657104', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1433, '36', 57, '', '36', '', 'Swathi', '', '', '', '', '', '', '', '9113618940', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1434, '36', 57, '', '36', '', 'Akhil Guptha', '', '', '', '', '', '', '', '9739426660', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1435, '36', 57, '', '36', '', 'Vijaya kumar mekala', '', '', 'vijjum3@gmail.com', '', '', '', '', '7259124759', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur ', 'bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E - comm - online store (5 Products) - 25K - Executive to meet on 6/2/2019 at 11.00AM ', '', 'ACTIVE', 'LEAD', 0, '2019-02-05', '0000-00-00 00:00:00', '', '', '', ''), (1436, '36', 57, '', '36', '', 'Chandrashekar', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Dodda Bommasandra', 'Karnataka', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1437, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '7019595599', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1438, '36', 57, '', '36', '', 'Fairoz', '', '', '', '', '', '', '', '9945202985', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srk garden-jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1439, '36', 57, '', '36', '', 'Brandsynergi', '', '', '', '', '', '', '', '7022992525', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1440, '36', 57, '', '36', '', 'Mary margaret vincent', '', '', 'margaretoct2015@gmail.com', '', '', '', '', '9880991354', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1441, '36', 57, '', '36', '', 'Noname', '', '', '', '', '6362101556', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1442, '36', 57, '', '36', '', 'Poojamavatkar', '', '', '', '', '', '', '', '8310276745', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1443, '36', 57, '', '36', '', 'Metrofabriction', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tannery Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1444, '36', 57, '', '36', '', 'Shivkumar', '', '', 'shivakumar87@gmail.com', '', '', '', '', '9845125522', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1445, '36', 57, '', '36', '', 'Rohit', '', '', '', '', '', '', '', '9886666299', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hennur Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1446, '36', 57, '', '36', '', 'Sakeena', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1447, '36', 57, '', '36', '', 'Tilak babu', '', '', 'cindrellaindustries25779@gmail.com', '', '', '', '', '9928663666', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1448, '36', 57, '', '36', '', 'Kumar', '', '', 'Info. Visista@gmail.com', '', '', '', '', '9380813583', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakar Nagar - Chairmens Club', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1449, '36', 57, '', '36', '', 'Gupta', '', '', 'nkeyjee@gmail.com', '', '', '', '', '9742594250', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1450, '36', 57, '', '36', '', 'Pradeep', '', '', 'pradipr007@gmail.com', '', '', '', '', '9686554646', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banergatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1451, '36', 57, '', '36', '', 'Ranvir ', '', '', 'ranvirmanmoji@yahoo.co.in', '', '', '', '', '7676117191', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Magadi Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1452, '36', 57, '', '36', '', 'Syed', '', '', 'tous624@gmail.com', '', '', '', '', '9036573034', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1453, '36', 57, '', '36', '', 'Ravi', '', '', '', '', '', '', '', '9972489232', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1454, '36', 57, '', '36', '', 'Muzammil', '', '', '', '', '', '', '', '7406367729', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1455, '36', 57, '', '36', '', 'Adnan', '', '', '', '', '', '', '', '9148650777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1456, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '9980751001', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1457, '36', 57, '', '36', '', 'Kanchan', '', '', '', '', '', '', '', '8296828702', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1458, '36', 57, '', '36', '', 'Ganesh', '', '', '', '', '', '', '', '9008024060', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Garvebhavipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-06', '0000-00-00 00:00:00', '', '', '', ''), (1459, '36', 57, '', '36', '', 'George', '', '', '', '', '', '', '', '9886512335', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1460, '36', 57, '', '36', '', 'Sayantan hansa', '', '', '', '', '', '', '', '7003794560', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1461, '36', 57, '', '36', '', 'Anand guru', '', '', '', '', '', '', '', '8105666000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1462, '36', 57, '', '36', '', 'Nisarga', '', '', '', '', '', '', '', '9449230225', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1463, '36', 57, '', '36', '', 'Dilip', '', '', '', '', '', '', '', '8310586672', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1464, '36', 57, '', '36', '', 'Parth', '', '', 'oraclejobs2018@gmail.com', '', '', '', '', '9624068060', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1465, '36', 57, '', '36', '', 'Sindhu', '', '', 'sindunair201@gmail.com', '', '', '', '', '9611138307', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1466, '36', 57, '', '36', '', 'Sneha', '', '', '', '', '8317442751', '', '', '8317442751', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar - 4th Block ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1467, '36', 57, '', '36', '', 'Lakshmikanth', '', '', '', '', '', '', '', '8618253781', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1468, '36', 57, '', '36', '', 'prabhakar', '', '', 'PPrabhaprabha1@gmail.com', '', '', '', '', '7094566725', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1469, '36', 57, '', '36', '', 'soumya', '', '', 'abimankind1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1471, '36', 57, '', '36', '', 'Pooja ', '', '', '', '', '6361110523', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1472, '36', 57, '', '36', '', 'Bala', '', '', '', '', '', '', '', '9003204292', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Prakash nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1473, '36', 57, '', '36', '', 'Sana sinha', '', '', '', '', '', '', '', '7406647127', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1474, '36', 57, '', '36', '', 'Saurabh singh', '', '', '', '', '', '', '', '8299452630', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1475, '36', 57, '', '36', '', 'Bharathi', '', '', '', '', '', '', '', '8884401107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1476, '36', 57, '', '36', '', 'Akshatha', '', '', 'akshuraj22@gmail.com', '', '', '', '', '9606462715', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1477, '36', 57, '', '36', '', 'Ajay', '', '', 'shetty.raksh99@gmail.com', '', '', '', '', '9739719158', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1478, '36', 57, '', '36', '', 'Ramu', '', '', '', '', '', '', '', '9886317928', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar 3rd block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1479, '36', 57, '', '36', '', 'Jaykumar', '', '', 'jaykumarsr@yahoo.co.in', '', '', '', '', '7619187613', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1480, '36', 57, '', '36', '', 'Bincy', '', '', '', '', '', '', '', '9447033792', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-07', '0000-00-00 00:00:00', '', '', '', ''), (1482, '36', 57, '', '36', '', 'soumya', '', '', '', '', '', '', '', '9741243085', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1483, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8861444393', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1484, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9845245629', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Richmond town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1485, '36', 57, '', '36', '', 'Venkatesh ', '', '', 'mvenkateshipl@gmail.com', '', '', '', '', '9066214913', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1486, '36', 57, '', '36', '', 'Santosh', '', '', 'santosh88@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1487, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '', '', '', '7483018927', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1488, '36', 57, '', '36', '', 'Jagadish', '', '', 'jagadeeshadc65@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1489, '36', 57, '', '36', '', 'Raj', '', '', 'netlabbs@outlook.com', '', '', '', '', '8555925801', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'padmanabanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1491, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9513043466', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1492, '36', 57, '', '36', '', 'Girish ', '', '', '', '', '', '', '', '9972187978', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1493, '36', 57, '', '36', '', 'Nisar', '', '', 'aravind@dotogroup.com', '', '', '', '', '9902218055', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1494, '36', 57, '', '36', '', 'vasu', '', '', 'vasujain@hotmail.com', '', '', '', '', '9964985128', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kasavanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1495, '36', 57, '', '36', 'Base modular Company', 'Ranjith', '', '', '', '', '9880200893', '', '', '9113585211', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1496, '36', 57, '', '36', '', 'Siddesh', '', '', '', '', '', '', '', '9972460560', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'N r layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1497, '36', 57, '', '36', '', 'priti', '', '', 'priyapriti83@gmail.com', '', '', '', '', '9840163627', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'JP nagar 6th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1498, '36', 57, '', '36', '', 'Arun', '', '', '', '', '', '', '', '8884254220', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Anubhav nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1499, '36', 57, '', '36', '', 'Varun', '', '', '', '', '', '', '', '7259941217', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1500, '36', 57, '', '36', '', 'Lakshmi', '', '', 'lakshmi.shan1989@gmail.com', '', '', '', '', '8147346313', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1501, '36', 57, '', '36', '', 'Karthik', '', '', '', '', '', '', '', '7338141337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1502, '36', 57, '', '36', '', 'Poomanikandan', '', '', '', '', '', '', '', '8072714543', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-08', '0000-00-00 00:00:00', '', '', '', ''), (1503, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9916998681', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar 7th Phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1504, '36', 57, '', '36', '', 'Nishant sheth', '', '', 'shethnc@yahoo.com', '', '', '', '', '8879418581', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1505, '36', 57, '', '36', '', 'Mythra', '', '', 'mythrak@yahoo.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1506, '36', 57, '', '36', '', 'Vineeth', '', '', '', '', '', '', '', '9985766346', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1507, '36', 57, '', '36', '', 'Abhay jaiswal', '', '', '', '', '6387650063', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 6', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1508, '36', 57, '', '36', '', 'Sikander chauhan', '', '', '', '', '6393585850', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1509, '36', 57, '', '36', '', 'Guru', '', '', '', '', '', '', '', '9901628692', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'White field', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1510, '36', 57, '', '36', '', 'Yuvaraj gowda', '', '', '', '', '', '', '', '9080036746', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1511, '36', 57, '', '36', '', 'Pravin patel', '', '', 'hrmdwebinfo@gmail.com', '', '', '', '', '9228745295', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1512, '36', 57, '', '36', '', 'Prasanth', '', '', '', '', '', '', '', '9228745295', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1513, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9739855509', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brigade Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1514, '36', 57, '', '36', '', 'kiran bhatt', '', '', '', '', '', '', '', '9731718795', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1515, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9952112650', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1516, '36', 57, '', '36', '', 'Rekha', '', '', 'rekhaerashi3@gmail.com', '', '', '', '', '9243971919', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1517, '36', 57, '', '36', '', 'Nitin', '', '', 'nitinnabacca60@gmail.com', '', '', '', '', '9113929231', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sulthan palya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1518, '36', 57, '', '36', '', 'Vikash kumar', '', '', 'abhijeet@graphichaat.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 8th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1519, '36', 57, '', '36', '', 'Sini', '', '', 'sinibabyanothy@gmail.com', '', '', '', '', '7349210822', '', 'JD', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta Road - Meenakshi Temple', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1520, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9916302850', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'banashakari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-09', '0000-00-00 00:00:00', '', '', '', ''), (1521, '36', 57, '', '36', '', 'Sohail', '', '', '', '', '', '', '', '7010995941', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamraj Pete', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1522, '36', 57, '', '36', '', 'Vikaash', '', '', '', '', '', '', '', '7395990773', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Ambalipura - Sajjapura road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1523, '36', 57, '', '36', '', 'Bhagya ', '', '', '', '', '', '', '', '8147286817', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1524, '36', 57, '', '36', '', 'Calypso salon and spa', '', '', '', '', '6364463333', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1525, '36', 57, '', '36', '', 'Shiva', '', '', '', '', '', '', '', '7899477741', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1526, '36', 57, '', '36', '', 'Shafique mohammed', '', '', '', '', '', '', '', '9739359494', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brindavan nagar sadduguntepalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1527, '36', 57, '', '36', '', 'Anoop', '', '', '', '', '', '', '', '8792670419', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kamalanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1528, '36', 57, '', '36', '', 'Mohammed', '', '', '', '', '', '', '', '9916777706', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1529, '36', 57, '', '36', '', 'Madan', '', '', '', '', '', '', '', '9591792602', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1530, '36', 57, '', '36', '', 'Ashwin ', '', '', 'ashwin.cool1995@gmail.com', '', '', '', '', '9620670036', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1531, '36', 57, '', '36', '', 'Naveen ', '', '', 'naveenjoy.j@gmail.com', '', '', '', '', '9591384473', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1532, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8296828702', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shivaji nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1533, '36', 57, '', '36', '', 'Shivaji', '', '', '', '', '', '', '', '7337331212', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1534, '36', 57, '', '36', '', 'Harish Kumar', '', '', '', '', '', '', '', '9629009410', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1535, '36', 57, '', '36', '', 'Prasad ', '', '', '', '', '', '', '', '8971916083', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srinivasa Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1536, '36', 57, '', '36', '', 'shashadir', '', '', 'info@accorengg.com', '', '', '', '', '9900477861', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1537, '36', 57, '', '36', '', 'Sameertejaswini', '', '', 'ppoison_u@yahoo.com', '', '9741407730', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalaore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1538, '36', 57, '', '36', '', 'Pavan', '', '', '', '', '6362899335', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1540, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8892011328', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Benson town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1541, '36', 57, '', '36', '', 'Venkat', '', '', 'sales@illumegeneindia.com', '', '', '', '', '9901231711', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashakari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1542, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '9916777706', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rv Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1543, '36', 57, '', '36', '', 'Malliga', '', '', '', '', '', '', '', '9952320363', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1544, '36', 57, '', '36', '', 'Sagar', '', '', 'karnatakaone@housingsociety.com', '', '', '', '', '9916906881', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1545, '36', 57, '', '36', '', 'Winayaan', '', '', '', '', '', '', '', '8546990743', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1546, '36', 57, '', '36', '', 'Saroj', '', '', '', '', '', '', '', '8884712394', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1547, '36', 57, '', '36', '', 'Raju', '', '', 'vjain71189@gmail.com', '', '', '', '', '9739267233', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1548, '36', 57, '', '36', '', 'Salma', '', '', '', '', '', '', '', '9590664707', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt nagar', '', 'Karnataka', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1549, '36', 57, '', '36', '', 'Sathya', '', '', '', '', '', '', '', '7904668197', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-11', '0000-00-00 00:00:00', '', '', '', ''), (1550, '36', 57, '', '36', '', 'Muniraju', '', '', 'munirajcnd@gmail.com', '', '', '', '', '8123766812', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1551, '36', 57, '', '36', '', 'Brandsynergi', '', '', 'adityamudugal@hotmail.com', '', '', '', '', '7022992525', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1552, '36', 57, '', '36', '', 'Ashritha', '', '', '', '', '', '', '', '9972241117', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1553, '36', 57, '', '36', '', 'Harvinder singh', '', '', '', '', '', '', '', '9779176000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1554, '36', 57, '', '36', '', 'Anil', '', '', 'anil.inoesis@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1555, '36', 57, '', '36', '', 'Sana sinha', '', '', '', '', '', '', '', '7406647127', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M g road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1556, '36', 57, '', '36', '', 'Nikhil rao', '', '', 'raonaveennani8095@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 2', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1557, '36', 57, '', '36', '', 'Sridhar', '', '', 'ars@life.in', '', '', '', '', '9945967789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1558, '36', 57, '', '36', '', 'Arthik', '', '', '', '', '', '', '', '8277604948', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ns palya-btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1560, '36', 57, '', '36', '', 'Raj', '', '', '', '', '', '', '', '7903822403', '', 'JD', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1561, '36', 57, '', '36', '', 'davis', '', '', 'davismoses@rediffmail.com', '', '', '', '', '9886044652', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1562, '36', 57, '', '36', '', 'Sdgdhfj', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1563, '36', 57, '', '36', '', 'Smitha', '', '', 'smitha_shetty81@rediffmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1564, '36', 57, '', '36', '', 'Phippesh', '', '', 'phpu141@gmail.com', '', '', '', '', '9449939369', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr Layout , 4th main opp Bhima jewellery', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1565, '36', 57, '', '36', '', 'Manisha', '', '', '', '', '', '', '', '7087351467', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1566, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7760052078', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Mysore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1567, '36', 57, '', '36', '', 'Krishna', '', '', 'krishnahmkrishna@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-12', '0000-00-00 00:00:00', '', '', '', ''), (1568, '36', 57, '', '36', '', 'Zaheesh', '', '', 'zaheesh@gmail.com', '', '', '', '', '9845001214', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1569, '36', 57, '', '36', '', 'Kumar ', '', '', 'sunilsdsouza@hotmail.com', '', '', '', '', '9886604999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Arekere Gate', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1570, '36', 57, '', '36', '', 'Syed', '', '', '', '', '', '', '', '9886770006', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 4th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1572, '36', 57, '', '36', '', 'Bharath', '', '', ' bharathsinghdeath@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jp nagar 1st phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1573, '36', 57, '', '36', '', 'Pawan', '', '', 'pk18975@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1574, '36', 57, '', '36', '', 'Asim', '', '', '', '', '', '', '', '9845367636', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1575, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1576, '36', 57, '', '36', '', 'Santosh', '', '', 'santhosha@iffind.com', '', '', '', '', '7337716603', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kalyan Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1577, '36', 57, '', '36', '', 'Shashi', '', '', 'bsp.shashi@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1578, '36', 57, '', '36', '', 'Manjunath', '', '', ' mla.manju@rediffmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1579, '36', 57, '', '36', '', 'Noname', '', '', '', '', '6381452852', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1580, '36', 57, '', '36', '', 'Ajith', '', '', 'ajithanandh2192@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1581, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9845891955', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1582, '36', 57, '', '36', '', 'Sana sinha', '', '', '', '', '', '', '', '7406647127', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1583, '36', 57, '', '36', '', 'Shruthi', '', '', 'zenithtech3@gmail.com', '', '', '', '', '9880484466', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kegeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1584, '36', 57, '', '36', '', 'Sandhya raghu', '', '', 'raghuram471@yahoo.com', '', '', '', '', '9449711662', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1585, '36', 57, '', '36', '', 'Rahul', '', '', 'durgavegstore@gmail.com', '', '', '', '', '7829999206', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1586, '36', 57, '', '36', '', 'Mahesh', '', '', 'varshagroups999@gmail.com', '', '', '', '', '8088811988', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1587, '36', 57, '', '36', '', 'Bhavani', '', '', 'bhavanicn@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1588, '36', 57, '', '36', '', 'Bhumik', '', '', 'ultimatevision.apps@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1589, '36', 57, '', '36', '', 'Maharaj', '', '', '', '', '', '', '', '9844237000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramurthy Nagr', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1590, '36', 57, '', '36', '', 'Ram', '', '', '', '', '', '', '', '8296702377', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1591, '36', 57, '', '36', '', 'Rupesh', '', '', '', '', '', '', '', '9694431484', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 8th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1592, '36', 57, '', '36', '', 'Bharath', '', '', '', '', '', '', '', '9980934430', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1593, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '', '', '', '9966802481', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1594, '36', 57, '', '36', '', 'Amith', '', '', 'amithsing@sscrt.co.in', '', '', '', '', '8073157989', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1595, '36', 57, '', '36', '', 'Aman', '', '', '', '', '', '', '', '9549725493', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1596, '36', 57, '', '36', '', 'Bhumik', '', '', 'ultimatevision.apps@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1597, '36', 57, '', '36', '', 'Mallik', '', '', 'mfdi778866@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 6th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1598, '36', 57, '', '36', '', 'Rekha', '', '', 'rekharashi3@gmail.com', '', '', '', '', '9663133527', 'http://www.unitedcapitalclub.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 1st Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-13', '0000-00-00 00:00:00', '', '', '', ''), (1599, '36', 57, '', '36', '', 'Zeinb', '', '', '', '', '', '', '', '8217803081', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta-Gottigere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1600, '36', 57, '', '36', '', 'Adithya', '', '', 'adityajain1294@gmail.com', '', '', '', '', '8123324998', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahadevpura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1601, '36', 57, '', '36', '', 'Ayina patil', '', '', '', '', '', '', '', '9620336646', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1602, '36', 57, '', '36', '', 'Chandra', '', '', 'chandr.ess.mohan@gmail.com', '', '', '', '', '7981105397', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1603, '36', 57, '', '36', '', 'Muthuraj', '', '', '', '', '', '', '', '9449266336', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarjpete', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1604, '36', 57, '', '36', '', 'Venkatesh', '', '', '', '', '', '', '', '9482444999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mangammanapalya-bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1605, '36', 57, '', '36', '', 'Mohd kamran', '', '', '', '', '', '', '', '8747998592', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jc road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1606, '36', 57, '', '36', '', 'Raju', '', '', 'mhgems19@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1607, '36', 57, '', '36', '', 'Anjali', '', '', '', '', '', '', '', '8527524188', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1608, '36', 57, '', '36', '', 'Sayima', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1609, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8884433032', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadananda nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1610, '36', 57, '', '36', '', 'Ajay', '', '', 'ajay_apl@yahoo.in', '', '9113588634', '', '', '9113588634', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1611, '36', 57, '', '36', '', 'Meenakshi Rawath', '', '', '', '', '', '', '', '9799217960', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1612, '36', 57, '', '36', '', 'Nilesh', '', '', 'nileshgholkar@gmail.com', '', '', '', '', '9739979285', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield - madevpura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1613, '36', 57, '', '36', '', 'Akshay', '', '', '', '', '', '', '', '8951082535', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' M g road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1614, '36', 57, '', '36', '', 'Prabhu', '', '', '', '', '', '', '', '8951721760', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1615, '36', 57, '', '36', '', 'Mahesh', '', '', '', '', '', '', '', '9513043466', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1616, '36', 57, '', '36', '', 'Murali', '', '', 'murali.krish@yahoo.co.in', '', '', '', '', '9611200200', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1617, '36', 57, '', '36', '', 'Kantharaju', '', '', 'kantha.ekalavya@gmail.com', '', '', '', '', '8660242921', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Icici bank-jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1618, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7411164398', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1619, '36', 57, '', '36', '', 'soumya', '', '', '', '', '', '', '', '9471243085', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1620, '36', 57, '', '36', '', 'Hemanth das', '', '', '', '', '', '', '', '7411457485', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' C v raman nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1621, '36', 57, '', '36', '', 'Sathya ', '', '', 'sathya.123.veer@gmail.com', '', '', '', '', '8453899451', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay Nagar near bradrapadi big bazar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1622, '36', 57, '', '36', '', 'Shivani', '', '', 'shivani@gmail.com', '', '', '', '', '8277202074', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-14', '0000-00-00 00:00:00', '', '', '', ''), (1623, '36', 57, '', '36', '', 'Veena', '', '', 'veenamandali@yahoo.com', '', '', '', '', '9845420989', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar - 6th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1624, '36', 57, '', '36', '', 'Anthurose', '', '', 'rosek@alchmi.com', '', '8217575064', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ganganagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1625, '36', 57, '', '36', '', 'Syed jawad', '', '', '', '', '', '', '', '9606517859', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Palace guttahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1626, '36', 57, '', '36', '', 'Honey', '', '', '', '', '', '', '', '8222096229', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1628, '36', 57, '', '36', '', 'Mithun', '', '', 'mithunjn8@gmail.com', '', '', '', '', '9902358625', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1629, '36', 57, '', '36', '', 'Santosh', '', '', 'santhoshsp246@gmail.com', '', '', '', '', '9845231667', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1630, '36', 57, '', '36', '', 'Anudershan', '', '', '', '', '', '', '', '9380277708', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1631, '36', 57, '', '36', '', 'Mahendra', '', '', 'INFO@NISSANTECNOLOGIES.COM', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1632, '36', 57, '', '36', '', 'Winayaan', '', '', '', '', '', '', '', '8546990743', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1633, '36', 57, '', '36', '', 'Ashok', '', '', 'achu.rachu2211@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 6th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1634, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '9739445311', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1635, '36', 57, '', '36', '', 'Kulamani rout', '', '', '', '', '', '', '', '8660732490', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1636, '36', 57, '', '36', '', 'Sunitha arvind', '', '', '', '', '', '', '', '7045193380', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1637, '36', 57, '', '36', '', 'Ravi', '', '', '', '', '', '', '', '9828178666', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1638, '36', 57, '', '36', '', 'Shikhar', '', '', 'bb17aug@gmail.com', '', '', '', '', '9663331880', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1639, '36', 57, '', '36', '', 'Pranav ', '', '', 'pranavtiwary@gmail.com', '', '', '', '', '7975750256', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1640, '36', 57, '', '20', '', 'Swansilk Pvt Ltd', '', '', 'navin@swansilk.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1641, '36', 57, '', '20', '', 'DecoTextil Pvt Ltd', '', '', 'salestextiles@com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-15', '0000-00-00 00:00:00', '', '', '', ''), (1643, '36', 57, '', '36', '', 'Farooq ', '', '', 'sfaroq201@gmail.com', '', '', '', '', '8722590909', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Madivala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1644, '36', 57, '', '36', '', 'Nandhakumar', '', '', 'dreamhome940@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1645, '36', 57, '', '36', '', 'Punithkuamr', '', '', 'punith.shivanada.12@gmail.com', '', '', '', '', '7406808342', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1646, '36', 57, '', '36', '', 'Akshay kumar', '', '', 'akshyakumar338@yahoo.com', '', '', '', '', '9538608843', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dooravani nagar', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1647, '36', 57, '', '36', '', 'John', '', '', 'jk.infantinteriors@gmail.com', '', '', '', '', '9845209211', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1648, '36', 57, '', '36', '', 'Suhfeusyei', '', '', '', '', '', '', '', '9538424926', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1649, '36', 57, '', '36', '', 'Naren', '', '', '', '', '', '', '', '9629009410', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1650, '36', 57, '', '36', '', 'Ankit kumar', '', '', '', '', '', '', '', '7358576509', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1651, '36', 57, '', '36', '', 'Shanth kumar', '', '', 'sbitmysore@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1652, '36', 57, '', '36', '', 'Manoj', '', '', 'manoj.yadav.m94@gmail.com', '', '', '', '', '8147381949', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1653, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9741960130', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1654, '36', 57, '', '36', '', 'mohsin', '', '', 'anmed.mohin01@gmail.com', '', '', '', '', '8310278930', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1655, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9845891955', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyapeeta circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1656, '36', 57, '', '36', '', 'Vijay', '', '', '', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddakannelli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1657, '36', 57, '', '36', '', 'Prashanth ', '', '', '', '', '', '', '', '9844550343', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kuvempunagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1658, '36', 57, '', '36', '', 'Shashank ', '', '', 'seraphim312001@gmail.com', '', '', '', '', '9980513208', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1659, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '7617410556', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1660, '36', 57, '', '36', '', 'Lokesh', '', '', '', '', '', '', '', '9558068002', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1661, '36', 57, '', '36', '', 'Sushma', '', '', 'dsushma748@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1662, '36', 57, '', '36', '', 'Vinay', '', '', 'vinay0606@gmail.com', '', '', '', '', '9945071098', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1663, '36', 57, '', '36', '', 'Ramchandar', '', '', '', '', '', '', '', '7975043248', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kamakshipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1664, '36', 57, '', '36', '', 'Mohammed yusuf', '', '', 'stocktrade50@gmail.com', '', '', '', '', '7892070881', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1665, '36', 57, '', '36', '', 'Jacob', '', '', '', '', '8040974068', '', '', '9448717222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1666, '36', 57, '', '36', '', 'Prachi', '', '', 'prachijainank21@gmail.com', '', '', '', '', '7055064381', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1667, '36', 57, '', '36', '', 'Jagan', '', '', 'jagan14gee@gmail.com', '', '', '', '', '9945382213', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1668, '36', 57, '', '36', '', 'Ajith anandh', '', '', ' ajithanandh2192@gmail.com', '', '', '', '', '7418601299', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1669, '36', 57, '', '36', '', 'Shafique mohammed', '', '', '', '', '', '', '', '9739359494', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1670, '36', 57, '', '36', '', 'Gandhi ', '', '', 'sunkavalli.gandhi@gmail.com', '', '', '', '', '8197418296', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RV clg - JP Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1671, '36', 57, '', '36', '', 'Arun', '', '', '', '', '', '', '', '8610659643', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Chennai', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1672, '36', 57, '', '36', '', 'Shyam', '', '', 'syamot@gmail.com', '', '', '', '', '9686988368', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1673, '36', 57, '', '36', '', 'Manuj', '', '', 'ramanujds9@gmail.com', '', '', '', '', '7829199820', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1675, '36', 57, '', '36', '', 'Shriranjini', '', '', '', '', '', '', '', '8971635399', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1677, '36', 57, '', '36', '', 'Amrutha', '', '', '', '', '', '', '', '7019099318', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1678, '36', 57, '', '36', '', 'Punith', '', '', '', '', '', '', '', '9035915830', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mysore Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1679, '36', 57, '', '36', '', 'Krishna', '', '', 'surihuryascreens@gmail.com', '', '', '', '', '9886863330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1685, '36', 57, '', '36', '', 'Saba', '', '', '', '', '', '', '', '9886356353', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1686, '36', 57, '', '36', '', 'Arvind', '', '', 'arvindkashyapa@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1687, '36', 57, '', '36', '', 'Noname', '', '', '', '', ' 6364439902', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1688, '36', 57, '', '36', '', 'Abhijit', '', '', 'bhjtrath@gmail.com', '', '', '', '', '9937079955', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1689, '36', 57, '', '36', '', 'Appa eco equiipments', '', '', 'appa.eco@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Babusapalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1691, '36', 57, '', '36', '', 'Revan', '', '', 'revanhj1993@gmail.com', '', '', '', '', '7353400847', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 2nd block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1692, '36', 57, '', '36', '', 'Shruthi', '', '', '', '', '', '', '', '9844307748', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1693, '36', 57, '', '36', '', 'Vijay', '', '', 'vijay_8436@yahoo.in', '', '9844558436', '', '', '8040977520', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'VijayNagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-18', '0000-00-00 00:00:00', '', '', '', ''), (1694, '36', 57, '', '36', '', 'Jagriti', '', '', 'jagrati.agrawal@gmail.com', '', '', '', '', '9899601103', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1695, '36', 57, '', '36', '', 'Chiranjit', '', '', '', '', '', '', '', '9382160643', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1697, '36', 57, '', '36', '', 'Kiran', '', '', 'kiransm26@gmail.com', '', '', '', '', '9844755448', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar, Atrium Hotel', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1698, '36', 57, '', '36', '', 'Noname', '', '', 'harsh19996@gmail.com', '', '', '', '', '8095601476', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1699, '36', 57, '', '36', '', 'Harsha', '', '', '', '', '', '', '', '7996091767', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1700, '36', 57, '', '36', '', 'Deepa', '', '', 'vlsitraining.india@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1701, '36', 57, '', '36', '', 'Rishi', '', '', '', '', '', '', '', '8660818019', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1702, '36', 57, '', '36', '', 'Hithesh', '', '', '', '', '', '', '', '9676568020', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1703, '36', 57, '', '36', '', 'Charan', '', '', '', '', '', '', '', '9036266025', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1704, '36', 57, '', '36', '', 'Nidhi', '', '', '', '', '', '', '', '9632412023', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1705, '36', 57, '', '36', '', 'Radhika srikanth', '', '', 'radhikakulkarni397@gmail.com', '', '', '', '', '7829463464', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1706, '36', 57, '', '36', '', 'Manju', '', '', '', '', '', '', '', '9483743772', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1707, '36', 57, '', '36', '', 'Dhanjay', '', '', '', '', '', '', '', '9980865550', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1708, '36', 57, '', '36', '', 'Surya', '', '', 'suryagdv@gmail.com', '', '', '', '', '8880886622', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1709, '36', 57, '', '36', '', 'Shobha', '', '', '', '', '', '', '', '8296834323', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1710, '36', 57, '', '36', '', 'Praveen', '', '', '', '', '', '', '', '9591864307', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1711, '36', 57, '', '36', '', 'Rashmi', '', '', 'rajinin2@gmail.com', '', '', '', '', '7619430353', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1712, '36', 57, '', '36', '', 'Shareef', '', '', 'sdm082016@gmail.com', '', '', '', '', '8147272101', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangaloe', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1713, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7892249674', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1714, '36', 57, '', '36', '', 'Sarun', '', '', 'sarun@jobsterritory.com', '', '', '', '', '9686116232', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1715, '36', 57, '', '36', '', 'Sunitha arvind', '', '', '', '', '', '', '', '7045193380', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 1st stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1716, '36', 57, '', '36', '', 'Nithya', '', '', 'nithya@atnetindia.net', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Palace guttahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1717, '36', 57, '', '36', '', 'Sindu', '', '', 'sindurk13@gmail.com', '', '', '', '', '9092963324', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Chennai', 'Tamil Nadu', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-19', '0000-00-00 00:00:00', '', '', '', ''), (1718, '36', 57, '', '36', '', 'Ranjan', '', '', '', '', '', '', '', '7903694641', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1719, '36', 57, '', '36', '', 'Rahul', '', '', '', '', '', '', '', '8927963783', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1720, '36', 57, '', '36', '', 'Arvind', '', '', 'arvindkashyapa@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1721, '36', 57, '', '36', '', 'Venkatesh', '', '', '', '', '', '', '', '9591111959', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1722, '36', 57, '', '36', '', 'Rajkumar', '', '', 'rajkumarsharma692@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar industrial estate', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1723, '36', 57, '', '36', '', 'Sitramyadav ', '', '', 'surambom@gmail.com', '', '', '', '', '9740072200', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'SAP White field', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1725, '36', 57, '', '36', '', 'Niranjan ', '', '', '', '', '', '', '', '9632858099', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1726, '36', 57, '', '36', '', 'Nandu', '', '', '', '', '9742023454', '', '', '9742023454', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1727, '36', 57, '', '36', '', 'Ahmed khan', '', '', '', '', '', '', '', '9571886021', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'St thomas town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1728, '36', 57, '', '36', '', 'Noname', '', '', '', '', '6364439902', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Pinya 2nd stage - yegnalli cross', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1729, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9779349074', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1730, '36', 57, '', '36', '', 'Rishabh chaudhary', '', '', '', '', '', '', '', '9910994360', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahadevapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1731, '36', 57, '', '36', '', 'Das', '', '', '', '', '', '', '', '9717763310', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1732, '36', 57, '', '36', '', 'Shivendra tiwari', '', '', 'shiventiwari@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1733, '36', 57, '', '36', '', 'Leo', '', '', '', '', '', '', '', '7411068792', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1734, '36', 57, '', '36', '', 'Lio fanzia', '', '', '', '', '', '', '', '9442908948', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shivaji nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1735, '36', 57, '', '36', '', 'Priyanka', '', '', '', '', '', '', '', '9900037985', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1736, '36', 57, '', '36', '', 'Darshan ', '', '', '', '', '', '', '', '8088660585', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Austin Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1737, '36', 57, '', '36', '', 'Santosh', '', '', 'santhuyg@gmail.com', '', '', '', '', '9945212726', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1738, '36', 57, '', '36', '', 'Jyothi ', '', '', 'jyotiximb@gmail.com', '', '', '', '', '8296640908', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1739, '36', 57, '', '36', '', 'Deepak', '', '', '', '', '', '', '', '9739445311', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1740, '36', 57, '', '36', '', 'Lokesh', '', '', 'sureshkn.4242@gmail.com', '', '', '', '', '9900373727', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1741, '36', 57, '', '20', '', 'Nelivigi Dental Clinic', '', '', 'nelivigidentalclinic@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'No. 450/435/10, Infront Of Vijaya Bank Opp. Bangalore Central Mall, ORR Bellandur Circle, Bengaluru', '', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-20', '0000-00-00 00:00:00', '', '', '', ''), (1742, '36', 57, '', '36', '', 'Jayjeeth ', '', '', 'jijeethsports@gmail.com', '', '', '', '', '7411011789', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1743, '36', 57, '', '36', '', 'Amudinkar', '', '', 'ammumohandas@gmail.com', '', '', '', '', '7675008489', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1744, '36', 57, '', '36', '', 'Sahana', '', '', '', '', '', '', '', '9986112695', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'J p nagar', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1745, '36', 57, '', '36', '', 'Kiran', '', '', 'kirankn.kn1@gmail.com', '', '', '', '', '9448244360', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1747, '36', 57, '', '36', '', 'Umesh', '', '', '', '', '', '', '', '9964437837', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1748, '36', 57, '', '36', '', 'Sachhi', '', '', '', '', '', '', '', '9535865691', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M g road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1749, '36', 57, '', '36', '', 'Ganesh', '', '', '', '', '', '', '', '9663413051', '', 'Advertisement', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1750, '36', 57, '', '36', '', 'Nalanda', '', '', 'nalanda17@gmail.com', '', '', '', '', '9964863015', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahalakshmipuram layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1751, '36', 57, '', '36', '', 'Akhila', '', '', 'akila@bluebellengineering.com', '', '', '', '', '8050889934', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1752, '36', 57, '', '36', '', 'Namratha', '', '', '', '', '', '', '', '7338445808', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M g road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1753, '36', 57, '', '36', '', 'Syed', '', '', 'mudassardce@gmail.com', '', '', '', '', '9900993374', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1754, '36', 57, '', '36', '', 'ashok', '', '', '', '', '', '', '', '8050328034', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1755, '36', 57, '', '36', '', 'Ranjitha', '', '', '', '', '', '', '', '9535199217', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1756, '36', 57, '', '36', '', 'Arvind', '', '', 'arvindcn@gmail.com', '', '', '', '', '9901060105', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1757, '36', 57, '', '36', '', 'Chaitra', '', '', 'msshuchifoods@gmail.com', '', '', '', '', '7483582792', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1758, '36', 57, '', '36', '', 'Pradeep balachandran', '', '', '', '', '', '', '', '9739244296', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1759, '36', 57, '', '36', '', 'Navyasree', '', '', 'navya.sk2819@gmail.com', '', '', '', '', '8904011775', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1760, '36', 57, '', '36', '', 'Raju', '', '', '', '', '', '', '', '7676212970', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1762, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7760583179', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-21', '0000-00-00 00:00:00', '', '', '', ''), (1763, '36', 57, '', '36', '', 'Raghu', '', '', 'srivinayakaco205@gmail.com', '', '', '', '', '9880201011', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Thyagaraja Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1765, '36', 57, '', '36', '', 'Mohan', '', '', 'sariceasat123@gmail.com', '', '', '', '', '7259823360', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1768, '36', 57, '', '36', '', 'Kiran', '', '', 'ranjit.rrr@gmail.com', '', '', '', '', '8884588898', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1769, '36', 57, '', '36', '', 'Anil', '', '', 'anilkumarmc1212@gmail.com', '', '', '', '', '8105521291', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 2nd block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1770, '36', 57, '', '36', '', 'Heena maroria', '', '', 'heena@niveshglobal.com', '', '', '', '', '8285488390', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1771, '36', 57, '', '36', '', 'Swathi', '', '', '', '', '', '', '', '8197587528', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1772, '36', 57, '', '36', '', 'Manjunath', '', '', 'manjunathjs@yahoo.in', '', '', '', '', '9986460502', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1773, '36', 57, '', '36', '', 'harihar bhat', '', '', 'hariharbhat@gmail.com', '', '', '', '', '9945004681', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1774, '36', 57, '', '36', '', 'Swathi ', '', '', '', '', '', '', '', '7022159240', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1775, '36', 57, '', '36', '', 'Murali', '', '', 'murali_k115@yahoo.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hunsur road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1776, '36', 57, '', '36', '', 'Anji', '', '', 'anjiapr54@gmail.com', '', '', '', '', '9742616364', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kasturi Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1778, '36', 57, '', '36', '', 'Ragavendra', '', '', '', '', '', '', '', '9591423924', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rajajinagar near Kuvempu metro station', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1779, '36', 57, '', '36', '', 'Raghu', '', '', '', '', '', '', '', '9008462222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1780, '36', 57, '', '36', '', 'Challa kali prasad', '', '', 'kpchalla@gmail.com', '', '', '', '', '9535144806', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Dr shivaram karanth nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-22', '0000-00-00 00:00:00', '', '', '', ''), (1781, '36', 57, '', '36', '', 'Laxman shetty', '', '', '', '', '', '', '', '8496823394', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Airport main road-domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1782, '36', 57, '', '36', '', 'Pradeep', '', '', 'pradeep840@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Airport main road-domlur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1783, '36', 57, '', '36', '', 'Kishore', '', '', 'contactmekishore.k@gmail.com', '', '', '', '', '7899395913', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1784, '36', 57, '', '36', '', 'Prathap ', '', '', 'prathapkrishna948@gmail.com', '', '', '', '', '8884673736', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1785, '36', 57, '', '36', '', 'Abhilash', '', '', '', '', '', '', '', '7349754162', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'JayNagar 4th T Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1786, '36', 57, '', '36', '', 'Vikaash', '', '', '', '', '', '', '', '7395990773', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sajapura mian road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1787, '36', 57, '', '36', '', 'Kiran giri', '', '', 'kirangiri302@gmail.com', '', '9020990004 ', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1788, '36', 57, '', '36', '', 'Athiq ', '', '', '', '', '8025214488', '', '', '9845292729', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hegde Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1789, '36', 57, '', '36', '', 'Mathew', '', '', 'mathewzion950@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1790, '36', 57, '', '36', '', 'Shekar', '', '', 'kunalk911@gmail.com', '', '', '', '', '9739411008', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1791, '36', 57, '', '36', '', 'Pradeep', '', '', 'gmsrtnagar@gmai.com', '', '', '', '', '9845091018', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1793, '36', 57, '', '36', '', 'Prem ', '', '', '', '', '', '', '', '9886118366', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajarajeshwari Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1794, '36', 57, '', '36', '', 'Santosh', '', '', 'santoshbalraj.222@gmail.com', '', '', '', '', '7892005403', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1795, '36', 57, '', '36', '', 'Balu ', '', '', 'balu_g@kttml.com', '', '8027826711', '', '', '9844184574', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1796, '36', 57, '', '36', '', 'Gangadhar', '', '', 'jayraj2222deva@gmail.com', '', '', '', '', '7406288889', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tumkur road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1797, '36', 57, '', '36', '', 'Akshaykumar', '', '', 'akshyakumar338@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ayyappa nagar krishnarajapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1798, '36', 57, '', '36', '', 'Nikita', '', '', '', '', '', '', '', '9674347274', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kempapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1799, '36', 57, '', '36', '', 'Surya', '', '', 'suryasupremesolar@gmail.com', '', '', '', '', '9035880708', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1800, '36', 57, '', '36', '', 'Ashok', '', '', '', '', '', '', '', '9741966966', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'zpashok@gmail.com and bhagwanbv@gmail.com ', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1801, '36', 57, '', '36', '', 'Monish', '', '', 'monishkumar02@gmail.com', '', '', '', '', '9986735046', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1802, '36', 57, '', '36', '', 'Sudarshan', '', '', '', '', '', '', '', '8277388941', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-23', '0000-00-00 00:00:00', '', '', '', ''), (1803, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1804, '36', 57, '', '36', '', 'Jyoti wadhwani', '', '', 'shubhjyoti1@gmail.com', '', '', '', '', '9845318622', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1805, '36', 57, '', '36', '', 'Sugendra ', '', '', '', '', '', '', '', '7899964183', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1806, '36', 57, '', '36', '', 'Selvakumar', '', '', '', '', '6369753301', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1807, '36', 57, '', '36', '', 'Sanjay ', '', '', 'nikkamsaanjay1@gmail.com', '', '', '', '', '8152069801', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1808, '36', 57, '', '36', '', 'Farhan', '', '', '', '', '', '', '', '8660098832', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1809, '36', 57, '', '36', '', 'Muthuraj ', '', '', '', '', '', '', '', '9449266336', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1810, '36', 57, '', '36', '', 'Shushil', '', '', 'sushilpathariya@gmail.com', '', '', '', '', '9111621119', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1811, '36', 57, '', '36', '', 'Waseem ', '', '', '', '', '', '', '', '9591549591', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1812, '36', 57, '', '36', '', 'Sheela', '', '', 'sheela.mswbangalore@gmail.com', '', '', '', '', '9845882173', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1813, '36', 57, '', '36', '', 'Akash', '', '', 'akashgupta1978@gmail.com', '', '', '', '', '9513139513', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1814, '36', 57, '', '36', '', 'Santhosh', '', '', 'santoshbalraj.222@gmail.com', '', '', '', '', '7892005403', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1815, '36', 57, '', '', '', 'Sathish ', '', '', '', '', '', '', '', '9845882173', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Raisandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1816, '36', 57, '', '36', '', 'Fayaz', '', '', 'afssticker@gmail.com', '', '', '', '', '9739928143', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1817, '36', 57, '', '36', '', 'Maheshwari', '', '', 'maheshwarinair1968@gmail.com', '', '', '', '', '9008577868', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1818, '36', 57, '', '36', '', 'Jivin enterprises', '', '', '', '', '', '', '', '7483983584', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1819, '36', 57, '', '36', '', 'Kirthi', '', '', 'kirthikumar7@gmail.com', '', '', '', '', '9880701422', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1820, '36', 57, '', '36', '', 'Jayaramaiah', '', '', '', '', '', '', '', '7829186794', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1821, '36', 57, '', '36', '', 'Sana sinha', '', '', '', '', '', '', '', '7406647127', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1822, '36', 57, '', '36', 'Life coach ', 'Ajay Vishwanath', '', '', '', '', '', '', '', '9880521470', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1823, '36', 57, '', '36', '', 'Manjunatha ', '', '', 'suravimantej@gmail.com', '', '', '', '', '9448706063', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1824, '36', 57, '', '36', '', 'Udaychand', '', '', 'govecar@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Navarang theatre rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1825, '36', 57, '', '36', '', 'Shivu', '', '', '', '', '', '', '', '9880753711', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1826, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9164993677', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Nagarbhavi 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1827, '36', 57, '', '36', '', 'Raghavendra', '', '', '', '', '', '', '', '9121212853', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Majestic', 'Banaglore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-25', '0000-00-00 00:00:00', '', '', '', ''), (1828, '36', 57, '', '36', '', 'manoj', '', '', 'videotechgh@gmail.com', '', '', '', '', '8660438659', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1829, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9535838204', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthala nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1830, '36', 57, '', '36', '', 'Koshalya', '', '', 'kaushal_anani@yahoo.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1831, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9980425862', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1832, '36', 57, '', '36', '', 'Bharath', '', '', 'bharat768@gmail.com', '', '', '', '', '9686483006', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1833, '36', 57, '', '36', '', 'Prathap', '', '', '', '', '', '', '', '8884673736', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1834, '36', 57, '', '36', '', 'Jyothi', '', '', 'ans.hrd@gmail.com', '', '', '', '', '8197466898', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamarajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1835, '36', 57, '', '36', '', 'Sukanya', '', '', 'raji.itsraju@gmail.com', '', '', '', '', '8660123919', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Btm layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1836, '36', 57, '', '36', '', 'Seema', '', '', 'seemakurup@gmail.com', '', '', '', '', '9845753522', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1837, '36', 57, '', '36', '', 'Vinayak', '', '', 'canaravinu@gmail.com', '', '', '', '', '7619190179', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1839, '36', 57, '', '36', '', 'Rochna', '', '', '', '', '', '', '', '8197679436', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaya bank layout', 'Banagalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1840, '36', 57, '', '36', '', 'Basker', '', '', 'aishwaryaleema@gmail.com', '', '9535527975', '', '', '9886877325', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramurty Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1841, '36', 57, '', '36', '', 'Shiva ram', '', '', 'shivkrish26@gmail.com', '', '', '', '', '9742616168', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Convent road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1842, '36', 57, '', '36', '', 'Paramesh', '', '', '', '', '', '', '', '7338448899', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yellamma temple road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1843, '36', 57, '', '36', '', 'Mubeen', '', '', '', '', '8023632168', '', '', '9945066993', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer Town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1844, '36', 57, '', '36', '', 'Hessi', '', '', 'hessi@gvmsinfotech.com', '', '', '', '', '9100145549', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sarjapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-26', '0000-00-00 00:00:00', '', '', '', ''), (1845, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7899232054', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1846, '36', 57, '', '36', '', 'Renuka Prasanna', '', '', 'prasi99996@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1847, '36', 57, '', '36', '', 'afridie', '', '', '', '', '', '', '', '9071401185', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1848, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8746061728', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1849, '36', 57, '', '36', '', 'Vishal', '', '', 'shahmanish47@gmail.com', '', '', '', '', '7405585689', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1850, '36', 57, '', '36', '', 'Mahendira', '', '', '', '', '6384671144', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'St thomas town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1851, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8746061728', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1852, '36', 57, '', '36', '', 'Vikaash', '', '', '', '', '', '', '', '7395990773', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr layout sector 1', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1853, '36', 57, '', '36', '', 'Rakesh', '', '', 'rkrocky93@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1854, '36', 57, '', '36', '', 'Anamika', '', '', '', '', '', '', '', '9964656755', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1855, '36', 57, '', '36', '', 'Samreen', '', '', 'khansamreen1996@gmail.com', '', '', '', '', '8296299214', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1856, '36', 57, '', '36', '', 'Prabhat', '', '', '', '', '8041254409', '', '', '9980593570', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore Gpo', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1857, '36', 57, '', '36', '', 'Kumar', '', '', 'kumarsaurabh.cps@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1858, '36', 57, '', '36', '', 'Bhaskar', '', '', '', '', '', '', '', '9141248131', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1859, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9958011332', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1860, '36', 57, '', '36', '', 'Balaji', '', '', 'tirumalabalajig7@gmai.com', '', '', '', '', '7204444710', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-27', '0000-00-00 00:00:00', '', '', '', ''), (1861, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7019607550', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalorex', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1862, '36', 57, '', '36', '', 'Vinod', '', '', 'vinodsp456@gmail.com', '', '', '', '', '9731405998', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (1863, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9455218249', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1864, '36', 57, '', '36', '', 'Manisha', '', '', 'manisharkkumari@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1865, '36', 57, '', '36', '', 'Asad', '', '', 'sadhajiboy@hotmail.com', '', '', '', '', '9845198365', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1866, '36', 57, '', '36', '', 'Harish', '', '', '', '', '', '', '', '9791469023', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Royal meenakshi mall bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1867, '36', 57, '', '36', '', 'Ram ', '', '', '', '', '', '', '', '8050702424', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakara Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1868, '36', 57, '', '36', '', 'Data', '', '', 'datagyan9@gmail.com', '', '', '', '', '8310323846', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1869, '36', 57, '', '36', '', 'Kumar', '', '', 'kumar.kn.83@gmail.com', '', '', '', '', '9886654548', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1870, '36', 57, '', '36', '', 'archana', '', '', 'Manish. gupta@mrsnconsultants.com', '', '', '', '', '9972133218', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1871, '36', 57, '', '36', '', 'Harish', '', '', 'nharish0081@gmail.com', '', '', '', '', '9948867430', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1872, '36', 57, '', '36', '', 'Vijay', '', '', 'thalavijay006@gmail.com', '', '', '', '', '9606844485', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Krishnarajapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1873, '36', 57, '', '36', '', 'Sathya', '', '', 'sathyamunegowda@gmail.com', '', '', '', '', '8105949894', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lavelle Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1874, '36', 57, '', '36', '', 'Ayub', '', '', '', '', '', '', '', '9844944445', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1876, '36', 57, '', '36', '', 'Rituparna biswas', '', '', 'rituparna.project@gmail.com', '', '', '', '', '9831621224', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1877, '36', 57, '', '36', '', 'Sameer', '', '', 'sameer.gangavathi@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar industrial estate', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1878, '36', 57, '', '36', '', 'Chandru', '', '', '', '', '', '', '', '9738377413', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1879, '36', 57, '', '36', '', 'Shivaraj', '', '', '', '', '', '', '', '9845740819', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1880, '36', 57, '', '36', '', 'Sampath', '', '', 'yashmithrms@gmail.com', '', '', '', '', '9606492669', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wilson Garden', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1881, '36', 57, '', '36', '', 'Sukumar shanmugham', '', '', 'sukumarshanmugham@gmail.com', '', '', '', '', '9880914954', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1882, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1883, '36', 57, '', '36', '', 'Prosenjit', '', '', '', '', '', '', '', '9611784100', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1884, '36', 57, '', '36', '', 'Hemsai bangalore', '', '', 'info@specialboss.com', '', '', '', '', '9880792379', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 7th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1885, '36', 57, '', '36', '', 'Vasool', '', '', '', '', '', '', '', '9880878606', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayamahal extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1886, '36', 57, '', '36', '', 'Ramesh', '', '', 'pvrnaidu@hotmail.com', '', '', '', '', '9844005311', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Wood street ashoknagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-02-28', '0000-00-00 00:00:00', '', '', '', ''), (1887, '36', 57, '', '36', '', 'Shabina', '', '', '', '', '', '', '', '9663312910', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1888, '36', 57, '', '36', '', 'Bhaskar', '', '', '', '', '', '', '', '8197511498', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Uttarahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1889, '36', 57, '', '36', '', 'Shiva ', '', '', 'shivakumars727@gmail.com', '', '', '', '', '8722500600', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1890, '36', 57, '', '36', '', 'Sai', '', '', '', '', '', '', '', '9791178110', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaya bharat nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1891, '36', 57, '', '36', '', 'Rituraj sharma', '', '', 'riturajsharma2114@gmail.com', '', '', '', '', '9354107939', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1892, '36', 57, '', '36', '', 'Anant kumar', '', '', 'aluminiumkitchens.77@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1893, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8498870407', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1894, '36', 57, '', '36', '', 'Reddappa', '', '', 'reddeppa_m@rediffmail.com', '', '', '', '', '9986490593', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1895, '36', 57, '', '36', '', 'Khan', '', '', '', '', '', '', '', '8970520140', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1896, '36', 57, '', '36', '', 'Suresh kumar', '', '', 'sureshraj.mehta@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala 6th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1897, '36', 57, '', '36', '', 'anil kumar reddy', '', '', 'anilkumar1995708@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1898, '36', 57, '', '36', '', 'Bharath', '', '', '', '', '6363288987', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kasturi Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1899, '36', 57, '', '36', '', 'Durairaj', '', '', 'drpandian101@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1900, '36', 57, '', '36', '', 'Jeenal', '', '', '', '', '', '', '', '9741617520', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1901, '36', 57, '', '36', '', 'Lakshmi', '', '', '', '', '', '', '', '8618253781', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1903, '36', 57, '', '36', '', 'Vikram', '', '', 'pankuanji1996@gmail.com', '', '', '', '', '8197405109', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 6th Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1904, '36', 57, '', '36', '', 'Vijaykumar ', '', '', 'vijayc161@gmail.com', '', '', '', '', '9742662525', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Ramamurthy Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1905, '36', 57, '', '36', '', 'Faran', '', '', '', '', '', '', '', '8884050000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1906, '36', 57, '', '36', '', 'Monish ', '', '', '', '', '', '', '', '8884068057', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'M S Ramaiah Road-Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1907, '36', 57, '', '36', '', 'Prasad', '', '', '', '', '', '', '', '9113201085', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1908, '36', 57, '', '36', '', 'Krishna', '', '', '', '', '', '', '', '9620617149', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1909, '36', 57, '', '36', '', 'Karthik', '', '', '', '', '', '', '', '7338141337', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1910, '36', 57, '', '36', '', 'Mohd', '', '', '', '', '', '', '', '9986664464', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Srk garden jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1911, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7780241606', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1912, '36', 57, '', '36', '', 'Ganesh', '', '', '', '', '', '', '', '9620617149', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-01', '0000-00-00 00:00:00', '', '', '', ''), (1913, '36', 57, '', '36', '', 'Cs', '', '', '', '', '', '', '', '7975628340', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1914, '36', 57, '', '36', '', 'Levis', '', '', '', '', '', '', '', '8861426370', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1915, '36', 57, '', '36', '', 'Vinay', '', '', '', '', '', '', '', '9928201155', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1916, '36', 57, '', '36', '', 'Shahji', '', '', '', '', '', '', '', '9916352498', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1917, '36', 57, '', '36', '', 'Vikas', '', '', 'vikesh.jain10@gmail.com', '', '', '', '', '8660316297', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Sp Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1918, '36', 57, '', '36', '', 'Ajay', '', '', '', '', '', '', '', '9739998777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1919, '36', 57, '', '36', '', 'Suresh', '', '', '', '', '', '', '', '9606748888', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1920, '36', 57, '', '36', '', 'Nazir', '', '', '', '', '', '', '', '8123685403', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1921, '36', 57, '', '36', '', 'Ravichandran ', '', '', '', '', '', '', '', '9845268526', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1922, '36', 57, '', '36', '', 'Zulkar nain', '', '', 'x.nzain@gmail.com', '', '', '', '', '9964573009', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1923, '36', 57, '', '36', '', 'Salma', '', '', '', '', '', '', '', '9590664707', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1924, '36', 57, '', '36', '', 'Kishore', '', '', 'kishoreDJ5528@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1925, '36', 57, '', '36', '', 'Subtask', '', '', 'gobalgfm@gmail.com', '', '', '', '', '7406499243', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1926, '36', 57, '', '36', '', 'Vijay kumar', '', '', 'paraslighting154@gmail.com', '', '', '', '', '9343772777', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mysore Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1927, '36', 57, '', '36', '', 'Srikanth ', '', '', 'sreekar_412@yahoo.com', '', '', '', '', '8880354308', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1928, '36', 57, '', '36', '', 'Saravanan', '', '', 'saravananraj112@gmail.com', '', '', '', '', '9663823344', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1929, '36', 57, '', '36', '', 'Vinayaka', '', '', '', '', '', '', '', '8310941720', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore ', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1930, '36', 57, '', '36', '', 'Ganesh prasad', '', '', 'ganeshprasad9695@gmail.com', '', '', '', '', '9695086723', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1931, '36', 57, '', '36', '', 'Guardia xpress cargo', '', '', '', '', '', '', '', '9341416161', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1932, '36', 57, '', '36', '', 'Suhas', '', '', 'suhasmohan82@gmail.com', '', '', '', '', '8884568019', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1933, '36', 57, '', '36', '', 'Prajwal', '', '', 'prajwal3@icloud.com', '', '', '', '', '8197223333', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1934, '36', 57, '', '36', '', 'Vasu', '', '', 'power3links@yahoo.com', '', '', '', '', '9845133649', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1935, '36', 57, '', '36', '', 'Kumar', '', '', 'ajaykumar.tv9@gmail.com', '', '', '', '', '9380161679', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1936, '36', 57, '', '36', '', 'Teja', '', '', 'saiteja9980884141@gmail.com', '', '', '', '', '7676964301', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1937, '36', 57, '', '36', '', 'Manish', '', '', 'manishramsukha@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Doddanekundi extension', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1938, '36', 57, '', '', '', 'Salam', '', '', '', '', '', '', '', '8277027952', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore central-jayanagar 9th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1939, '36', 57, '', '36', '', 'Lingam', '', '', 'wood@woodlands.in', '', '4542242111', '', '', '9994361111', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Commercial Street', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1940, '36', 57, '', '36', '', 'Kavita ', '', '', '', '', '', '', '', '9591992083', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Bommansandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1941, '36', 57, '', '36', '', 'Sandeep', '', '', 'sandeepsree1989@gmail.com', '', '8023564963', '', '', '9880445697', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1942, '36', 57, '', '36', '', 'Jyothi', '', '', 'nafcentt12@gmail.com', '', '', '', '', '8553019931', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1943, '36', 57, '', '36', '', 'Abraham', '', '', 'prodesign@asia.com', '', '', '', '', '9535584286', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1944, '36', 57, '', '36', '', 'Vishvesh', '', '', '', '', '', '', '', '9737328510', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1945, '36', 57, '', '36', '', 'Manjunatha nath', '', '', 'bmanjunathayadav@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1946, '36', 57, '', '36', '', 'Rajini', '', '', 'rajani.tamang@gmail.com', '', '', '', '', '9742376976', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vignana Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1947, '36', 57, '', '36', '', 'Sudarshan', '', '', '', '', '', '', '', '8277388941', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1948, '36', 57, '', '36', '', 'Ujwal', '', '', 'ujwal_kadam@yahoo.co.in', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brigade road', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1949, '36', 57, '', '36', '', 'Sonsaychouhan', '', '', 'wwwsony472@gmail.com', '', '6387845295', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1950, '36', 57, '', '36', '', 'Mohan', '', '', 'classicpullanddry@gmail.com', '', '', '', '', '9986878100', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Hsr Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1951, '36', 57, '', '36', '', 'Harshita', '', '', '', '', '', '', '', '9886324047', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1952, '36', 57, '', '36', '', 'Abhishek', '', '', 'abhishek@aandmedu.in', '', '', '', '', '9686656655', 'aandmedu.in', 'Just Dial', 'Existing Customer', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1953, '36', 57, '', '36', '', 'Shashidhar', '', '', '', '', '', '', '', '8660125344', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'shreenagar', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1957, '36', 57, '', '36', '', 'Sujay', '', '', '', '', '', '', '', '9663869350', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hbr layout 5th block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1958, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7975168850', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1959, '36', 57, '', '36', '', 'Abhishek', '', '', '', '', '', '', '', '7090117330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1960, '36', 57, '', '36', '', 'Harish jain', '', '', '', '', '', '', '', '9606593015', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banaswadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1961, '36', 57, '', '36', '', 'Redstone Retreat', '', '', 'ajish.rajan@gmail.com', '', '', '', '', '7760984600', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107.', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1963, '36', 57, '', '36', '', 'Kondareddy', '', '', 'dwpr@gmail.com', '', '', '', '', '8310563459', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1964, '36', 57, '', '36', '', 'Multisoftware digital technologies', '', '', '', '', '', '', '', '9620045200', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1965, '36', 57, '', '36', '', 'Marketing biggiesburger', '', '', 'marketing@biggiesburger.com', '', '', '', '', '8310037349', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1966, '36', 57, '', '36', '', 'sathyan', '', '', 'sathyan.sidd@gmail.com', '', '', '', '', '9739323232', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1967, '36', 57, '', '36', '', 'Debojyoti', '', '', '', '', '', '', '', '7002334240', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '9th main road jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1968, '36', 57, '', '36', '', 'Haseebuddin', '', '', '', '', '', '', '', '8660307671', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-05', '0000-00-00 00:00:00', '', '', '', ''), (1969, '36', 57, '', '36', '', 'Vijay', '', '', '', '', '', '', '', '9902399049', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1970, '36', 57, '', '36', '', 'Dileep', '', '', 'dileep.pemmasaani@gmail.com', '', '', '', '', '9008601999', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1971, '36', 57, '', '36', '', 'vijayakumar', '', '', 'vijiraji49@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Belagondapalli', 'Hosur', 'Tamil nadu', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1972, '36', 57, '', '36', '', 'praveen', '', '', 'praveen0142@gmail.com', '', '', '', '', '9535553430', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1973, '36', 57, '', '36', '', 'Swetha', '', '', 'gandhi.rinki@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1974, '36', 57, '', '36', '', 'Pusoshotham', '', '', 'purushotham.rajan@gmail.com', '', '', '', '', '9900630895', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1975, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9980425862', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mysore', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1976, '36', 57, '', '36', 'Tuff security and allied services', 'Domnic', '', '', 'tuffservice@gmail.com', '', '', '', '', '7483714488', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Kacharakanahalli (hennur main road)', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1977, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8249896485', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1978, '36', 57, '', '36', '', 'Rashmi', '', '', 'rashmirao_jonty@yahoo.com', '', '', '', '', '9742468068', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1979, '36', 57, '', '36', '', 'Sunny', '', '', 'sunnygalla@gmail.com', '', '', '', '', '9632690330', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout BDA Complex', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1980, '36', 57, '', '36', '', 'Raghu', '', '', 'raghupathi.rrr@gmail.com', '', '', '', '', '9148993995', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1981, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8547142602', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rt nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1982, '36', 57, '', '36', '', 'Kumara park west', '', '', 'syedmujju76@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1983, '36', 57, '', '36', '', 'Btm layout 2nd stage', '', '', 'jha.dipu@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1984, '36', 57, '', '36', '', 'Girish ', '', '', '', '', '', '', '', '7348831702', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1985, '36', 57, '', '36', '', 'Shobin ', '', '', 'shogii1986@gmail.com', '', '', '', '', '9110207758', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1986, '36', 57, '', '36', '', 'Mahima', '', '', 'mahi25yadav94@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Richmond town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1987, '36', 57, '', '36', '', 'Praveen', '', '', 'colourvibrations1@gmail.com', '', '', '', '', '7259453925', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Azad nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1988, '36', 57, '', '36', '', 'Radha', '', '', 'radha.slr2017@gmail.com', '', '6361458542', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1989, '36', 57, '', '36', '', 'Geetha', '', '', '', '', '', '', '', '9591878659', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-06', '0000-00-00 00:00:00', '', '', '', ''), (1990, '36', 57, '', '36', '', 'Sahana', '', '', '', '', '', '', '', '9986112695', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1991, '36', 57, '', '36', '', 'Anoop', '', '', '', '', '', '', '', '9739315402', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1992, '36', 57, '', '36', '', 'chandu', '', '', '', '', '6360292790', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1993, '36', 57, '', '36', '', 'Durga', '', '', 'durgaprasadc145@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1994, '36', 57, '', '36', '', 'Rambilas', '', '', '', '', '', '', '', '9740889329', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1995, '36', 57, '', '36', '', 'Ananth', '', '', '', '', '', '', '', '7259571555', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1996, '36', 57, '', '36', '', 'Boby', '', '', '', '', '', '', '', '9008736948', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sarjapura circle police station(billapura gate)', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (1998, '36', 57, '', '36', '', 'Mohammed ', '', '', '', '', '', '', '', '9886856358', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2000, '36', 57, '', '36', '', 'Srinivas', '', '', '', '', '', '', '', '9700768103', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2002, '36', 57, '', '36', '', 'Ranjith', '', '', '', '', '', '', '', '9341033333', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2003, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '9483416780', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'White field', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2004, '36', 57, '', '36', '', 'Sashi', '', '', '', '', '', '', '', '8420543178', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2005, '36', 57, '', '36', '', 'Seenu', '', '', 'seenu.a4455@gmail.com', '', '', '', '', '9880453333', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Horamavu', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2006, '36', 57, '', '36', '', 'Laveera Technologies Pvt Ltd', '', '', '', '', '', '', '', '9916328263', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase,', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-07', '0000-00-00 00:00:00', '', '', '', ''), (2007, '36', 57, '', '36', '', 'Vivek', '', '', '', '', '', '', '', '9986869091', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2008, '36', 57, '', '36', '', 'Praveen kumar', '', '', 'praveenpkb17@gmail.com', '', '', '', '', '9591227022', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hessargatta main road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2009, '36', 57, '', '36', '', 'Sameer', '', '', 'sameer4_neel@yahoo.co.in', '', '', '', '', '9900679956', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2010, '36', 57, '', '36', '', 'Tenzin ', '', '', '', '', '', '', '', '9199048665', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2011, '36', 57, '', '36', '', 'Naveen', '', '', '', '', '', '', '', '9964476677', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Koramangala', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2012, '36', 57, '', '36', '', 'Anand Kumar', '', '', '', '', '', '', '', '9900477050', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara Nagar', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2013, '36', 57, '', '36', '', 'Narasimha', '', '', '', '', '', '', '', '9740302502', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp Nagar 7th Phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2014, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2016, '36', 57, '', '36', '', 'caller', '', '', '', '', '', '', '', '7022111199', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Sarjapur Road', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2017, '36', 57, '', '36', '', 'Bharathi ', '', '', '', '', '', '', '', '8884401107', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Jp Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2018, '36', 57, '', '36', '', 'Goutam mondal', '', '', '', '', '', '', '', '7980534668', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2019, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8985972595', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Murugeshpalya', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2020, '36', 57, '', '36', '', 'Sandip', '', '', '', '', '', '', '', '9810886093', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'KR puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2021, '36', 57, '', '36', '', 'Nithya', '', '', '', '', '', '', '', '9482797932', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarbhavi 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2022, '36', 57, '', '36', '', 'No name', '', '', '', '', '', '', '', '7899159027', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Immadihalli', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2023, '36', 57, '', '36', '', 'Supreeth gowda', '', '', '', '', '', '', '', '8971046895', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2024, '36', 57, '', '36', '', 'Aditya', '', '', 'adithya26@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2025, '36', 57, '', '36', '', 'Nagendra kiran', '', '', 'bn_kiran2k@rediff.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Devaiah park', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-08', '0000-00-00 00:00:00', '', '', '', ''), (2026, '36', 57, '', '36', '', 'Shruti', '', '', 'shrutibilagi1@gmail.com', '', '', '', '', '8951230349', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2027, '36', 57, '', '36', '', 'Sagar', '', '', 'burgannanawara@gmail.com', '', '', '', '', '8884181271', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2028, '36', 57, '', '36', '', 'Rajendra', '', '', '', '', '', '', '', '9972008181', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2029, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7667060097', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'white field', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2030, '36', 57, '', '36', '', 'Pretty', '', '', '', '', '6362337407', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2031, '36', 57, '', '36', '', 'Pankaj mishra', '', '', 'ecomoxygen@gmail.com', '', '', '', '', '9109129296', 'https://www.oxygen99.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2032, '36', 57, '', '36', '', 'Pradeep', '', '', '', '', '', '', '', '8660062266', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2033, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '8074804314', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgalli', 'Mysore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2034, '36', 57, '', '36', '', 'Noname', '', '', '', '', '', '', '', '7899159027', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2035, '36', 57, '', '36', '', 'nabeel', '', '', '', '', '', '', '', '9986797995', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt Nagar', '', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2036, '36', 57, '', '36', '', 'Ajay', '', '', 'raja4180@yahoo.com', '', '', '', '', '8850071310', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2037, '36', 57, '', '36', '', 'Sanjana rai', '', '', '', '', '', '', '', '8867120851', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2038, '36', 57, '', '36', '', 'Deepthi gowda', '', '', '', '', '', '', '', '9980374262', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2039, '36', 57, '', '36', '', 'nagaraj', '', '', 'harnath02@gmail.com', '', '', '', '', '9441018175', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2040, '36', 57, '', '36', '', 'Great udaipur', '', '', 'greatudaipur11@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2041, '36', 57, '', '36', '', 'Praveen', '', '', 'nerellapraveenkumar@gmail.com', '', '', '', '', '8985959651', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2042, '36', 57, '', '36', '', 'Sonik', '', '', 'lunhaokip23@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2043, '36', 57, '', '36', '', 'Ayath', '', '', '', '', '', '', '', '9108006086', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', ' Rt nagar', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-09', '0000-00-00 00:00:00', '', '', '', ''), (2044, '36', 57, '', '36', '', 'Manjunath', '', '', '', '', '', '', '', '7338001100', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hennur Road', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2045, '36', 57, '', '36', '', 'Naman', '', '', '', '', '', '', '', '8318045393', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2046, '36', 57, '', '36', '', 'Rajat kumar', '', '', 'rajatkumarcse@gmail.com', '', '', '', '', '9066351902', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2047, '36', 57, '', '36', '', 'Anusha hegde', '', '', '', '', '', '', '', '9900971798', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2048, '36', 57, '', '36', '', 'Ramjilal manjhi', '', '', 'manjhi043@gmail.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2049, '36', 57, '', '36', '', 'Pruthvi', '', '', '', '', '', '', '', '7899081530', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ideal home township', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2050, '36', 57, '', '36', '', 'Dakshina murthy', '', '', '', '', '', '', '', '9448613296', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ideal home township', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2051, '36', 57, '', '36', '', 'Platawoods', '', '', 'mesi@dmassosiates.in', '', '', '', '', '9513570222', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Pranav, No 9/12, 5th Cross, 10th Main, Sri Gururaja Layout, Banashankari 3rd stage, Bangalore - 560085', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2052, '36', 57, '', '36', '', 'Dsignexperts', '', '', 'dsigninteriorexperts@gmail.com', '', ' 6309188899', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '#402, Padmaja Jhansi Towers, near K.S. Bakers, Bhagyanagar Colony, KPHB, Hyderbad - 500072, T.S. INDIA.', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2053, '36', 57, '', '36', '', 'Dental Diagnostic Centre', '', '', '', '', '', '', '', '8105537633', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-11', '0000-00-00 00:00:00', '', '', '', ''), (2054, '36', 57, '', '36', '', 'Vinayaka', '', '', '', '', '', '', '', '8310941720', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-12', '0000-00-00 00:00:00', '', '', '', ''), (2055, '36', 57, '', '36', '', 'Karthik', '', '', 'karthickchandra007@gmail.com', '', '', '', '', '7411169798', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-12', '0000-00-00 00:00:00', '', '', '', ''), (2056, '36', 57, '', '36', '', 'Ashwathi', '', '', 'ashwathiparidi@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgalli', 'Mysore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-12', '0000-00-00 00:00:00', '', '', '', ''), (2057, '36', 57, '', '36', '', 'Krishnapriya', '', '', 'anuradhanair16@gmail.com', '', '', '', '', '9986211449', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '# 104/B, Ground Floor, 38th Cross, 26th Main, 9th Block Jayanagar, Bangalore -560069', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-13', '0000-00-00 00:00:00', '', '', '', ''), (2058, '36', 57, '', '36', '', 'Gloal safari holidays', '', '', 'domestictoursglobalsafari@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-13', '0000-00-00 00:00:00', '', '', '', ''), (2059, '36', 57, '', '36', '', 'Skill Tree Academy', '', '', '', '', '7899128234', '', '', '8050865205', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sahakar Nagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-19', '0000-00-00 00:00:00', '', '', '', ''), (2062, '36', 57, '', '36', '', 'Care My car', '', '', '', '', '', '', '', '9008301698', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-03-20', '0000-00-00 00:00:00', '', '', '', ''), (2064, '24', 69, '', '24', '', 'Ramesh Raj', 'Kumar', '', 'rrameshrajkumar5@gmail.com', '', '', '', '', '8310740162', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Ramesh', '8310740162', 'New', '20', 'wants multiple hotel booking application. So proposing a wordpress website with similar functionality', '', 'ACTIVE', 'LEAD', 0, '2019-04-02', '0000-00-00 00:00:00', '', '', '', ''), (2065, '24', 69, '', '24', 'Mantra 360', 'Amarnath', 'K', 'Marketing manager ', 'amarnath@mantra360.in', '', '', '', '', '9738888852', 'mantra 360.in', 'Just Dial', 'Pre Qualified', '0000-00-00', '', 0, '', '', '', 0, '', '', '178/179,paramount Garden, thalagattapura, Next to Nandi toyota, Kanakapura Main road', 'Bangalore ', 'Karnataka ', 560062, 'India ', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-11', '0000-00-00 00:00:00', '', '', '', ''), (2066, '36', 57, '', '36', '', 'Arjun', '', '', 'arjun.erigo@gmail.com', '', '7907240361', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-12', '0000-00-00 00:00:00', '', '', '', ''), (2067, '36', 57, '', '36', '', 'Nandish ', '', '', 'nandeeshdsmdr@gmail.com', '', '', '', '', '7259358385', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2068, '36', 57, '', '36', '', 'Naren', '', '', '', '', '', '', '', '9629009410', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2069, '36', 57, '', '36', '', 'No name', '', '', '', '', '6300664556', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2070, '36', 57, '', '36', '', 'Majid', '', '', '', '', '', '', '', '8130779845', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2071, '36', 57, '', '36', '', 'Meet', '', '', '', '', '', '', '', '9327133003', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2072, '36', 57, '', '36', '', 'Kailash ahuja', '', '', '', '', '', '', '', '9886714934', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2073, '36', 57, '', '36', '', 'Raka', '', '', 'raka.psra@gmail.com', '', '', '', '', '8050561446', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2074, '36', 57, '', '36', '', 'Ajay bhutiya', '', '', '', '', '', '', '', '8003246264', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Victoria layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2075, '36', 57, '', '36', '', 'Ramesh kumar', '', '', 'ramesh4nani@gmail.com', '', '', '', '', '7747977284', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'New thippasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2076, '36', 57, '', '36', '', 'Mukundha', '', '', '', '', '', '', '', '7411616112', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2077, '36', 57, '', '36', '', 'Sri krishna', '', '', 'contactus@krishnawellness.com', '', '', '', '', '9900518000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', 'test', '60', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2078, '36', 57, '', '36', '', 'Zaheer ahmed', '', '', 'zaheersuf@gmail.com', '', '', '', '', '9964419123', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chamraj pete', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2079, '36', 57, '', '36', '', 'Taran', '', '', 'taranmandanna1@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-04-15', '0000-00-00 00:00:00', '', '', '', ''), (2080, '24', 69, '', '24', '', 'Jagadeesh Rao', '', '', 'jagadeeshrao12@yahoo.co.in', '', '', '', '', '9538910830', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'ststic webiste required. 8-9 pages. have told 9k plus GST', '', 'ACTIVE', 'LEAD', 0, '2019-05-03', '0000-00-00 00:00:00', '', '', '', ''), (2081, '24', 69, '', '24', '', 'Lakshmi', 'Prasad', '', 'lachuprasad81@gmail.com', '', '', '', '', '9844407963', '', 'Existing Client Reference', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, '', 'Lakshmi Prasad', '9844407963', 'Exist', '', 'Referred by Dr. Trupthi. wants a website for her dental clinic. Quoting 22k for dynamic website.', '', 'ACTIVE', 'LEAD', 0, '2019-05-06', '0000-00-00 00:00:00', '', '', '', ''), (2082, '24', 69, '', '24', '', 'Shiva', '', '', 'shiva.v212@gmail.com', '', '', '', '', '9916244844', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'AMC for website www.vidyuth.co.in. Giving quote for 8K', '', 'ACTIVE', 'LEAD', 0, '2019-05-07', '0000-00-00 00:00:00', '', '', '', ''), (2083, '158', 61, '', '24', '', 'Suhas', '', '', '', '', '', '', '', '9448640912', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Suhas', '9448640912', '', '', 'Requirement for Matrimonial website ', '', 'ACTIVE', 'LEAD', 0, '2019-05-08', '0000-00-00 00:00:00', '', '', '', ''), (2084, '158', 61, '', '158', '', 'Gokulnath', '', '', 'gokulkantaias10@gmail.com', '', '', '', '', '8098069818', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Gokulnath', '8098069818', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-09', '0000-00-00 00:00:00', '', '', '', ''), (2085, '158', 61, '', '158', '', 'Vasudev', '', '', 'vasuptv@gmail.com', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', '', 0, '', 'Vasudev', '9008776611', 'New', '20', 'Needs basic website 4 to 5 page and mobile application which can capture attendance...', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2086, '158', 61, '', '158', 'IP metrix', 'Niveditha', '', '', 'niveditha@ipmetrix.com', '', '', '', '', '8022964201', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road', 'Bangalore', '', 0, '', 'Niveditha', '8026598439', 'New', '20', 'Spoken with Niveditha- she told that their CEO will decide and inform.(8026598439)', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2087, '158', 61, '', '158', '', 'Tulasidas sappali', '', '', '', '', '', '', '', '9148643766', '', '', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Tulasidas sappali', '9148643766', '', '60', 'Requirement for Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2088, '158', 61, '', '158', '', 'Nithya', '', '', '', '', '', '', '', '9590060610', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Horamavu Bangalore', '', 0, '', 'Nithya', '9590060610', 'New', '20', 'No requirement', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2089, '158', 61, '', '158', '', 'Sharan', '', '', 'sharansha96@gmail.com', '', '', '', '', '8015863106', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Gubbalala Bangalore', '', 0, '', 'Sharan', '6380183107', 'New', '20', 'No Requirement', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2090, '158', 61, '', '158', '', 'Umme hani', '', '', 'haniumme255@gmail.com', '', '', '', '', '9902606550', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Umme hani', '9902606550', 'New', '20', 'No Requirements', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2091, '158', 61, '', '158', '', 'Gh Rights Rights ', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Whitefiled Bangalore', '', 0, '', 'Gh Rights Rights ', '7022225365', 'New', '20', 'Spoken with client He said They had already got the Requirement from others.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2092, '158', 61, '', '158', '', 'Rahul Kumar', '', '', '', '', '', '', '', '8013571482', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', 'Rahul Kumar', '8013571482', 'New', '60', 'Not contacted ', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2093, '158', 61, '', '158', '', 'Harish', '', '', '', '', '', '', '', '8884357497', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Harish', '8884357497', 'New', '', 'Not contacted ', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2094, '158', 61, '', '158', '', 'Praphul kumar', '', '', '', '', '', '', '', '9177145139', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vignana nagar', 'Bangalore', '', 0, '', 'Praphul kumar', '9177145139', 'New', '', 'No Requirement', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2095, '158', 61, '', '158', '', 'Kevin', '', '', 'kevin_dony@yahoo.com', '', '', '', '', '8618824813', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Kevin', '8618824813', 'New', '20', 'Dynamic website for 10 to 15 pages, ', '', 'ACTIVE', 'LEAD', 0, '2019-05-10', '0000-00-00 00:00:00', '', '', '', ''), (2097, '158', 61, '', '158', '', 'Geo Mathew', '', '', 'Geomathew8@gmail.com', '', '', '', '', '9440201822', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan Nagar', 'Bangalore', '', 0, '', 'Geo Mathew', '', '', '', 'Needs 3 pages of website and 5 email ID\'s, Has requirements lesser than our Norms we are Discarding the project.', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2098, '158', 61, '', '158', '', 'Ashok Saikumar', '', '', 'ashoksaikumarg@gmail.com', '', '', '', '', '8152002220', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Ashok Saikumar', '8152002220', 'New', '60', 'They told that they will share their requirements in mail, but still now they had not shared and not even answering the call.', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2099, '158', 61, '', '158', '', 'Srinivas', '', '', '', '', '', '', '', '8660914387', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Srinivas', '8660914387', '', '60', 'Requirement for Computer Software developers- He will visit our office (Mysore).\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2100, '158', 61, '', '158', '', 'Neha', '', '', '', '', '', '', '', '8884761679', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', '', 0, '', 'Neha', '8884761679', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2101, '158', 61, '', '158', '', 'Ahmed', '', '', '', '', '', '', '', '9606634205', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Ahmed', '9606634205', '', '', 'THEY HAD FINALIZED FROM OTHERS\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2102, '158', 61, '', '158', '', 'Shalika', '', '', 'vshalika4@gmail.com', '', '', '', '', '8073742238', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', '', '', 0, '', 'Shalika', '8073742238', '', '60', 'They needs package details for both Static and Dynamic,', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2103, '20', 1, '', '20', '', 'Shashank', 'Vadonay', '', '', '', '8722066220', '', '', '8722066220', '', 'External Referral', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2104, '158', 61, '', '158', '', 'Chetan', '', '', 'Chetanjacky007@gmail.com', '', '', '', '', '8884034782', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Chetan', '8884034782', '', '80', 'Quotation for Dynamic website 7 pages ', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2105, '158', 61, '', '158', '', 'Soumya Day', '', '', 'de2soumya@gmail.com', '', '', '', '', '7795004427', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'Soumya Day', '7795004427', '', '', 'Regarding Android IOS Development- They told that they had final the project with other vendor.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2106, '158', 61, '', '158', '', 'Owais Ahmed', '', '', '', '', '', '', '', '9742804920', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Owais Ahmed', '9742804920', '', '', 'No NEED OF REQUIREMENTS\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2107, '158', 61, '', '158', '', 'Kirthi Raj', '', '', '', '', '', '', '', '9945673126', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', '', 0, '', 'Kirthi Raj', '9945673126', '', '', 'No NEED OF REQUIREMENTS, post updated by mistake\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2108, '158', 61, '', '158', '', 'Vijay Ragavan', '', '', '', '', '', '', '', '7904138377', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Vijay Ragavan', '7904138377', 'New', '60', 'Enquired website for Real Estate business', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2109, '158', 61, '', '158', '', 'Manjunath G', '', '', '', '', '', '', '', '9986512318', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Manjunath G', '9986512318', '', '60', 'Enquired for Internet website Designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2110, '158', 61, '', '158', '', 'Naveen', '', '', '', '', '', '', '', '8147910029', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Naveen', '8147910029', 'New', '', 'NO need of Requirements, He told that by mistake he had updated the requirement, \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2111, '158', 61, '', '158', '', 'Santhosh infra', '', '', '', '', '', '', '', '8277398458', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Santhosh infra', '8277398458', '', '', 'Website Development', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2112, '158', 61, '', '158', '', 'Neelim', '', '', '', '', '', '', '', '9538487181', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Neelim', '9538487181', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2113, '158', 61, '', '158', '', 'Rajesh', '', '', '', '', '', '', '', '8394066066', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Rajesh', '8394066066', '', '', 'internet Website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2114, '158', 61, '', '158', '', 'Sandiep Sreenivasan', '', '', '', '', '', '', '', '9894945650', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Sandiep Sreenivasan', '9894945650', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2115, '158', 61, '', '158', '', 'Steve', '', '', '', '', '', '', '', '9904438798', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Steve', '9904438798', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2116, '158', 61, '', '158', '', 'Sanjeet', '', '', '', '', '', '', '', '9686890690', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sanjeet', '9686890690', '', '', 'internet Website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2117, '158', 61, '', '158', '', 'Saurav', '', '', 'saurav_wap4u@yahoo.co.in', '', '', '', '', '9008346801', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Saurav', '9008346801', '', '60', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2118, '158', 61, '', '158', '', 'Nikhil', '', '', 'nikhilagrawal197@gmail.com', '', '', '', '', '9743100097', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Nikhil', '9743100097', '', '80', 'Website and App development\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2119, '158', 61, '', '158', '', 'Shankar G', '', '', '', '', '', '', '', '9845957062', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Shankar G', '9845957062', '', '', 'internet Website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2120, '158', 61, '', '24', '', 'Lakshmi', '', '', '', '', '', '', '', '9606616213', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Lakshmi', '9606616213', '', '', 'internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2121, '158', 61, '', '158', '', 'Rahul', '', '', '', '', '', '', '', '9903149532', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', '', '', 0, '', 'Rahul', '9903149532', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2122, '158', 61, '', '158', '', 'Chethan', '', '', '', '', '', '', '', '8197279703', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Chethan', '8197279703', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-11', '0000-00-00 00:00:00', '', '', '', ''), (2123, '158', 61, '', '158', '', 'Rajkumar', '', '', 'gemfoundationsindia@gmail.com', '', '', '', '', '7607222777', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Kengeri-ullai upanagar', 'Bangalore', '', 0, '', 'Rajkumar', '7607222777', 'New', '60', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2124, '158', 61, '', '158', '', 'Krishana', '', '', 'krish25591@gmail.com', '', '', '', '', '9066350615', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Krishana', '9066350615', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2125, '158', 61, '', '158', '', 'Noor', '', '', 'ulla.noor@gmail.com', '', '', '', '', '9845064097', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Noor', '9845064097', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2126, '158', 61, '', '158', '', 'Preethi ', '', '', '', '', '', '', '', '7411882749', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'jaynagar', 'Bangalore', '', 0, '', 'Preethi', '7411882749', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2127, '158', 61, '', '158', '', 'Anandan', '', '', 'drgsanandan@gmail.com', '', '', '', '', '9443222834', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Anandan', '9443222834', 'New', '20', 'internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2128, '158', 61, '', '24', '', 'Tushar', '', '', '', '', '', '', '', '8430135727', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Tushar', '8430135727', '', '', 'Mobile application\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2129, '158', 61, '', '158', '', 'Kudalkar', '', '', '', '', '9881093860', '', '', '', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Kudalkar', '9881093860', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2130, '158', 61, '', '158', '', 'Syed', '', '', '', '', '', '', '', '9901766423', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basweshwar nagar', 'Bangalore', '', 0, '', 'Syed', '9901766423', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2131, '158', 61, '', '158', '', 'santosh Gaur', '', '', '', '', '', '', '', '8884066657', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lingarajpuram', 'Bangalore', '', 0, '', 'santosh Gaur', '8884066657', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2132, '158', 61, '', '158', '', 'Krish Duniya', '', '', '', '', '', '', '', '9066350615', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Krish Duniya', '9066350615', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2133, '158', 61, '', '158', '', 'Sana Sinha', '', '', '', '', '', '', '', '7406647127', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Sana Sinha', '7406647127', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2134, '158', 61, '', '158', '', 'Manjunath', '', '', '', '', '8310431808', '', '', '', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Manjunath', '8310431808', 'New', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2135, '158', 61, '', '158', '', 'Dikshant', '', '', '', '', '', '', '', '9099922171', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', '', 0, '', 'Dikshant', '9099922171', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2136, '158', 61, '', '158', '', 'Rahul', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', 'Rahul', '6289245265', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2137, '158', 61, '', '158', '', 'Manjunath', '', '', '', '', '', '', '', '9845670582', '', 'Just Dial', 'Contacted', '0000-00-00', 'Astrology', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Manjunath', '9845670582', '', '20', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2138, '158', 61, '', '158', '', 'Manoj singh ', '', '', 'mksing@favoritoonline.com', '', '', '', '', '8368557333', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Manoj', '9871518979', 'New', '20', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2139, '158', 61, '', '158', '', 'Vishnu', '', '', '', '', '', '', '', '9686643783', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Vishnu', '9686643783', '', '20', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2140, '158', 61, '', '24', '', 'Jacob', '', '', '', '', '', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'COX town', '', '', 0, '', 'Jacob', '6238764090', '', '60', 'internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2141, '158', 61, '', '158', '', 'Ankit', '', '', '', '', '', '', '', '9953891303', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Ankit', '9953891303', '', '', 'internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2142, '158', 61, '', '158', '', 'Rajeev', '', '', '', '', '', '', '', '9620541261', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jarganahalli', '', '', 0, '', 'Rajeev', '9620541261', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2143, '158', 61, '', '158', '', '', '', '', '', '', '6203419866', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yelahanka new town', '', '', 0, '', '', '6203419866', '', '', 'Web application\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2144, '158', 61, '', '158', '', 'Rudra Pratap Singh', '', '', '', '', '', '', '', '8174979915', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Rudra Pratap Singh', '8174979915', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2145, '158', 61, '', '158', '', 'Sharavana kumar', '', '', '', '', '', '', '', '9036440261', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', '', 0, '', 'Sharavana kumar', '9036440261', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2146, '158', 61, '', '158', '', 'Akbar', '', '', '', '', '', '', '', '8095571976', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', '', '', 0, '', 'Akbar', '8095571976', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2147, '158', 61, '', '158', '', 'Arun ', '', '', '', '', '6382544824', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Arun ', '6382544824', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2148, '158', 61, '', '158', '', 'Pretty', '', '', '', '', '6362337407', '', '', '6362337407', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Pretty', '6362337407', '', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2149, '158', 61, '', '158', '', 'Srinivasa', '', '', '', '', '', '', '', '7337770923', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', '', '', 0, '', 'Srinivasa', '7337770923', '', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2150, '158', 61, '', '158', '', 'Manjunath', '', '', '', '', '', '', '', '9731777775', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Manjunath', '9731777775', '', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2151, '158', 61, '', '158', '', 'Nanjunda', '', '', '', '', '', '', '', '9742881191', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannerghtta', 'Bangalore', '', 0, '', 'Nanjunda', '9742881191', '', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2152, '158', 61, '', '158', '', 'Rajesh', '', '', '', '', '', '', '', '9986672005', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Rajesh', '9986672005', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-13', '0000-00-00 00:00:00', '', '', '', ''), (2153, '158', 61, '', '158', '', 'Madumitha', '', '', '', '', '', '', '', '8310014468', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Madumitha', '8310014468', '', '', 'Internet Website Designers.', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2154, '158', 61, '', '158', '', 'Darel philip', '', '', 'enigmaticdarel@gmail.com', '', '', '', '', '9343807061', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Darel philip', '9343807061', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2155, '158', 61, '', '158', '', 'Vinoth', '', '', 'vinoth@gmail.com', '', '', '', '', '9632630272', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Vinoth', '9632630272', '', '60', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2156, '158', 61, '', '158', '', 'Amrin Saba', '', '', '', '', '', '', '', '8618274906', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kalyan Nagar', '', '', 0, '', 'Amrin Saba', '8618274906', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2157, '158', 61, '', '158', '', 'Mamatha', '', '', 'mamathablr.ks@gmail.com', '', '8030123431', '', '', '9743542213', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', '', 0, '', 'Mamatha', '8030123431', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2158, '158', 61, '', '158', '', 'Rajesh', '', '', '', '', '', '', '', '9108887984', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', '', 0, '', 'Rajesh', '9108887984', '', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2159, '158', 61, '', '158', '', 'Somshekar', '', '', 'charanravi36@gmail.com', '', '', '', '', '7892973265', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Somshekar', '7892973265', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2160, '158', 61, '', '158', '', 'Vishnu', '', '', 'vishnuraj4586@gmail.com', '', '', '', '', '7349492224', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Vishnu', '7349492224', '', '60', 'Internet Website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2161, '158', 61, '', '158', '', 'Vijayakumar', '', '', '', '', '', '', '', '7799662482', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vigana nagar', 'Bangalore', '', 0, '', 'Vijayakumar', '7799662482', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2166, '158', 61, '', '158', '', 'Durai', '', '', '', '', '', '', '', '8095906010', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli, ', 'Bangalore', '', 0, '', 'Durai', '8095906010', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2170, '158', 61, '', '158', '', 'Imran Khan', '', '', '', '', '', '', '', '9901201562', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vasanth nagar', '', '', 0, '', 'Imran Khan', '9901201562', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2171, '158', 61, '', '158', '', 'Siddharth', '', '', '', '', '', '', '', '9403498330', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ashoknagar', '', '', 0, '', 'Siddharth', '9403498330', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2172, '158', 61, '', '158', '', 'Dilip', '', '', '', '', '', '', '', '9980530922', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', '', 0, '', 'Dilip', '9980530922', '', '', 'Internet website Designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2174, '158', 61, '', '158', '', 'Prasad', '', '', 'prasad@keystonehealthcare.com', '', '', '', '', '9739454340', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Prasad', '9739454340', 'New', '', 'Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2175, '158', 61, '', '158', '', 'Sagar', '', '', '', '', '', '', '', '8660504322', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', '', 0, '', 'Sagar', '8660504322', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2176, '158', 61, '', '158', '', 'Muralli', '', '', '', '', '', '', '', '7996293391', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marenahalli', '', '', 0, '', 'Muralli', '7996293391', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2177, '158', 61, '', '158', '', 'Dayanand', '', '', '', '', '', '', '', '9945677889', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Padmanabhangar', '', '', 0, '', 'Dayanand', '9945677889', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2178, '158', 61, '', '158', '', 'Sameer', '', '', '', '', '', '', '', '9731253691', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sameer', '9731253691', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2179, '158', 61, '', '24', '', 'Bharathisha', '', '', '', '', '', '', '', '9742019556', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', '', 0, '', 'Bharathisha', '9742019556', 'New', '20', 'E commerce website Development ', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2180, '158', 61, '', '158', '', 'Ashok Garampalli', '', '', '', '', '', '', '', '9972624464', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Ashok Garampalli', '9972624464', '', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2181, '158', 61, '', '158', '', 'Shivprasad', '', '', '', '', '', '', '', '9008532836', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Shivprasad', '9008532836', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2182, '158', 61, '', '158', '', 'Shilpa ', '', '', '', '', '', '', '', '9606168888', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road', 'Bangalore', '', 0, '', 'Shilpa', '9606168888', 'New', '', 'Internet website Developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2183, '158', 61, '', '158', '', 'Sachin', '', '', '', '', '', '', '', '7353983927', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sachin', '7353983927', 'New', '', 'Internet website Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2184, '158', 61, '', '158', '', 'Arun kumar HN', '', '', '', '', '', '', '', '9901612862', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Arun kumar HN', '9901612862', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2185, '158', 61, '', '158', '', 'Harshitha', '', '', 'harshirock07@gmail.com', '', '', '', '', '9113957516', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Harshitha', '9113957516', 'New', '', 'Computer Software developers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2186, '158', 61, '', '158', '', 'Rahil', '', '', '', '', '', '', '', '9748085013', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', 'Rahil', '9748085013', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2187, '158', 61, '', '158', '', 'Rohith', '', '', '', '', '', '', '', '7416816040', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Rohith', '7416816040', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2188, '158', 61, '', '158', '', 'Nandini', '', '', '', '', '', '', '', '7975709845', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Nandini', '7975709845', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2189, '158', 61, '', '158', '', 'Anad Pandey', '', '', '', '', '', '', '', '8977668890', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Anad Pandey', '8977668890', 'New', '', 'Web application Developer ', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2190, '158', 61, '', '158', '', 'Pritam', '', '', '', '', '', '', '', '8880076568', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Pritam', '8880076568', 'New', '', 'Internet Website Designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2191, '158', 61, '', '158', '', 'Azhar', '', '', '', '', '', '', '', '7259822311', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosur road ', '', '', 0, '', 'Azhar', '7259822311', '', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2192, '158', 61, '', '158', '', 'Sujay', '', '', '', '', '', '', '', '7356022339', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Sujay', '7356022339', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2193, '158', 61, '', '158', '', 'Junaid ', '', '', '', '', '', '', '', '8660208553', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'GUTTAHALLI', '', '', 0, '', 'Junaid ', '8660208553', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2194, '158', 61, '', '158', '', 'Kiran', '', '', 'info@visionsjmd.com', '', '', '', '', '8660251656', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', '', '', 0, '', 'Kiran', '8660251656', 'New', '60', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-14', '0000-00-00 00:00:00', '', '', '', ''), (2195, '158', 61, '', '158', '', 'Akash dash', '', '', 'dash33632@gmail.com', '', '', '', '', '7008720235', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 4th block', 'Bangalore', '', 0, '', 'Akash dash', '7008720235', 'New', '', 'ERP software Developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2196, '158', 61, '', '158', '', 'Raj', '', '', 'sir673@gmail.com', '', '', '', '', '9916373430', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal, Telecom layout', '', '', 0, '', 'Raj', '9916373430', 'New', '60', 'Web Application\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2197, '158', 61, '', '151', '', 'Mishra', '', '', '', '', '', '', '', '9771564720', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Mishra', '9771564720', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2198, '158', 61, '', '158', '', 'Dipak Moradiya', '', '', '', '', '', '', '', '9601015712', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sanjay nagar', 'Bangalore', '', 0, '', 'Dipak Moradiya', '9601015712', 'New', '', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2199, '158', 61, '', '158', '', 'Daniel', '', '', '', '', '', '', '', '9900001424', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Daniel', '9900001424', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2200, '158', 61, '', '158', '', 'Hashim ', '', '', '', '', '', '', '', '7795026654', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Hashim', '7795026654', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2201, '158', 61, '', '158', '', 'Customer care', '', '', '', '', '6290558254', '', '', '6290558254', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', '', '6290558254', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2202, '158', 61, '', '158', '', 'Customer care', '', '', '', '', '6289656088', '', '', '6289656088', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Yelahanka new town', 'Bangalore', '', 0, '', '', '6289656088', '', '', 'web application Developer\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2203, '158', 61, '', '158', '', 'Shilpa', '', '', '', '', '', '', '', '9986232208', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Shilpa', '9986232208', 'New', '60', 'Internet Website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2204, '158', 61, '', '158', '', 'Madhu', '', '', '', '', '', '', '', '9019564415', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', '', 0, '', 'Madhu', '9019564415', '', '', 'Computer software Developers\r\n\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2205, '158', 61, '', '158', '', 'Rahul Dixit', '', '', '', '', '', '', '', '9082101183', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ulsoor', 'Bangalore', '', 0, '', 'Rahul Dixit', '9082101183', 'New', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2206, '158', 61, '', '158', '', 'Rakshitha', '', '', '', '', '', '', '', '9986606691', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marenahalli road jaynagar', 'Bangalore', '', 0, '', 'Rakshitha', '9986606691', '', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2207, '158', 61, '', '158', '', 'Syed imran', '', '', '', '', '', '', '', '9845380106', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Syed imran', '9845380106', '', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2208, '158', 61, '', '158', '', 'Bhanu', '', '', '', '', '', '', '', '9036859664', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Bhanu', '9036859664', '', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2209, '158', 61, '', '158', '', 'Renjith', '', '', '', '', '', '', '', '8618335791', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Renjith', '8618335791', '', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2210, '158', 61, '', '158', '', 'Muskan', '', '', '', '', '', '', '', '7569122560', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Muskan', '7569122560', 'New', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2211, '158', 61, '', '158', '', 'Sachidananda', '', '', '', '', '', '', '', '8527728505', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Commercial website', 'Bangalore', '', 0, '', 'Sachidananda', '8527728505', 'New', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-15', '0000-00-00 00:00:00', '', '', '', ''), (2212, '158', 61, '', '158', '', 'Vinod', '', '', '', '', '', '', '', '8197827434', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cunningham road', '', '', 0, '', 'Vinod', '8197827434', 'New', '20', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2213, '158', 61, '', '158', '', 'Purushotham', '', '', '', '', '', '', '', '9341144731', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', '', 0, '', 'Purushotham', '9341144731', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2214, '158', 61, '', '158', '', 'Sumana Dasgupta', '', '', '', '', '', '', '', '9739299439', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'St marks road', 'Bangalore', '', 0, '', 'Sumana Dasgupta', '9739299439', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2215, '158', 61, '', '158', '', 'Gopal', '', '', '', '', '', '', '', '9845473517', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 3rd block', 'Bangalore', '', 0, '', 'Gopal', '9845473517', 'Exist', '', 'Internet website Designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2216, '158', 61, '', '158', '', 'Akarsh', '', '', '', '', '', '', '', '8861353397', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'saraswathipuram', 'Mysore', '', 0, '', 'Akarsh', '8861353397', 'New', '', 'Internet website Developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2217, '158', 61, '', '158', '', 'Ramya', '', '', '', '', '', '', '', '9742948354', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Ramya', '9742948354', 'New', '', 'Internet Website Developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2218, '158', 61, '', '158', '', 'Manoj', '', '', 'sales@pinaacle.com', '', '', '', '', '9731793793', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Belur nagasandra', 'Bangalore', '', 0, '', 'Manoj', '9731793793', 'New', '', 'Website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2219, '158', 61, '', '158', '', 'Sunil', '', '', '', '', '9066334893', '', '', '9606098888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Sunil', '9066334893', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2220, '158', 61, '', '158', '', 'Parimala ', '', '', '', '', '8067617803', '', '', '9980115251', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Parimala ', '9980115251', 'New', '60', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2221, '158', 61, '', '158', '', 'Vishanth', '', '', 'cm_basava@yahoo.co.in', '', '', '', '', '9980554498', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Vishanth', '9980554498', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2222, '158', 61, '', '158', '', 'Abdul', '', '', 'abdul.nusum@gmail.com', '', '', '', '', '9502206161', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Abdul', '9502206161', '', '', 'web application', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2223, '158', 61, '', '158', '', 'shrikanth', '', '', '', '', '', '', '', '9739840706', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'shrikanth', '9739840706', 'New', '60', 'Internet website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2224, '158', 61, '', '158', '', 'Paras', '', '', '', '', '', '', '', '7483063153', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Paras', '7483063153', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2225, '158', 61, '', '158', '', 'Amar ', '', '', '', '', '', '', '', '9448897899', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Amar ', '9448897899', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2226, '158', 61, '', '158', '', 'shrikanth', '', '', '', '', '', '', '', '9949255949', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'shrikanth', '9949255949', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2227, '158', 61, '', '158', '', 'Rahul Kumar', '', '', '', '', '', '', '', '7432052721', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', 'Rahul Kumar', '7432052721', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2228, '158', 61, '', '158', '', 'Kreeda', '', '', '', '', '', '', '', '9902232716', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Kreeda', '9902232716', '', '', 'internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-16', '0000-00-00 00:00:00', '', '', '', ''), (2229, '158', 61, '', '158', '', 'Kumar', '', '', '', '', '', '', '', '9611916420', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Kumar', '9611916420', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2230, '158', 61, '', '158', '', 'Girish', '', '', '', '', '', '', '', '9008955937', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Girish', '9008955937', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2231, '158', 61, '', '158', '', 'Bijen kumar', '', '', '', '', '', '', '', '9739952777', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Bijen kumar', '9739952777', 'New', '', 'ERP software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2232, '158', 61, '', '158', '', 'Ramesh ', '', '', '', '', '', '', '', '8328590937', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Ramesh', '8328590937', 'New', '', 'Internet Website Designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2233, '158', 61, '', '158', '', 'mark', '', '', '', '', '', '', '', '8217485429', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Mark', '8217485429', 'New', '60', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2234, '158', 61, '', '159', '', 'HTS', '', '', '', '', '6363759325', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Tk Layout ', 'Mysore', '', 0, '', 'HTS', '6363759325', '', '', 'Computer software', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2235, '158', 61, '', '158', '', 'Viraj', '', '', '', '', '', '', '', '7259995131', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Viraj', '7259995131', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2236, '158', 61, '', '158', '', 'Kishor', '', '', '', '', '', '', '', '9535288532', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapuram,', ' Bangalore', '', 0, '', 'Kishor', '9535288532', 'New', '60', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-17', '0000-00-00 00:00:00', '', '', '', ''), (2237, '158', 61, '', '158', '', 'Palash', '', '', '', '', '8609833401', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Bangalore', '', 0, '', 'Palash', '8609833401', '', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2238, '158', 61, '', '158', '', 'Sagar', '', '', 'sagargrona22@gmail.com', '', '', '', '', '9008353124', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', '', 0, '', 'Sagar', '9008353124', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2239, '158', 61, '', '158', '', 'Ganesh', '', '', 'ganeshgns09@gmail.com', '', '', '', '', '9206199552', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Ganesh', '9206199552', '', '', 'Internet website development ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2240, '158', 61, '', '158', '', 'Arunprakash', '', '', 'arun.vprakash@gmail.com', '', '', '', '', '9962561981', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Arunprakash', '9962561981', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2241, '158', 61, '', '158', '', 'Prasanakumar ready', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Prasanakumar ready', '', 'New', '', 'Internet website Designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2242, '158', 61, '', '158', '', 'Ram ', '', '', '', '', '', '', '', '8050702424', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Ram ', '8050702424', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2243, '158', 61, '', '158', '', 'Saif', '', '', '', '', '', '', '', '9325057726', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Garvebhavipalya', 'Bangalore', '', 0, '', 'Saif', '9325057726', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2244, '158', 61, '', '158', '', 'Rajesh', '', '', '', '', '', '', '', '8884804965', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Thyagaraj nagar', 'Bangalore', '', 0, '', 'Rajesh', '8884804965', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2245, '158', 61, '', '158', '', 'Rao', '', '', 'yvsrao6@gmail.com', '', '', '', '', '9740066666', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 4th block', 'Bangalore', '', 0, '', 'Rao', '9740066666', 'New', '60', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2246, '158', 61, '', '158', '', 'Jagmohan', '', '', 'bvjagmohan@gmail.com', '', '', '', '', '9845867865', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Jagmohan', '9845867865', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2247, '158', 61, '', '158', '', 'Rahul kumar ', '', '', '', '', '', '', '', '7870901286', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Rahul kumar ', '7870901286', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2248, '158', 61, '', '158', '', 'Chethan', '', '', '', '', '', '', '', '7760274658', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandra layout ', 'Bangalore', '', 0, '', 'Chethan', '7760274658', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2249, '158', 61, '', '158', '', 'Faisel', '', '', '', '', '', '', '', '9606322450', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore ', 'Bangalore', '', 0, '', 'Faisel', '9606322450', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2250, '158', 61, '', '158', '', 'Premsagar', '', '', '', '', '', '', '', '8618947392', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Premsagar', '8618947392', 'New', '', 'Mobile Application ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2251, '158', 61, '', '158', '', 'Geetha', '', '', '', '', '', '', '', '9739865114', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Geetha ', '9739865114', 'New', '', 'Computer software developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2252, '158', 61, '', '158', '', 'Abhishek Pathak', '', '', '', '', '6290777944', '', '', '', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Abhishek Pathak', '6290777944', '', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2253, '158', 61, '', '158', '', 'Pearl', '', '', '', '', '', '', '', '9513512233', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 4th block', 'Bangalore', '', 0, '', 'Pearl', '9513512233', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2254, '158', 61, '', '158', '', 'Nagma', '', '', '', '', '', '', '', '9035544736', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Nagma', '9035544736', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2255, '158', 61, '', '158', '', 'Kushi', '', '', '', '', '', '', '', '9426680511', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mahadevapura', 'Bangalore', '', 0, '', 'Kushi', '9426680511', 'New', '', 'Mobile application ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2256, '158', 61, '', '158', '', 'Reshma', '', '', '', '', '', '', '', '7997496651', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Reshma', '7997496651', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2257, '158', 61, '', '158', '', 'Shivu', '', '', '', '', '', '', '', '9591134134', 'shivrajshivuu23@gmail.com', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Shivu', '9591134134', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2258, '158', 61, '', '158', '', 'Padmaraj', '', '', 'padmarajgl@gmail.com', '', '', '', '', '9448179135', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari ', 'Bangalore', '', 0, '', 'Padmaraj', '9448179135', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2259, '158', 61, '', '158', '', 'Rakesh', '', '', '', '', '', '', '', '8073230116', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Venkateshwara layout', 'Bangalore', '', 0, '', 'Rakesh', '8073230116', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2260, '158', 61, '', '158', '', 'Jogen', '', '', '', '', '', '', '', '9862113671', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Jogen', '9862113671', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2261, '158', 61, '', '158', '', 'Dinesh ', '', '', 'thanadhi8680@gmail.com', '', '', '', '', '9353112624', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishanamurthypuram ', 'Mysore', '', 0, '', 'Dinesh ', '9353112624', 'New', '', 'Mobile application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2262, '158', 61, '', '158', '', 'Saravana', '', '', '', '', '', '', '', '9845598010', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', '', 0, '', 'Saravana', '9845598010', 'New', '60', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (2263, '158', 61, '', '158', '', 'Madu', '', '', '', '', '', '', '', '7848888845', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'wilson Garden', 'Bangalore', '', 0, '', 'Madu', '7848888845', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2264, '158', 61, '', '158', '', 'Naveen', '', '', 'naveenrajbk@gmail.com', '', '', '', '', '8553686626', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Naveen ', '8553686626', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2265, '158', 61, '', '158', '', 'Venktesh', '', '', '', '', '', '', '', '9986040567', '', 'Chat', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Venktesh ', '9986040567', 'New', '', 'Sales', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2266, '158', 61, '', '158', '', 'Pushparani', '', '', '', '', '', '', '', '9148109160', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Pushparani', '9148109160', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2267, '158', 61, '', '158', '', 'Veerbhadrapp', '', '', '', '', '', '', '', '9035651730', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Veerbhadrapp', '9035651730', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2268, '158', 61, '', '158', '', 'Prasad', '', '', 'narravulaleelaprasad@gmail.com', '', '', '', '', '9964534917', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Prasad', '9964534917', 'New', '', 'Internet website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2269, '158', 61, '', '158', '', 'Ryan', '', '', 'lionebenezar@gmail.com', '', '', '', '', '9110444491', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanhalli ', 'Bangalore', '', 0, '', 'Ryan', '9110444491', 'New', '80', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2270, '158', 61, '', '158', '', 'Hussain', '', '', '', '', '', '', '', '7760744980', '', 'Just Dial', 'Contact in future', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', '', 0, '', 'Hussain', '7760744980', 'New', '80', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2271, '158', 61, '', '158', '', 'Palash', '', '', '', '', '', '', '', '8609833401', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Palash', '8609833401', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2272, '158', 61, '', '158', '', 'Yashu', '', '', '', '', '', '', '', '9742024201', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar 1st block', 'Bangalore', '', 0, '', 'Yashu', '9742024201', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2273, '158', 61, '', '158', '', 'Rajesh', '', '', 'sushmaray@gmail.com', '', '', '', '', '9980101808', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijay bank layout ', ' Bangalore', '', 0, '', 'Rajesh', '9980101808', 'New', '', 'Website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2275, '158', 61, '', '158', '', 'Anand ', '', '', 'anantha.girish@gmail.com', '', '', '', '', '8660225979', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Anand ', '8660225979', 'New', '', 'Internet website developers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2276, '158', 61, '', '158', '', 'Narshima', '', '', 'murthyn67@gmail.com', '', '', '', '', '8861883142', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Narshima', '8861883142', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2277, '158', 61, '', '158', '', 'Raj', '', '', '', '', '', '', '', '9060498864', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vidyaranyapura block 1', 'Bangalore', '', 0, '', 'Raj', '9060498864', 'New', '', 'Internet website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2278, '158', 61, '', '158', '', 'Shrinidhi', '', '', '', '', '', '', '', '7406282999', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari 3rd stage ', 'Bangalore', '', 0, '', 'Shrinidhi', '7406282999', '', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2279, '158', 61, '', '158', '', 'Shyam', '', '', '', '', '', '', '', '9731701819', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'naganathapura, ', 'Bangalore', '', 0, '', 'Shyam', '9731701819', '', '', 'Internet website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2280, '158', 61, '', '158', '', 'Vijay ', '', '', 'vymmaanika23@gmail.com', '', '', '', '', '8310796901', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Vijay ', '8310796901', 'New', '60', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-21', '0000-00-00 00:00:00', '', '', '', ''), (2281, '158', 61, '', '158', '', 'chotu', '', '', 'rk6562022@gmail.com', '', '', '', '', '8050446593', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'chotu', '8050446593', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2282, '158', 61, '', '158', '', 'Muniraj', '', '', 'muniraj.rohith@yahoo.com', '', '', '', '', '8147233442', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Muniraj', '8147233442', 'New', '', 'Internet website designers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2283, '158', 61, '', '158', '', 'Anthony', '', '', '', '', '', '', '', '7348831747', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Anthony', '7348831747', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2284, '158', 61, '', '158', '', 'Rakesh', '', '', '', '', '', '', '', '8073230116', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Venkateshwara layout', 'Bangalore', '', 0, '', 'Rakesh ', '8073230116', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2285, '158', 61, '', '158', '', 'Umed', '', '', '', '', '', '', '', '8310073437', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram ', 'Mysore', '', 0, '', 'Umed', '8310073437', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2286, '158', 61, '', '158', '', 'Chandru ', '', '', '', '', '', '', '', '7022655464', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Chandru ', '7022655464', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2287, '158', 61, '', '158', '', 'Meenakshi', '', '', '', '', '', '', '', '8825482140', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Meenakshi', '8825482140', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2288, '158', 61, '', '158', '', 'Faisel', '', '', '', '', '9036556147', '', '', '8618381683', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Faisel', '8618381683', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2289, '158', 61, '', '158', '', 'Ankita biswas', '', '', '', '', '', '', '', '9110138735', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Belandur', 'Bangalore ', '', 0, '', 'Ankita biswas', '9110138735', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2290, '158', 61, '', '158', '', 'Mudassir pasha', '', '', '', '', '', '', '', '8310977873', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Mudassir pasha', '8310977873', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2291, '158', 61, '', '158', '', 'Rangnath', '', '', '', '', '', '', '', '9844764476', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', '', 0, '', 'Rangnath', '9844764476', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2292, '158', 61, '', '158', '', 'Praveen', '', '', 'praveentejyst@gmail.com', '', '', '', '', '8217614327', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Richmond town', 'Bangalore', '', 0, '', 'Praveen', '8217614327', 'New', '60', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2293, '158', 61, '', '158', '', 'Raza ', '', '', '', '', '', '', '', '7994380062', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala 4th stage', 'Bangalore', '', 0, '', 'Raza', '7994380062', 'New', '', 'Internet website Developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2294, '158', 61, '', '158', '', 'Venktesh', '', '', '', '', '', '', '', '7019371322', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bnagalore', '', 0, '', 'Venkatesh', '7019371322', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2295, '158', 61, '', '158', '', 'Mythili', '', '', '', '', '', '', '', '9620052699', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Cvraman road', 'Bangalore', '', 0, '', 'Mythili', '9620052699', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2296, '158', 61, '', '', '', 'Aanya gupta sadana', '', '', '', '', '', '', '', '7895255734', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', '', 0, '', 'Aanya gupta sadana', '7895255734', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2297, '158', 61, '', '158', '', 'Aanya gupta sadana', '', '', '', '', '', '', '', '7895255734', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', '', 0, '', 'Aanya gupta sadana', '7895255734', '', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2298, '158', 61, '', '158', '', 'Gopal', '', '', '', '', '', '', '', '8296317475', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Anjanpura', 'Bangalore', '', 0, '', 'Gopal', '8296317475', 'New', '60', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-22', '0000-00-00 00:00:00', '', '', '', ''), (2299, '158', 61, '', '158', '', 'Sudhir', '', '', 'sweetheartsudhi@gmail.com', '', '', '', '', '9620307008', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Sudhir', '9620307008', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2300, '158', 61, '', '158', '', 'Sibi ravi', '', '', '', '', '', '', '', '7871969149', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Sibi Ravi', '7871969149', '', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2301, '158', 61, '', '158', '', 'Hursh Rathod', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Hursh Rathod', '944891593', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2302, '158', 61, '', '158', '', 'Lalit', '', '', '', '', '', '', '', '7000484146', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Lalit', '7000484146', '', '', 'Internet website developers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2303, '24', 69, '', '', 'Mrigneha', 'Mayank', '', '', 'pramanikmrigank@gmail.com', '', '', '', '', '8217640793', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2304, '158', 61, '', '158', '', 'manish singh', '', '', 'manish1611015@gmail.com', '', '', '', '', '8147226751', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'manish singh', '8147226751', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2305, '158', 61, '', '158', '', 'Meghana', '', '', 'meghagowda0804@gmail.com', '', '', '', '', '9663588215', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', '', 0, '', 'Meghana', '9663588215', 'New', '', 'Computer software dealers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2306, '158', 61, '', '158', '', 'Raju', '', '', '', '', '', '', '', '7892373784', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', ' Bangalore', '', 0, '', 'Raju', '7892373784', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2307, '158', 61, '', '158', '', 'Suprabh', '', '', '', '', '', '', '', '8762393054', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout 1st stage', 'Bangalore', '', 0, '', 'Suprabh', '8762393054', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2308, '24', 69, '', '24', 'Vedic Vedant', 'Sanjay', 'Tiwari', '', 'tiwari_san@rediffmail.com', '', '', '', '', '', 'vedicvedant.com', 'Existing Client Reference', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Gurgaon', 'New Delhi', '', 0, '', 'Sanjay Tiwari', '9818848249', 'New', '', 'Changes in existing application', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2309, '158', 61, '', '158', '', 'mahalakshmi', '', '', '', '', '', '', '', '9513151781', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kumara park west', 'Bangalore', '', 0, '', 'mahalakshmi', '9513151781', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2310, '158', 61, '', '158', '', 'Javed', '', '', 'javedkhannippongroup@gmail.com', '', '', '', '', '9148036073', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', '', 0, '', 'Javed', '9148036073', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2311, '158', 61, '', '158', '', 'Shanmukha', '', '', 'deepubelgodu@gmail.com', '', '', '', '', '9632367625', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Shanmukha', '9632367625', 'New', '', 'Android application developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2312, '158', 61, '', '158', '', 'Sanju Bhashar', '', '', 'sanjuvfxpro@gmail.com', '', '', '', '', '7907543423', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kadubeesanahalli', 'bangalore', '', 0, '', '', '7907543423', 'New', '', 'Mobile application software', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2313, '158', 61, '', '158', '', 'Manjunath dasappa', '', '', 'manjudasappa@gmail.com', '', '', '', '', '9845061123', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'JP nagar', 'Bangalore', '', 0, '', 'Manjunath dasappa', '9845061123', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2314, '158', 61, '', '158', '', 'Swathi', '', '', '', '', '', '', '', '7780258854', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', '', 0, '', 'Swathi', '7780258854', 'New', '', 'Computer software dealers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2315, '158', 61, '', '', '', 'shri hari', '', '', '', '', '', '', '', '8197650220', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', '', 0, '', 'Shri hari', '8197650220', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2316, '158', 61, '', '158', '', 'Naganagouda', '', '', '', '', '', '', '', '7026823541', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'naganagouda', '7026823541', '', '', 'Mobile application developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2317, '158', 61, '', '158', '', 'Vinod ', '', '', '', '', '', '', '', '9980581160', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'Vinod ', '9980581160', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2318, '158', 61, '', '158', '', 'Samiulla khan', '', '', '', '', '', '', '', '9743411432', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 1st phase', 'Bangalore', '', 0, '', 'Samiulla khan', '9743411432', 'New', '', 'internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2319, '158', 61, '', '158', '', 'Ashok', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shantinagar', 'Bangalore', '', 0, '', 'Ashok', '6203987911', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2320, '158', 61, '', '158', '', 'Anand', '', '', '', '', '', '', '', '9734975749', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', ' Bangalore', '', 0, '', 'Anana', '9734975749', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2321, '158', 61, '', '158', '', 'Singh', '', '', '', '', '', '', '', '8919897975', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', 'Singh', '8919897975', 'New', '', 'Web application developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2322, '158', 61, '', '158', '', 'Kuea Mk', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jagdish nagar', 'Bangalore', '', 0, '', 'Kuea Mk', '6289227184', '', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2323, '158', 61, '', '158', '', 'Jaya Garg', '', '', '', '', '', '', '', '8790000097', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Jaya Garg', '8790000097', '', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2324, '158', 61, '', '158', '', 'Hena', '', '', '', '', '', '', '', '9880796968', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Hena', '9880796968', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2325, '158', 61, '', '158', '', 'Mr', '', '', '', '', '', '', '', '7829881640', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Mr', '7829881640', 'New', '', 'Computer software developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2326, '158', 61, '', '158', '', 'Likith', '', '', '', '', '9008946136', '', '', '9590626162', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'rajarajeshwari nagar', 'Bangalore', '', 0, '', 'Likith', '9008946136', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2327, '158', 61, '', '158', '', 'Abhishek Dileep', '', '', '', '', '6362278214', '', '', '6362278214', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '6362278214', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2328, '158', 61, '', '158', '', 'Shri hari', '', '', '', '', '', '', '', '8197650220', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', '', 0, '', 'Shri hari', '8197650220', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2329, '158', 61, '', '158', '', 'Parth', '', '', '', '', '', '', '', '7385345977', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Parth', '7385345977', 'New', '', 'Mobile application software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2330, '158', 61, '', '158', '', 'Vaishak roy', '', '', '', '', '', '', '', '9741416109', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Vaishak roy', '9741416109', 'New', '', 'Android application', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2331, '158', 61, '', '158', '', 'Ratnadip Debbarama', '', '', '', '', '', '', '', '9066243205', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sidedahalli', 'Bangalore', '', 0, '', 'Ratnadip Debbarama', '9066243205', 'New', '', 'Web application', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2332, '158', 61, '', '158', '', 'Kaushal', '', '', '', '', '', '', '', '8830384023', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'bommanahalli', 'Bangalore', '', 0, '', 'Kaushal', '8830384023', 'New', '', 'ERP software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-25', '0000-00-00 00:00:00', '', '', '', ''), (2333, '158', 61, '', '158', '', 'sandeep R ', 'singh', '', 'sandeepsingh7@gmail.com', '', '', '', '', '8800910743', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Sandeep', '8800910743', 'New', '60', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2334, '158', 61, '', '158', '', 'Balu', '', '', 'mr.bnaik@gmail.com', '', '', '', '', '9945525366', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', '', 0, '', 'Balu', '9945525366', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2335, '158', 61, '', '158', '', 'Raghuram', '', '', '', '', '', '', '', '8310271248', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', '', 0, '', 'Raghuram', '8310271248', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2336, '158', 61, '', '158', '', 'Amrith', '', '', '', '', '', '', '', '7019212825', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Amrith', '7019212825', 'New', '', 'Mobile application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2337, '158', 61, '', '158', '', 'Abhishek R Nair', '', '', 'abhishekchennichala6@gmail.com', '', '', '', '', '9742390511', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Abhishek R Nair', '9742390511', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2338, '158', 61, '', '158', '', 'Kumar', '', '', '', '', '', '', '', '8867426600', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Kumar ', '8867426600', 'New', '', 'Mobile application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2339, '158', 61, '', '158', '', 'Pramod', '', '', 'appipramod@gmail.com', '', '', '', '', '8147523532', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Pramod', '8147523532', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2340, '158', 61, '', '158', '', 'Gupta', '', '', '', '', '', '', '', '9620125933', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Gupta', '9620125933', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2341, '158', 61, '', '', '', 'Mohammed', '', '', 'kmn9487@gmail.com', '', '', '', '', '9972369687', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Bangalore', '', 0, '', 'Mohammed', '9972369687', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2342, '158', 61, '', '158', '', 'Mohammed', '', '', 'kmn9487@gmail.com ', '', '', '', '', '9972369687', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Mohammed', '9972369687', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2343, '158', 61, '', '158', '', 'Sandhya', '', '', '', '', '', '', '', '8618271241', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bogadi', 'Mysore', '', 0, '', 'Sandhya', '8618271241', 'New', '', 'Computer software developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2345, '158', 61, '', '158', '', 'Chandru', '', '', '', '', '', '', '', '9701448415', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', '', 0, '', 'chandru', '9701448415', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2346, '158', 61, '', '158', '', 'Praveen Kumar', '', '', '', '', '', '', '', '8280711621', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Praveen Kumar', '8280711621', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2347, '158', 61, '', '158', '', 'Jagan', '', '', '', '', '', '', '', '9500321234', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kathriguppe main road', 'Bangalore', '', 0, '', 'Jagan', '9500321234', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2348, '158', 61, '', '158', '', 'Dileep', '', '', 'dileeprp1@gmail.com', '', '', '', '', '9591843473', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', '', 0, '', 'Dileep', '9591843473', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2349, '158', 61, '', '158', '', 'Afsan', '', '', 'asfanbasha49@gmail.com', '', '', '', '', '8660420499', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'JP nagr', 'Bangalore', '', 0, '', 'Afsan', '8660420499', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2350, '158', 61, '', '158', '', 'Mani', '', '', '', '', '', '', '', '9788614205', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Adugodi', 'Bangalore', '', 0, '', 'Mani', '9788614205', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2351, '158', 61, '', '158', '', 'Rajasekhar', '', '', '', '', '', '', '', '8553997859', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Rajasekhar', '8553997859', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2352, '158', 61, '', '158', '', 'Sujatha', '', '', '', '', '', '', '', '9620001960', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram', 'Mysore', '', 0, '', 'sujatha', '9620001960', 'New', '20', 'Computer software developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2353, '158', 61, '', '158', '', 'Laksmipathy', '', '', '', '', '', '', '', '9844443562', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', '', 0, '', 'Laksmipathy', '9844443562', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2354, '158', 61, '', '158', '', 'Gayathri', '', '', '', '', '', '', '', '9986600826', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', '', 0, '', 'Gayathri', '9986600826', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2355, '158', 61, '', '158', '', 'MVK hospitals ', '', '', 'info@mvkhospitals.com', '', '', '', '', '9566201833', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'MVK Hospitals', '9566201833', '', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2356, '158', 61, '', '', '', 'Rohith', '', '', '', '', '', '', '', '9740795824', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar ', 'Bangalore', '', 0, '', 'Rohith', '9740795824', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2357, '158', 61, '', '158', '', 'Rohith', '', '', '', '', '', '', '', '9740795824', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', '', 0, '', 'Rohith', '9740795824', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2358, '158', 61, '', '158', '', 'Harish', '', '', 'harishakgowda@gmail.com', '', '', '', '', '7829390133', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', '', 0, '', 'Harish', '7829390133', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2359, '158', 61, '', '158', '', 'saif', '', '', '', '', '', '', '', '9510031003', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Brigade road', ' Bangalore', '', 0, '', 'Saif', '9510031003', 'New', '', 'Mobile application software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2360, '158', 61, '', '158', '', 'Shivprasad', '', '', '', '', '', '', '', '9008532836', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Shivprasad', '9008532836', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-27', '0000-00-00 00:00:00', '', '', '', ''), (2361, '158', 61, '', '158', '', 'Dinesh sakhalkar', '', '', '', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Dinesh sakhalkar', '8999314243', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2362, '158', 61, '', '158', '', 'Ravi', '', '', '', '', '', '', '', '9742172776', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', '', 0, '', 'Ravi', '9742172776', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2363, '158', 61, '', '158', '', 'Nadhiya', '', '', '', '', '', '', '', '8897072445', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar 1st phase', 'Bangalore', '', 0, '', 'Nadhiya', '8897072445', 'New', '', 'Web applications', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2364, '158', 61, '', '158', '', 'Mahesh ', '', '', '', '', '6363022271', '', '', '8904133303', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Mahesh ', '6363022271', 'New', '60', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2365, '158', 61, '', '158', '', 'Siddhu', '', '', '', '', '', '', '', '7411180666', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sadananda nagar', 'Bangalore', '', 0, '', 'Sindu', '7411180666', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2366, '158', 61, '', '158', '', 'Pavithra', '', '', 'goldenjgroups83@gmail.com', '', '', '', '', '7676880854', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', '', 0, '', 'Pavithra', '7676880854', 'New', '20', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2367, '158', 61, '', '158', '', 'Gaurav Bhandari', '', '', '', '', '', '', '', '8453874666', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Mysore', '', 0, '', 'Gaurav Bhandari', '8453874666', '', '', 'Computer software dealers-tally\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2368, '158', 61, '', '158', '', 'Madhu', '', '', 'madhuu@nds.com', '', '', '', '', '9886192155', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', '', 0, '', 'Madhu', '9886192155', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2369, '158', 61, '', '158', '', 'Manjunath', '', '', '', '', '', '', '', '9916383872', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Manjunath', '9916383872', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2370, '158', 61, '', '158', '', 'Bairava', '', '', '', '', '', '', '', '9606744666', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari 1st stage', 'Bangalore', '', 0, '', 'Bairava', '9606744666', '', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2371, '158', 61, '', '158', '', 'Krishana kumar', '', '', '', '', '', '', '', '7338986319', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', '', 0, '', 'Krishana kumar ', '7338986319', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2372, '158', 61, '', '158', '', 'Asif', '', '', '', '', '', '', '', '9164456725', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Asif', '9164456725', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2373, '158', 61, '', '158', '', 'Krishana', '', '', 'krishnay9@gmail.com', '', '', '', '', '9740428279', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosur road ', 'Bangalore', '', 0, '', 'krishana', '9740428279', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2374, '158', 61, '', '158', '', 'Goutham ', '', '', 'goutambasuadvocate@gmail.com', '', '', '', '', '9434004879', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '9434004879', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2375, '158', 61, '', '158', '', 'Poorna Nanda', '', '', 'poornandan@gmail.com', '', '', '', '', '8050000012', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Race cource road', 'Bangalore', '', 0, '', 'Poorna Nanda', '8050000012', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2376, '158', 61, '', '158', '', 'Ankit sharma', '', '', '', '', '', '', '', '8619525209', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '8619525209', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2377, '158', 61, '', '158', '', 'Suhail', '', '', '', '', '', '', '', '8491093249', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Suhail', '8491093249', 'New', '', 'Mobile application developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2378, '158', 61, '', '158', '', 'Brahma Creations', '', '', '', '', '', '', '', '8618990135', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road', '', '', 0, '', 'Brahma Creations', '8618990135', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-28', '0000-00-00 00:00:00', '', '', '', ''), (2379, '158', 61, '', '158', '', 'Naveed Ahmed', '', '', '', '', '', '', '', '8861061819', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Naveed Ahmed', '8861061819', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2380, '158', 61, '', '158', '', 'Bala muralikrishana', '', '', 'bmchoundary3@gmail.com', '', '', '', '', '8309396356', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Horamavu', 'Bangalore', '', 0, '', 'Bala muralikrishana', '8309396356', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2381, '158', 61, '', '158', '', 'Karthikeyan', '', '', 'message2vtech@outlook.com', '', '', '', '', '7090760008', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', '', 0, '', 'Karthikeyan', '7090760008', 'New', '60', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2382, '158', 61, '', '158', '', 'Sathish', '', '', 'mickey8032@gmail.com', '', '', '', '', '8892686685', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Sathish', '8892686685', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2383, '158', 61, '', '158', '', 'Swathi', '', '', '', '', '', '', '', '7780258854', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', '', 0, '', 'Swathi', '7780258854', 'Exist', '', 'computer software dealers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2384, '158', 61, '', '158', '', 'Gayathri', '', '', 'gayatrichaturvedi.kumaresh@tx.consentrix.com', '', '', '', '', '9886056645', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Gayathri', '9886056645', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2385, '158', 61, '', '158', '', 'Chaitra', '', '', 'adarshbellur@gmail.com', '', '', '', '', '8310556946', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari ', 'Bangalore', '', 0, '', 'Chaitra', '8310556946', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2386, '158', 61, '', '158', '', 'Sindhu suresh', '', '', '', '', '', '', '', '9986675873', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Eurokids pre school, Ullalu', 'Bangalore', '', 0, '', 'Sindu suresh', '9986675873', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2387, '158', 61, '', '158', '', 'Pavithra', '', '', '', '', '', '', '', '8056967919', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'jaynagar 9th block', 'Bangalore', '', 0, '', 'Pavithra', '8056967919', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2388, '158', 61, '', '158', '', 'Ranjith', '', '', '', '', '', '', '', '8142262828', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Padmanabhangar', 'Bangalore', '', 0, '', 'Ranjith', '8142262828', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2389, '158', 61, '', '158', '', 'Swathi Karanth', '', '', '', '', '', '', '', '9686587898', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Swathi Karanth', '9686587898', '', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2390, '158', 61, '', '158', '', 'Prajwal', '', '', '', '', '', '', '', '9113987307', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', '', 0, '', 'Prajwal', '91139387307', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2391, '158', 61, '', '158', '', 'Pavan ', 'gujjar', '', '', '', '', '', '', '8050979177', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'Pavan gujjar', '8050979177', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2392, '158', 61, '', '158', '', 'Lakkana', '', '', '', '', '', '', '', '8197605161', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Lakkana', '8197605161', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2393, '158', 61, '', '158', '', 'Muzambil', '', '', 'muhammedzabisheik17@gmail.com', '', '', '', '', '7019932136', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', '', 0, '', 'Muzambil', '7019932136', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2394, '158', 61, '', '158', '', 'Faizal', '', '', 'ahufaizal357@gmail.com', '', '', '', '', '9986991867', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Faizal', '9986991867', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2395, '158', 61, '', '158', '', 'Gagan', '', '', '', '', '', '', '', '9527625646', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Gagan', '9527625646', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2396, '158', 61, '', '158', '', 'Pradeep', '', '', 'pradeep.bms@gmail.com', '', '', '', '', '9008031510', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthala Nagar', 'Bangalore', '', 0, '', 'Pradeep', '9008031510', 'New', '20', 'ERP software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2397, '158', 61, '', '158', '', 'Solomon', '', '', 'gvsolomon.gd@gmail.com', '', '', '', '', '8971409455', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Sarjapura', 'Bangalore', '', 0, '', 'Solomon ', '8971409455', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-29', '0000-00-00 00:00:00', '', '', '', ''), (2398, '158', 61, '', '158', '', 'Harish ', '', '', '', '', '', '', '', '8443811111', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Harish', '8443811111', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2399, '158', 61, '', '158', '', 'Harshitha ', '', '', '', '', '', '', '', '9739235759', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Harshitha', '9739235759', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2401, '158', 61, '', '158', '', 'Mohammed Ismail', '', '', 'md.ismail@ziasemi.com', '', '', '', '', '9591252254', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Langford town', 'Bangalore', '', 0, '', 'Mohammed Ismail', '9591252254', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2402, '158', 61, '', '158', '', 'Vivek Kumar', '', '', 'vivek@prachin.co.in', '', '', '', '', '9916558655', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Vivek Kumar', '9916558655', 'New', '', 'Web designing service ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2403, '158', 61, '', '158', '', 'Basavaraj', '', '', 'basukusha@gmail.com', '', '', '', '', '9035361005', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hootgali', 'Mysore', '', 0, '', 'Basavaraj', '9035361005', 'New', '', 'Computer software developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2404, '158', 61, '', '158', '', 'Usha', '', '', '', '', '', '', '', '8618350516', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', '', 0, '', 'Usha', '8618350516', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2405, '158', 61, '', '158', '', 'Swarpoopa raj', '', '', '', '', '', '', '', '7676144935', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Swarpoopa raj', '', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2406, '158', 61, '', '158', '', 'Megha agarwal', '', '', '', '', '', '', '', '9735056036', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala 6th block ', 'Bangalore', '', 0, '', 'Megha agarwal', '9735056036', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2407, '158', 61, '', '158', '', 'Suhel', '', '', '', '', '', '', '', '9591873802', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Suhel', '9591873802', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2408, '158', 61, '', '158', '', 'Shipla', '', '', '', '', '', '', '', '9022118997', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Shilpa', '9022118997', 'New', '20', 'Mobile application software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2409, '158', 61, '', '158', '', 'Akash chandra', '', '', '', '', '', '', '', '7975502134', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Akash chandra', '7975502134', 'New', '20', 'Internet website designs', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2410, '158', 61, '', '158', '', 'Claire', '', '', '', '', '', '', '', '9845656276', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Old madras road', 'Bangalore', '', 0, '', 'Claire', '9845656276', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2411, '158', 61, '', '158', '', 'Saravana', '', '', '', '', '', '', '', '9663654526', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Saravana', '9663654526', 'New', '', 'Internet website developers\r\n\r\n\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2412, '158', 61, '', '158', '', 'Khan', '', '', '', '', '', '', '', '8073498327', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Khan', '8073498327', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2413, '158', 61, '', '158', '', 'Suprabha', '', '', '', '', '', '', '', '7975763320', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', '', 0, '', 'Suprabha', '7975763320', 'New', '', 'internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2414, '158', 61, '', '', '', 'Nisha', '', '', '', '', '', '', '', '9538552914', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar ', 'Bangalore', '', 0, '', 'Nisha', '9538552914', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2415, '158', 61, '', '158', '', 'Anitha', '', '', '', '', '', '', '', '9901466988', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'sadhashivnagar', 'Bangalore', '', 0, '', 'Anitha', '9901466988', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2416, '158', 61, '', '158', '', 'Kumar', '', '', '', '', '', '', '', '9880787879', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Kumar', '9880787879', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2417, '158', 61, '', '158', '', 'Sidharth Sharma', '', '', '', '', '', '', '', '9664423126', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', '', 0, '', 'Sidharth Sharma', '9664423126', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2418, '158', 61, '', '158', '', 'Bhakiti Josh', '', '', '', '', '', '', '', '7506065280', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Bhakiti Josh', '7506065280', 'New', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2419, '158', 61, '', '158', '', 'Nanndakishore', '', '', '', '', '', '', '', '9980811750', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', '', 0, '', 'Nanndakishore', '9980811750', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2420, '158', 61, '', '158', '', 'Raju Truvesh', '', '', '', '', '', '', '', '6358081529', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'bannerghatta road', 'Bangalore', '', 0, '', '', '6358081529', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-30', '0000-00-00 00:00:00', '', '', '', ''), (2421, '158', 61, '', '158', '', 'Ganga', '', '', '', '', '', '', '', '8123670596', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajaarajeshwari nagar', 'Bangalore', '', 0, '', 'Ganga', '8123670596', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2422, '158', 61, '', '158', '', 'Nithin', '', '', '', '', '', '', '', '9164945179', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', '', 0, '', 'Nithin', '9164945179', 'New', '20', 'website designing service \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2423, '158', 61, '', '158', '', 'Sunil ', '', '', 'bluechipmys@gmail.com', '', '', '', '', '7348977948', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kuvempunagar', 'Mysore', '', 0, '', 'Sunil', '7348977948', 'New', '', 'Internet website designs ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2424, '158', 61, '', '158', '', 'Riya', '', '', '', '', '', '', '', '9886780228', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ashoknagar', 'Bangalore', '', 0, '', 'Riya', '9886780228', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2425, '158', 61, '', '158', '', 'Pranab Dutta', '', '', 'imlucky7@gmail.com', '', '', '', '', '9831445844', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Pranab Dutta', '9831445844', 'New', '', 'ERP software ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2426, '158', 61, '', '158', '', 'Rahul', '', '', '', '', '', '', '', '9903149532', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleshpalya', 'Bangalore', '', 0, '', 'Rahul', '9903149532', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2427, '158', 61, '', '158', '', 'Prasannakumar readdy', '', '', '', '', '', '', '', '7411124842', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', '', 0, '', 'Prasannakumar readdy', '7411124842', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2428, '158', 61, '', '158', '', 'Sagar', '', '', 'meghs.spandana@gmail.com', '', '', '', '', '9606806667', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kathriguppe ', 'Bangalore', '', 0, '', 'Sagar', '9606806667', 'New', '', 'Internet website designers\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2429, '158', 61, '', '158', '', 'Janagaran annamalai', '', '', '', '', '', '', '', '9741800005', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'MS palya', 'Bangalore', '', 0, '', 'Janagaran annamalai', '9741800005', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2430, '158', 61, '', '158', '', 'Sandhya', '', '', '', '', '', '', '', '8618271241', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Saraswathipuram ', 'Mysore', '', 0, '', 'Sandhya', '8618271241', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2431, '158', 61, '', '158', '', 'Aman', '', '', '', '', '', '', '', '8085853989', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Aman', '8085853989', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2432, '158', 61, '', '158', '', 'Yasmeen banu', '', '', '', '', '', '', '', '8722093897', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Yasmeen banu', '8722093897', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2433, '158', 61, '', '158', '', 'Nagraj', '', '', '', '', '', '', '', '9342254946', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'AGS layout', 'Bangalore', '', 0, '', 'Nagraj', '9342254946', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2434, '158', 61, '', '158', '', 'Suresh', '', '', '', '', '', '', '', '9650148627', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefiled ', 'Bangalore', '', 0, '', 'Suresh', '9650148627', '', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2435, '158', 61, '', '158', '', 'Chethan', '', '', 'chetan.r@sarovarinfotech.com', '', '', '', '', '7259604672', '', 'Website Research', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Chethan', '7259604672', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2436, '158', 61, '', '158', '', 'Mithun', '', '', '', '', '', '', '', '7736331722', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Mithun', '7736331722', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-05-31', '0000-00-00 00:00:00', '', '', '', ''), (2437, '158', 61, '', '158', '', 'Rajeev', '', '', '', '', '', '', '', '9880487839', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', '', 0, '', 'Rajeev', '9880487839', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2438, '158', 61, '', '158', '', 'Siddanth', '', '', '', '', '', '', '', '7620361284', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 9th block', 'Bangalore', '', 0, '', 'Siddanth', '7620361284', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2439, '158', 61, '', '158', '', 'Ravi', '', '', 'gaurav_wedzin@yahoo.co.in', '', '', '', '', '9886886145', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kammanhalli ', 'Bangalore', '', 0, '', 'Ravi', '9886886145', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2440, '158', 61, '', '158', '', 'Rajeev', '', '', '', '', '', '', '', '9880487839', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', '', 0, '', 'Rajeev', '9880487839', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2441, '158', 61, '', '158', '', 'Jothi', '', '', '', '', '', '', '', '9620286662', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari', 'Bangalore', '', 0, '', 'Jothi', '9620286662', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2442, '158', 61, '', '158', '', 'Lakshit', '', '', '', '', '', '', '', '9205901289', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '9205901289', 'Bangalore', '', 0, '', 'Lakshit', '', 'New', '20', 'internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2443, '158', 61, '', '158', '', 'Sunil', '', '', 'sunilsun8@gmail.com', '', '', '', '', '9731645393', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Sunil', '9731645393', '', '', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2444, '158', 61, '', '158', '', 'Sumith', '', '', 'dizzartinteriors@hotmail.com ', '', '', '', '', '9071321034', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Sumith', '9071321034', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2445, '158', 61, '', '158', '', 'Neelakanta', '', '', '', '', '', '', '', '9343553355', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Neelakanta', '9343553355', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2446, '158', 61, '', '158', '', 'Bhanu prakash', '', '', 'bhanuprakashbandaru629@gmail.com', '', '', '', '', '9014692397', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Bhanu prakash', '9014692397', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2447, '158', 61, '', '158', '', 'Rajib Lochan Patra', '', '', 'rajibparta092@gmail.com', '', '', '', '', '7008919035', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Rajib Lochan Patra', '7008919035', 'New', '', 'E-commerce website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2448, '158', 61, '', '158', '', 'Ajay', '', '', '', '', '', '', '', '7338396666', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Ajay', '7338396666', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2449, '158', 61, '', '158', '', 'Ramanand', '', '', 'saraswathichandra28@gmail.com', '', '', '', '', '9739805074', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'RT nagar', 'Bangalore', '', 0, '', 'Ramanand', '9739805074', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2450, '158', 61, '', '158', '', 'Dilraj', '', '', '', '', '', '', '', '9739901247', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', '', 0, '', 'Dilraj', '9739901247', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2451, '158', 61, '', '158', '', 'Kiran', '', '', 'kirann0528@gmail.com', '', '', '', '', '7899930193', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'Kiran', '7899930193', 'New', '20', 'Web application ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2452, '158', 61, '', '158', '', 'Ranganath', '', '', 'srivijaylakshmiprinters@gmail.com', '', '', '', '', '7349057709', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Ranganath', '7349057709', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2453, '158', 61, '', '158', '', 'Nandkumar', '', '', 'nandkumartech@gmail.com ', '', '', '', '', '9538538786', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', '', 0, '', 'Nandkumar', '9538538786', 'New', '20', 'Internet website developers', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2454, '158', 61, '', '158', '', 'Shree', '', '', 'sushilmodgil@yahoo.com', '', '', '', '', '9741887744', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road', 'Bangalore', '', 0, '', 'Shree', '9741887744', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2455, '158', 61, '', '158', '', 'Nisha', '', '', '', '', '', '', '', '9538552914', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar ', 'Bangalore', '', 0, '', 'Nisha', '9538552914', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2456, '158', 61, '', '158', '', 'Archana', '', '', '', '', '', '', '', '7204848640', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Archana', '7204848640', 'New', '20', 'website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2457, '158', 61, '', '158', '', 'Akshay', '', '', 'akshayarni@gmail.com', '', '', '', '', '9494470663', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Akshay', '9494470663', 'New', '20', 'Inventory management system', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2458, '158', 61, '', '158', '', 'Lakshminarayan', '', '', 'vfllogistics@gmail.com', '', '', '', '', '9902992100', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Lakshminarayan', '9902992100', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2459, '158', 61, '', '158', '', 'Venkataswamy', '', '', '', '', '', '', '', '9663510156', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nri layout', 'Bangalore', '', 0, '', 'Venkataswamy', '9663510156', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2460, '158', 61, '', '158', '', 'Ravi', '', '', 'ravikoppa.mrs@gmail.com', '', '', '', '', '8217311532', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'siddartha layout ', 'Mysore', '', 0, '', 'Ravi', '8217311532', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2461, '158', 61, '', '', '', 'Sumith', '', '', '', '', '', '', '', '9071321034', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', '', 0, '', 'Sumith', '9071321034', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2462, '158', 61, '', '158', '', 'Dhanya', '', '', '', '', '', '', '', '7227044259', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kuvempunagar', 'Bangalore', '', 0, '', 'Dhanya', '7227044259', 'New', '', 'computer software dealers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2463, '158', 61, '', '158', '', 'Dhanya', '', '', '', '', '', '', '', '7227044259', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kuvempunagar', 'Bangalore', '', 0, '', 'Dhanya', '7227044259', 'New', '', 'computer software dealers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2464, '158', 61, '', '158', '', 'Sambasiva rao', '', '', '', '', '', '', '', '9963927741', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'MG road', 'Bangalore', '', 0, '', 'Sambasiva rao', '9963927741', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2465, '158', 61, '', '158', '', 'Suresh', '', '', '', '', '', '', '', '9000505404', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Mysore', '', 0, '', 'Suresh', '9000505404', 'New', '20', 'Computer software dealers', '', 'ACTIVE', 'LEAD', 0, '2019-06-03', '0000-00-00 00:00:00', '', '', '', ''), (2466, '158', 61, '', '158', '', 'Sanjay ', '', '', '', '', '', '', '', '7895042784', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sanjay', '7895042784', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2467, '158', 61, '', '158', '', 'Pooja MC', '', '', '', '', '', '', '', '7483061533', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', '', 0, '', 'Pooja MC', '7483061533', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2468, '158', 61, '', '158', '', 'kalpit Dwivedi', '', '', '', '', '', '', '', '9450974337', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'jaynagar 9th block', 'Bangalore', '', 0, '', 'kalpit Dwivedi', '9450974337', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2469, '158', 61, '', '', '', 'Savitha', '', '', '', '', '', '', '', '9901972608', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'murgeshpalya', 'Bangalore', '', 0, '', 'Savitha', '9901972608', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2470, '158', 61, '', '', '', 'Savitha', '', '', '', '', '', '', '', '9901972608', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'murgeshpalya', 'Bangalore', '', 0, '', 'Savitha', '9901972608', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2472, '158', 61, '', '158', '', 'Savitha', '', '', '', '', '', '', '', '9901972608', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'murgeshpalya', 'Bangalore', '', 0, '', 'Savitha', '9901972608', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2473, '158', 61, '', '158', '', 'Naresh', '', '', '', '', '', '', '', '7619264331', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Garvebhavipalya', 'Bangalore', '', 0, '', 'Naresh', '7619264331', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2474, '158', 61, '', '', '', 'Vinod', '', '', 'vinodspz@gmail.com', '', '', '', '', '7259944988', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jnana Jyothi nagar', 'Bangalore', '', 0, '', 'Vinod ', '7259944988', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2475, '158', 61, '', '158', '', 'Vinod ', '', '', '', '', '', '', '', '7259944988', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jnana Jyothi nagar', 'Bangalore', '', 0, '', 'Vinod', '7259944988', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2476, '158', 61, '', '158', '', 'Veena', '', '', '', '', '', '', '', '8296035513', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jnana Jyothi nagar', 'Bangalore', '', 0, '', 'Veena', '8296035513', '', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2477, '158', 61, '', '158', '', 'Keerthi', '', '', '', '', '', '', '', '9902009103', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', '', 0, '', 'Keerthi', '9902009103', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2478, '158', 61, '', '158', '', 'Rajeev', '', '', '', '', '', '', '', '9620541261', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Rajeev', '9620541261', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2480, '158', 61, '', '158', '', 'Jitesh kothari', '', '', '', '', '', '', '', '9448395907', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'jitesh kothari', '9448395907', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2481, '158', 61, '', '', '', 'Pranab', '', '', 'pranabuk100@yahoo.com', '', '', '', '', '9886145351', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Pranab', '9886145351', '', '', 'ERP software developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2482, '158', 61, '', '158', '', 'Swathi', '', '', 'general.admin@uftech.com', '', '', '', '', '9743110259', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal ', 'Bangalore', '', 0, '', 'Swathi', '9743110259', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2483, '158', 61, '', '158', '', 'Ganesh', '', '', '', '', '', '', '', '9663413051', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Ganesh', '9663413051', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2484, '158', 61, '', '158', '', 'Shalini', '', '', '', '', '', '', '', '9845925020', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'kodigehalli', 'Bangalore', '', 0, '', 'Shalini', '9845925020', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2485, '158', 61, '', '158', '', 'Ambresh', '', '', '', '', '', '', '', '8553818182', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', '', 0, '', 'Ambersh', '8553818182', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2486, '158', 61, '', '158', '', 'Lakshmi', '', '', '', '', '', '', '', '7012155356', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'HSR layout ', ' Bangalore', '', 0, '', 'Lakshmi', '7012155356', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2487, '158', 61, '', '158', '', 'madhu', '', '', '', '', '', '', '', '8310089299', '', '', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', '', 0, '', 'Madhu', '8310089299', 'New', '', 'Web application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2488, '158', 61, '', '158', '', 'Ruchitra', '', '', '', '', '', '', '', '9599177996', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', ' Bangalore', '', 0, '', 'Ruchitra', '9599177996', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2489, '158', 61, '', '158', '', 'Prathap', '', '', '', '', '', '', '', '9632231199', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', ' Bangalore', '', 0, '', 'Prathap', '9632231199', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2490, '158', 61, '', '158', '', 'Thapan', '', '', 'sritapan991@gmail.com', '', '', '', '', '8310656846', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Thapan', '8310656846', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2491, '158', 61, '', '158', '', 'Vivek ', '', '', '', '', '', '', '', '9986869091', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar ', 'Bangalore', '', 0, '', 'Vivek ', '9986869091', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2492, '158', 61, '', '158', '', 'Lalitha', '', '', '', '', '', '', '', '8022104555', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Lavelle road', 'Bangalore', '', 0, '', 'Lalitha ', '8022104555', 'New', '', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2493, '158', 61, '', '158', '', 'Sunil', '', '', '', '', '', '', '', '9482625425', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sunil ', '9482625425', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2494, '158', 61, '', '158', '', 'Thomas Julier', '', '', '', '', '', '', '', '8754980881', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bommanahalli', 'Bangalore', '', 0, '', 'Thomas Julier', '8754980881', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2495, '158', 61, '', '158', '', 'Rahul', '', '', '', '', '', '', '', '8876018204', '', '', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout 2nd stage ', 'Bangalore', '', 0, '', 'Rahul', '8876018204', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-04', '0000-00-00 00:00:00', '', '', '', ''), (2496, '158', 61, '', '158', '', 'Prabhakar', '', '', '', '', '', '', '', '9483720027', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Malleswaram', 'Bangalore', '', 0, '', 'Prabhakar', '9483720027', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2497, '158', 61, '', '158', '', 'Rajendra', '', '', '', '', '', '', '', '7799059888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', '', 0, '', 'Rajendra', '7799059888', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2498, '158', 61, '', '158', '', 'Prakash', '', '', '', '', '', '', '', '7373526363', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banshankari 2nd stage ', 'Bangalore', '', 0, '', 'Prakash', '7373526363', 'New', '', 'Mobile application software ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2499, '158', 61, '', '158', '', 'Hari', '', '', '', '', '', '', '', '9986682020', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Hari', '9986682020', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2500, '158', 61, '', '158', '', 'Hitesh', '', '', '', '', '', '', '', '9110098350', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Hitesh', '9110098350', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2501, '158', 61, '', '158', '', 'Likith', '', '', 'likithkarya@gmail.com', '', '', '', '', '8792371881', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Mysore', '', 0, '', 'Likith ', '8792371881', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2502, '158', 61, '', '158', '', 'Prakhar', '', '', '', '', '', '', '', '8310683520', 'prakhargutte2503@gmail.com', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', '', 0, '', 'Prakhar', '8310683520', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2503, '158', 61, '', '158', '', 'Samuel', '', '', '', '', '', '', '', '9740769161', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Samuel', '9740769161', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2504, '158', 61, '', '158', '', 'Shilpa ', '', '', '', '', '', '', '', '9005733825', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Kormangala', 'Bangalore', '', 0, '', 'Shilpa', '9005733825 ', 'New', '20', 'Internet website designers', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2505, '158', 61, '', '158', '', 'Jayanth ', '', '', '', '', '', '', '', '9004236989', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bannergatta Road', 'Bangalore', '', 0, '', 'Jayanth', '9004236989', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2506, '158', 61, '', '158', '', 'Swetha', '', '', '', '', '', '', '', '7625071160', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Swetha', '7625071160', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-05', '0000-00-00 00:00:00', '', '', '', ''), (2507, '158', 61, '', '158', '', 'Satish shet', '', '', '', '', '', '', '', '9611260475', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', '', 0, '', 'Satish Shet', '9611260475', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2508, '158', 61, '', '158', '', 'Karthik ', '', '', '', '', '', '', '', '9003350690', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'karthik', '9003350690', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2509, '158', 61, '', '158', '', 'Karthik ', '', '', '', '', '', '', '', '9003350690', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'karthik', '9003350690', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2510, '158', 61, '', '158', '', 'Khan', '', '', 'mobiledoctorasia@gmail.com', '', '', '', '', '9738813048', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'khan', '9738813048', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2511, '158', 61, '', '158', '', 'Anil', '', '', '', '', '', '', '', '7411432532', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Anil', '7411432532', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2512, '158', 61, '', '158', '', 'Jyothi', '', '', 'bhagyajothi@gmail.com', '', '', '', '', '9945704035', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', '', 0, '', 'Jyothi', '9945704035', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2513, '158', 61, '', '158', '', 'Pulkit', '', '', '', '', '', '', '', '9999800237', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', '', 0, '', 'Pulkit', '9999800237', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2514, '158', 61, '', '158', '', 'Ravi', '', '', '', '', '', '', '', '7619643950', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', '', 0, '', 'Ravi', '7619643950', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2515, '158', 61, '', '158', '', 'Amit', '', '', '', '', '', '', '', '9353874635', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hosur road ', 'Bangalore', '', 0, '', 'Amit', '9353874635', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2516, '158', 61, '', '158', '', 'Shruthi', '', '', '', '', '', '', '', '9513432101', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Attiguppe ', 'Bangalore', '', 0, '', 'Shruthi', '9513432101', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2517, '158', 61, '', '158', '', 'Ravish Mattoo', '', '', '', '', '', '', '', '9599263282', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar 4th block', 'Bangalore', '', 0, '', '', '9599263282', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2518, '158', 61, '', '158', '', 'Raghu', '', '', 'raghuaryavardan@gmail.com', '', '', '', '', '9591115599', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Raghu', '9591115599', 'New', '20', 'Mobile application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2519, '158', 61, '', '158', '', 'Veeru', '', '', '', '', '', '', '', '8892706919', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Jaynagar', 'Bangalore', '', 0, '', 'Veeru', '8892706919', 'New', '20', 'Internet website developers \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2520, '158', 61, '', '158', '', 'Raghu', '', '', '', '', '', '', '', '9591115599', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Raghu', '9591115599', 'New', '20', 'Mobile application developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-06', '0000-00-00 00:00:00', '', '', '', ''), (2521, '158', 61, '', '24', '', 'Harsha', '', '', 'harsh_mukesh@yahoo.com', '', '', '', '', '8660337593', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishanarajpuram', 'Bangalore', '', 0, '', 'Harsha', '8660337593', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2522, '158', 61, '', '158', '', 'Nagaraj', '', '', 'mgmntrust@gmail.com', '', '', '', '', '9741833335', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Krishnarajapuram', 'Bangalore', '', 0, '', 'Nagaraj', '9741833335', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2523, '158', 61, '', '158', '', 'Amrita', '', '', '', '', '', '', '', '9742782547', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Mathikere', 'Bangalore', '', 0, '', 'Amrita', '9742782547', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2524, '158', 61, '', '158', '', 'Sanju ', '', '', '', '', '', '', '', '9380110672', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', '', 0, '', 'Sanju', '9380110672', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2525, '158', 61, '', '158', '', 'Anitha', '', '', '', '', '', '', '', '9731512335', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', '', 0, '', 'Anitha ', '9731512335', 'New', '20', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2526, '24', 69, '', '24', 'Leenik Biotechs', 'TLB Rao', '', '', 'ceo@corbelogroup.com', '', '6309188899', '', '', '', 'lwwnikbiotech.com', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Hyderabad', 'Andra Pradesh', 0, '', '', '', 'Exist', '20', 'Dsign experts want new static website. Sending quote for zoho mail also', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2527, '158', 61, '', '158', '', 'Arun', '', '', '', '', '', '', '', '8904377159', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Arun', '8904377159', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2528, '158', 61, '', '158', '', 'Keshav Kumar', '', '', '', '', '', '', '', '9113197103', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Shanthala Nagar', 'Bangalore', '', 0, '', 'Keshav Kumar', '9113197103', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2529, '158', 61, '', '158', '', 'Sunil', '', '', '', '', '', '', '', '9648312926', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Sunil', '9648312926', 'New', '', 'Internet website designers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2530, '158', 61, '', '158', '', 'Prathap', '', '', '', '', '', '', '', '9110288044', '', 'Just Dial', 'Not Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', '', 0, '', 'Prathap ', '9110288044', 'New', '', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2531, '158', 61, '', '158', '', 'Prashant', '', '', '', '', '', '', '', '8008403280', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', 'Prashant', '8008403280', 'New', '', 'ERP computer software ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2532, '158', 61, '', '24', '', 'Ahmed', '', '', '', '', '', '', '', '7026016001', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Chandrapura, Electronic city', 'Bangalore', '', 0, '', 'Ahmed ', '7026016001', 'New', '20', 'Internet website developers ', '', 'ACTIVE', 'LEAD', 0, '2019-06-07', '0000-00-00 00:00:00', '', '', '', ''), (2533, '24', 69, '', '38', '', 'Puneeth', '', '', 'vrp@trillium-tech.in', '', '9916302850', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Nithin has met. he needs single page static and dynamic website quotation. Sharing for 5k and 10k respectively\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-06-11', '0000-00-00 00:00:00', '', '', '', ''), (2535, '24', 69, '', '20', 'JSS Hostpital', 'Sadananda', 'H P', '', 'sadananda.hp@jsshospital.in', '', '', '', '', '', 'www.jsshospital.in', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-06-12', '0000-00-00 00:00:00', '', '', '', ''), (2536, '24', 69, '', '24', '', 'Jaya', '', '', 'akki.4145@gmail.com', '', '9513144108', '', '', '', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Ecommerce webiste. nIthin has met and sending quote for 25k', '', 'ACTIVE', 'LEAD', 0, '2019-06-13', '0000-00-00 00:00:00', '', '', '', ''), (2537, '151', 59, '', '151', 'Pratham Vidya Mandir', 'Mamtha', '', 'Principal', 'krishna@jayblues.com', '', '', '', '', '9739261647', 'https://www.facebook.com/pages/category/School/Pratham-Vidya-Mandir-Viratanagar-Bommanahalli-1224237', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 25, '', 'Active', '', 0, '', '', ' #59/1, First Floor, Virata Nagar Circle, Virat Nagar, Bommanahalli, Bengaluru, Karnataka ', 'Bengaluru', 'Karnataka', 560068, 'INDIA', 'Mamta', '9739261647', 'New', '20', 'Demo Given Quote to be submitted', '', 'ACTIVE', 'LEAD', 0, '2019-06-15', '0000-00-00 00:00:00', '', '', '', ''), (2538, '151', 59, '', '151', 'UCAM Pvt Ltd', 'Suhas', 'Kumar', 'Marketing Head', 'suhas.kumar@ucamind.com', '', '', '', '', '7899775503', 'www.ucamind.com', 'Cold Call', 'Contacted', '0000-00-00', 'MANUFACTURING', 500, '', '', '', 0, '', '', 'A11/A12, 1st Cross Rd, 1st Stage, Peenya, Bengaluru, ', 'Bengaluru', 'Karnataka', 560058, 'India', 'Suhas Kumar', '7899775503', 'New', '100', 'Contacted and given requirement for Digital Marketing & CRM to contact for further negotiation & Closure', '', 'ACTIVE', 'LEAD', 0, '2019-06-15', '0000-00-00 00:00:00', '', '', '', ''), (2539, '24', 69, '', '24', 'TELECLINICA HEALTH CARE SERVICES PRIVATE LIMITED', 'Ayan Kumar Das', '', '', 'ayan_kumar@hotmail.com', '', '', '', '', '9740674508', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '', '', '', 'Client requested for Jayblues profiles and it was shared. Client shared mail for RFP. Website requirement', '', 'ACTIVE', 'LEAD', 0, '2019-06-15', '0000-00-00 00:00:00', '', '', '', ''), (2540, '24', 69, '', '24', 'Zurie Developers', 'Syed', '', '', 'zurie.developers@gmail.com', '', '', '', '', '9739009008', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 560064, 'India', '', '', '', '', 'Basic stsatic website with 6 pages. have told 9k plus gst', '', 'ACTIVE', 'LEAD', 0, '2019-06-18', '0000-00-00 00:00:00', '', '', '', ''), (2541, '164', 61, '', '20', 'Start Up', 'Srikanth Sree', '', '', '', '', '', '', '', '7013564740', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'karnataka', 0, 'India', '', '', 'New', '', 'Facebook Mobile Apllication Requirement.', '', 'ACTIVE', 'LEAD', 0, '2019-06-26', '0000-00-00 00:00:00', '', '', '', ''), (2542, '164', 61, '', '20', 'Start Up', 'Srijith', '', '', 'user@user.com', '', '', '', '', '9745531805', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Hmt Main Road', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Matrimony Website', '', 'ACTIVE', 'LEAD', 0, '2019-06-26', '0000-00-00 00:00:00', '', '', '', ''), (2543, '164', 61, '', '20', 'Net Curtons Manufacturing ', 'K S Desh raj', '', 'Marketing', '', '', '', '', '', '8762685844', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Hinkal', 'Mysore', 'karnataka', 0, 'India', '', '', '', '', 'He came to Office and finalized the amount of Rs.12000/- and He will come tomorrow.', '', 'ACTIVE', 'LEAD', 0, '2019-06-26', '0000-00-00 00:00:00', '', '', '', ''), (2544, '164', 61, '', '20', 'Real Estate', 'Abhinav', '', 'Marketing', '', '', '', '', '', '8971109698', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need Real Estate Website,we have shared links of our projects and company profile and he discussed everything with ajay sir,we are waiting for his reply(E-mail id).', '', 'ACTIVE', 'LEAD', 0, '2019-06-26', '0000-00-00 00:00:00', '', '', '', ''), (2545, '164', 61, '', '20', 'Real Estate', 'Mr Madhusudan', '', 'Real Estate', 'mallelamadu@gmail.com', '', '', '', '', '9480604365', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'BTM layout ', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'We have sent our Profile and links through wattsapp.\r\nHe need a Real Estate Software like Magic Bricks.He gave an appointment 03.07.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-06-26', '0000-00-00 00:00:00', '', '', '', ''), (2546, '164', 61, '', '20', '', 'Narendra', '', '', 'ingitaconsulting@gmail.com', '', '', '', '', '9972899775', '', 'Just Dial', '', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He required 4 to 5 pages website Quotation.so, I have discussed with Ajay sir and offered him Rs.8000+Tax \r\nI have send a quotation mail', '', 'ACTIVE', 'LEAD', 0, '2019-06-28', '0000-00-00 00:00:00', '', '', '', ''), (2547, '164', 61, '', '20', '', 'Jeetendra S', '', '', '', '', '', '', '', '9664487972', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'SRK Garden,Jayanagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Fixed Appointment today(Nithin sir will meet him)', '', 'ACTIVE', 'LEAD', 0, '2019-06-28', '0000-00-00 00:00:00', '', '', '', ''), (2548, '164', 61, '', '20', 'School', 'Anesh', '', '', '', '', '', '', '', '8073406091', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'J.P.Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need Website for his School.He has given appointment on 02.07.2019 after 10am. I need to call him by that time(Fallow up)', '', 'ACTIVE', 'LEAD', 0, '2019-06-28', '0000-00-00 00:00:00', '', '', '', ''), (2549, '164', 61, '', '20', '', 'Sanjeeth', '', '', 'sanjeethrecruiter@gmail.com', '', '', '', '', '7483457335', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need to develop his already existing website,and he will call by Monday 01.07.2019.', '', 'ACTIVE', 'LEAD', 0, '2019-06-28', '0000-00-00 00:00:00', '', '', '', ''), (2550, '164', 61, '', '24', 'Start Up', 'Purushotham', '', '', '', '', '', '', '', '8892912027', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need website and Billing software for his New Healthcare.He will call back for confirmation', '', 'ACTIVE', 'LEAD', 0, '2019-06-29', '0000-00-00 00:00:00', '', '', '', ''), (2551, '164', 61, '', '24', 'GABS Green arrow business solutions', 'Arvind', '', 'Buisness Management Consultant', 'arvind@mindspacecorp.com', '', '', '', '', '9986386374', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '#154,Achkattu 3rd Main Banashankri', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Subbu sir spoke to him and fixed an appointment today.(29.06.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-06-29', '0000-00-00 00:00:00', '', '', '', ''), (2552, '164', 61, '', '24', '', 'Mani', '', '', '', '', '', '', '', '9739922231', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need MLM Software.He will come office by Monday(01.07.2019)and have shared Demo Link of MLM software\r\nMeeting Fixed 03.07.2019\r\n\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-06-29', '0000-00-00 00:00:00', '', '', '', ''), (2553, '164', 61, '', '24', 'Start Up', 'Harsha', '', '', '', '', '', '', '', '8095596132', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Konanakunte Cross', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need 4 to 5 Pages Website and Subbu sir Quoted him for Rs.8000+GST. I have sent our projects Links through Wattsapp.', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2554, '164', 61, '', '20', 'Start Up', 'Arvind', '', '', '', '', '', '', '', '8892930511', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'SRK Garden,Jayanagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need Poster design .We quoted him Rs.1500 per page (single side).Printing will not be taken care of us.sent through wattsapp', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2555, '164', 61, '', '24', 'Start Up', 'Nagendra', '', '', '', '', '', '', '', '9686206063', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore ', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He Need 10pages of Static Website.Subbu sir Quoted him for 13K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2556, '164', 61, '', '24', 'Tourism', 'Giriraj Patil', '', '', 'giree89@gmail.com', '', '', '', '', '9880273602', '', 'Just Dial', '', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', '', 0, '', '', 'Dandeli', 'Dandeli', 'karnataka', 0, 'india', '', '', '', '', 'He need a web hosting for his tourism business and I have sent our tourism website Links through wattsapp and for selected one we have quoted 12K+GST and waiting for Reply', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2557, '164', 61, '', '20', 'Oil Manufacturer', 'Rajesh', '', 'oil manufacturer', '', '', '', '', '', '7204089685', '', 'Just Dial', 'Contacted', '0000-00-00', 'OIL AND GAS', 0, '', '', '', 0, '', '', 'Hanumanth Nagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need website for his 35 years old oil company.He gave an appointment tomorrow morning 9.00Am.\r\nHe gave an appointment on friday.call before going', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2558, '164', 61, '', '24', '', 'Rangaswamy', '', '', '', '', '', '', '', '9740216780', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ulsoor Metro Station', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Subbu sir Spoke to him,and meeting fixed today 5Pm(01.07.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2559, '164', 61, '', '24', 'Church', 'johnson', '', '', '', '', '', '', '', '8660572432', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need website for Church,meeting fixed today before 6pm(01.07.2019)\r\n\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-01', '0000-00-00 00:00:00', '', '', '', ''), (2560, '164', 61, '', '24', 'Start Up', 'Basha', '', '', '', '', '', '', '', '8095571976', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Manipal County Road,Singasandra', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He Need website for his company.Nithin sir met him n Subbu sir sending Quotation.', '', 'ACTIVE', 'LEAD', 0, '2019-07-02', '0000-00-00 00:00:00', '', '', '', ''), (2562, '164', 61, '', '24', '', 'Vishnuvardhan Naidu', '', '', 'vnaidu64@gmail.com', '', '', '', '', '9731812906', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'I Have share the Location of our company.He will come by next week', '', 'ACTIVE', 'LEAD', 0, '2019-07-02', '0000-00-00 00:00:00', '', '', '', ''), (2563, '164', 61, '', '24', 'Start Up', 'Vikas Narayan', '', '', '', '', '', '', '', '9986878215', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', '', 0, '', '', 'Girinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need website for Tourism and Appointment fixed 03.07.2019 in the evening.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-03', '0000-00-00 00:00:00', '', '', '', ''), (2565, '164', 61, '', '24', '', 'Devaiah', '', '', 'sid.aiyappa@gmail.com', '', '', '', '', '9480959886', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He Need ERP Software for his Food Industry.He gave an appointment on Friday after 3.30Pm', '', 'ACTIVE', 'LEAD', 0, '2019-07-03', '0000-00-00 00:00:00', '', '', '', ''), (2566, '164', 61, '', '164', 'Transport ', 'Kishore Kumar', '', '', '', '', '', '', '', '9148665561', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need Website for his Transport,Web Address,Google Map etc. He will come office Tomorrow(Mysore)', '', 'ACTIVE', 'LEAD', 0, '2019-07-04', '0000-00-00 00:00:00', '', '', '', ''), (2567, '164', 61, '', '164', 'School', 'Kishore', '', '', 'kizzhore@gmail.com', '', '', '', '', '9535363826', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'M.G.Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need Website for his School,he asked me about our company.I have sent Profile through Mail.Waiting for his reply', '', 'ACTIVE', 'LEAD', 0, '2019-07-04', '0000-00-00 00:00:00', '', '', '', ''), (2568, '164', 61, '', '164', 'Furniture', 'Naresh Singh', '', '', 'naresh@ideartcommunications.com', '', '', '', '', '9845687205', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need Website for his Furniture Showroom.Have an appointment 05.07.2019.Between 3-4PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-04', '0000-00-00 00:00:00', '', '', '', ''), (2569, '164', 61, '', '164', '', 'Srikanth', '', '', 'shylaja@quintelcom.com', '', '', '', '', '9980199540', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'BDA Complex, Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need 4-5pages of Website.Have an Appointment 05.07.2019(10AM)', '', 'ACTIVE', 'LEAD', 0, '2019-07-04', '0000-00-00 00:00:00', '', '', '', ''), (2570, '164', 61, '', '164', 'Start Up', 'Rohan', '', '', 'neodmi3@gmail.com', '', '', '', '', '7406555547', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5 Pages of Tourism Website.Fixed an appointment 05.07.2019.', '', 'ACTIVE', 'LEAD', 0, '2019-07-04', '0000-00-00 00:00:00', '', '', '', ''), (2571, '164', 61, '', '164', '', 'Abhishek', '', '', 'abishek@smcorp.com', '', '', '', '', '9606280888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need Basic Website.Meeting fixed 05.07.2019.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2572, '164', 61, '', '24', 'togservices', 'Think Of Green', '', '', 'ithinkofgreen@gmail.com', '', '', '', '', '8105133444', 'http://thinkofgreen.co/', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Elita Promenade,A1,1406,14th Floor,J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5 Pages Of Static Website.', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2573, '164', 61, '', '164', '', 'Reshma', '', '', 'support@jayblues.com', '', '', '', '', '', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Test mail', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2574, '164', 61, '', '164', '', 'Raju', '', '', 'rajvir.1570@gmail.com', '', '', '', '', '7676212970', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Kanakapura Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website.Fixed meeting 05.07.2019(tharaki cicle)', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2575, '164', 61, '', '164', 'Start Up', 'Anand Baghel', '', '', 'anand.mpct@gmail.com', '', '', '', '', '9739153236', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Mangalore', 'Mangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need ERP,HRM,CRM Software.Ajay Sir Spoke with him. Appointment Fixed 08.07.2019 in Koramangala 10AM.Subbu Sir will meet him.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2576, '164', 61, '', '164', 'Start Up', 'Thanush', '', '', '', '', '', '', '', '6362534147', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He Need Basic Website.Meeting Fixed on 08.07.2019\r\nContact Number-6362534147', '', 'ACTIVE', 'LEAD', 0, '2019-07-05', '0000-00-00 00:00:00', '', '', '', ''), (2577, '24', 69, '', '24', 'Namma Foundation', 'Shanmuga K', '', '', 'nakshatra5335@gmail.com', '', '', '', '', '7338215777', 'nammafoundation.org', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '#378,38th cross,26th Main,6th Block ,Jaynagar', 'Bangalore', 'Karnataka', 0, '', '', '', '', '', 'Quotation for website AMC', '', 'ACTIVE', 'LEAD', 0, '2019-07-08', '0000-00-00 00:00:00', '', '', '', ''), (2578, '164', 61, '', '164', 'Air Pollution Control', 'Vijay ', '', '', 'vijay@flidairsystem.in', '', '', '', '', '9449874171', '', 'Just Dial', 'Contacted', '0000-00-00', 'OIL AND GAS', 0, '', '', '', 0, '', '', 'Magadi Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Air Pollution Control Company. I have sent profile through wattsapp.He will call me back(08.07.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-07-08', '0000-00-00 00:00:00', '', '', '', ''), (2579, '164', 61, '', '164', 'Start Up', 'Nuthesh', '', '', 'nuthesh9@gmail.com', '', '', '', '', '7795157706', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for his new company(Event Management).Meeting fixed tomorrow(09.07.2019)\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-08', '0000-00-00 00:00:00', '', '', '', ''), (2580, '164', 61, '', '164', 'MNRK Company', 'Naveen', '', '', 'naveenkotegowda@gmail.com', '', '', '', '', '8550000866', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'HAL', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need Single page Static Website & I have given Quotation for that(6000+gst).waiting for reply.', '', 'ACTIVE', 'LEAD', 0, '2019-07-08', '0000-00-00 00:00:00', '', '', '', ''), (2581, '164', 61, 'CLOSED', '164', 'Bytecode Cyber Security', 'Sanjeev Gupta', '', '', 'sanjeevgupta7512@gmail.com', '', '', '', '', '9886035330', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Opposite HP Petrol Bunk,New BEL Circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for his business.Meeting fixed 08.07.2019(3:45PM)', '', 'ACTIVE', 'LEAD', 0, '2019-07-08', '0000-00-00 00:00:00', '', '', '', ''), (2582, '164', 61, '', '164', 'School Website', 'Vidyadhar', '', '', 'vidyadhark.dcpis2017@gmail.com', '', '', '', '', '8605895905', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Bangalore ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for School.Subbu sir sent Links Related to that website. He will check n call me back.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2583, '164', 61, '', '164', 'NGO ', 'Mallesh', '', '', 'malleshs1979@gmail.com', '', '', '', '', '9113902995', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', '', 0, '', '', 'Hebbal', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for NGO in Mysore.He will come mysore office by 4.30PM(Quotation=15K+GST)', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2584, '164', 61, '', '164', 'IT Company', 'Ramesh ', '', '', '', '', '', '', '', '8979555792', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Goa', 'Goa', 'Goa', 0, 'India', '', '', '', '', 'He need website for IT Company,Profile,Links related IT Website sent.He will check n call me back.', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2585, '164', 61, '', '164', 'Bike Rental Company', 'Sheetal Jain', '', '', '', '', '', '', '', '9980318883', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Chikkamagalur', 'Chikkamagalur', 'Karnataka', 0, 'India', '', '', '', '', 'Need Web Application for running Bike Rental Company & We have given Quotation (45K+GST)Thro\' Wattsapp.', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2587, '164', 61, '', '164', 'Akshaya Gold', 'Vinod', '', '', '', '', '', '', '', '9036496353', '', 'Just Dial', 'Contacted', '0000-00-00', 'GEMS AND JEWELLERY', 0, '', '', '', 0, '', '', 'vyalikaval,Sadashivanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for his Gold Business & Have an appointment 10.07.2019 afternoon 12PM.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2588, '164', 61, '', '164', 'Start Up', 'Rishab', '', '', '', '', '', '', '', '9742340000', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', '', 0, '', '', 'Chamrajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Finance.Have an appointment 10.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-09', '0000-00-00 00:00:00', '', '', '', ''), (2589, '164', 61, '', '164', 'Interiors Manufaturer', 'Francis', '', '', 'sangeetha@ficuspata.co', '', '', '', '', '7760971398', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Interiors factory.Meeting fixed 10.07.2019 (3PM)', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2590, '164', 61, '', '164', 'Event Management', 'Vinod', '', '', '', '', '', '', '', '9620650446', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Website for Event Management.sent Profile & Links\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2591, '164', 61, '', '164', 'Start Up', 'Sathish', '', '', '', '', '', '', '', '7090656732', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need 4-5 Page Website .our office address sent he will visit our office B\'lore.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2592, '164', 61, '', '164', '', 'Khan', '', '', '', '', '', '', '', '8105652290', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'HBR Layout/BDA Complex', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5page website(static),Meeting fixed 11.07.2019(11AM)\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2593, '164', 61, '', '164', 'Start Up', 'Ahmed', '', '', '', '', '', '', '', '9844354571', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Banashankari 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website to start company. Meeting fixed 10.07.2019 \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2594, '164', 61, '', '164', '', 'Santhosh', '', '', 'ankalkoti.s@gmail.com', '', '', '', '', '9742353988', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore`', 'Karnataka', 0, 'India', '', '', '', '', 'Static website(single page) Meeting fixed 10.07.2019 \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2595, '164', 61, '', '24', 'Scientific Thought Publications', 'Manju', '', '', 'bhaskar18663@gmail.com', '', '', '', '', '9880013922', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Subbu sir spoke. Meeting fixed 11.07.2019(10AM)\r\n', '', 'INACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', 'ACONVERT', '', '', ''), (2596, '164', 61, '', '164', '', 'Prakash', '', '', '', '', '', '', '', '8310536565', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Electronic city ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application like OLA/UBER. Meeting fixed 11.07.2019 morning\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-10', '0000-00-00 00:00:00', '', '', '', ''), (2597, '164', 61, '', '164', 'real Estate and Interiors', 'Karthik ', '', '', 'slvsrikanthjai@gmail.com', '', '', '', '', '7411807807', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Kalyan Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for Real estate & Interiors.have sent Profile & Links ', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2598, '164', 61, '', '164', '', 'Sumith', '', '', 'thakursumeet@gmail.com', '', '', '', '', '9022826839', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Nagpur', 'Nagpur', 'Maharashtra', 0, 'India', '', '', '', '', 'He need Work Flow Application,Have sent Profile & Links', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2599, '164', 61, '', '164', 'Matrimony', 'Shekar', '', '', 'somajss1974@gmail.com', '', '', '', '', '7019694770', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Jayanagar, 3rd Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need to develop Matrimonial website.Have an appointment 12.07.2019 at 10.30AM\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2600, '164', 61, '', '164', 'Start Up', 'Kalyan', '', '', '', '', '', '', '', '8050224416', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Hosakote', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for new company his friend starts in nigeria. he will confirm the time & Place to meet tomorrow 4.15PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2601, '164', 61, '', '164', 'Interiors', 'Abel', '', '', '', '', '', '', '', '8618217001', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for Interiors.have sent Profile & Links..He will confirm when to meet.Call 7.30PM 11.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2602, '164', 61, '', '164', 'Start Up', 'Samarth', '', '', 'samarth.rao@gmail.com', '', '', '', '', '9845733625', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website & Application to start up business.Have sent Profile.Meeting fixed 12.07.2019 afternoon.', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2603, '164', 61, '', '164', 'Start Up', 'Mohammed', '', '', '', '', '', '', '', '7022752063', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to create website for his Hotel Business.Have sent Profile & Links.Meeting fixed 13.07.2019 Afternoon 2.00PM\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-11', '0000-00-00 00:00:00', '', '', '', ''), (2604, '164', 61, '', '164', 'Start Up', 'Hemanth', '', '', 'rishusahi@yahoo.com', '', '', '', '', '8431910001', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for 4 wheeler servicr center.We have given Profile & Quotation 8000+gst through mail.', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2605, '164', 61, '', '164', 'Universal Copier Services', 'Rajashekar', '', '', 'universalcopierservices@gmail.com', '', '', '', '', '9164879555', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Website for Xerox Machine & Printer Sales & Services.We have given Profile & Quotation 15000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2606, '164', 61, '', '164', 'Suyog Property Solutions', 'Prashanth Gowda', '', '', '', '', '', '', '', '7338249034', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need modification for already existing website.He need to give Credentials', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2607, '164', 61, '', '164', 'Laviva Food Manufacturing', 'Nagarathna', '', '', 'nagarathanadeepu@gmail.com', '', '', '', '', '8431769041', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Food Manufacturing Company.Given Profile & Quotation 6000&8000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2608, '164', 61, '', '164', 'Costruction Company', 'Narayan', '', '', '', '', '', '', '', '9844034428', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for construction company,He will visit office 13.07.2019 given quotation(oral)6000 & 8000+gst ', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2609, '164', 61, '', '164', 'Fancy store', 'Harikrishna', '', '', 'hkrishnan313@gmail.com', '', '', '', '', '9360797267', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', 'Hosur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Website for Retail shop.Given Profile & Quotation =7000& 9000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2610, '164', 61, '', '164', '', 'Sharath', '', '', 'wvikinmaths@gmail.com', '', '', '', '', '8088257748', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need To pop up his add.Tomorrow he will visit office (13.07.2019) I have Shared Details of office N Contact details', '', 'ACTIVE', 'LEAD', 0, '2019-07-12', '0000-00-00 00:00:00', '', '', '', ''), (2611, '164', 61, '', '164', '', 'Suresh', '', '', 'sureshkb666@gmail.com', '', '', '', '', '8892513663', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', '', 0, '', '', 'Jp nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Tours & Travells,sent profile n Quotation\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-13', '0000-00-00 00:00:00', '', '', '', ''), (2612, '164', 61, '', '164', 'Medical Store', 'Mahesh Khati', '', '', 'uppikhati02@gmail.com', '', '', '', '', '7019133853', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', 'Mahalakshmi Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Medical store(4 -5 pages Dynamic),sent profile n Quotation.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-13', '0000-00-00 00:00:00', '', '', '', ''), (2613, '164', 61, '', '164', 'Static Information Security', 'Dharmendra', '', '', 'dbavale@gmail.com', '', '', '', '', '9964220820', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website (Static Information Security),SEO Friendly 6-7 Pages of static website(Itonneed.com)', '', 'ACTIVE', 'LEAD', 0, '2019-07-13', '0000-00-00 00:00:00', '', '', '', ''), (2614, '164', 61, '', '164', 'MLM Application', 'Prakash', '', '', 'prasadreddy@gmail.com', '', '', '', '', '9845277410', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need MLM Application Development.Meeting fixed today 15.07.2019.', '', 'ACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', '', '', '', ''), (2615, '164', 61, '', '164', 'Start Up', 'Muhib ', '', '', '', '', '', '', '', '9901112229', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Washing Machine Service,meeting 15.07.2019 at 4PM\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', '', '', '', ''), (2616, '164', 61, '', '164', 'Start Up', 'Raghunath ', '', '', '', '', '', '', '', '8050973770', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Varthur,Near S R Petrol bunk', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Sump Clining & Overhead tank,Meeting 15.07.2019 \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', '', '', '', ''), (2618, '164', 61, '', '164', 'Start Up', 'Rajesh Shenoy', '', 'Managing Director', 'rajesh@asterixtechnology.com', '', '08043008764', '', '', '9845230929', 'www.asterixtechnology.com', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Rangappa Reddy Complex,R V Road,V V Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for billing software,Meeting 16.07.2019 at 4PM\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', '', '', '', ''), (2619, '164', 61, '', '164', 'Start Up', 'Zaiba', '', '', '', '', '', '', '', '9148758295', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'She need website for Coorg Villas Advertisement.she will come mysore office 16.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', '', '', '', ''), (2620, '24', 69, 'PCONVERTED', '24', 'ACTHIVE', 'Mohan Nimbalkar', '', '', 'mohan@siliconeducation.in', '', '', '', '', '9743444763', 'siliconeducation.in', '', '', '2020-02-18', '', 0, '', '', '', 0, '', '', 'No P-5, 31st main, Banagirinagar, BSK 3rd stage', 'Bangalore', 'Karnataka', 560085, 'India', '', '', '', '', '1 website redesigning, 1 website changes and hosting', '', 'INACTIVE', 'LEAD', 0, '2019-07-15', '0000-00-00 00:00:00', 'PCONVERT', '', '', ''), (2621, '164', 61, '', '164', '', 'Mohan', '', '', 'chandra_mohana@ymail.com', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website Modification and security for existing website.', '', 'ACTIVE', 'LEAD', 0, '2019-07-16', '0000-00-00 00:00:00', '', '', '', ''), (2622, '164', 61, '', '164', 'Manpower Resources', 'Supreeth', '', '', 'supreethsupi5@gmail.com', '', '', '', '', '9606477031', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for his company.sent quotation for Static =8K+GST & Dynamic= 10K+GST. through wattsapp', '', 'ACTIVE', 'LEAD', 0, '2019-07-16', '0000-00-00 00:00:00', '', '', '', ''), (2623, '164', 61, '', '164', 'Jyothi Solution', 'Kumar', '', '', 'jyothisolution.kumar@gmail.com', '', '', '', '', '9845721983', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Nandhini Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website to start up his service based company.Have sent profile & Links through wattsapp.16.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-16', '0000-00-00 00:00:00', '', '', '', ''), (2624, '164', 61, '', '164', 'Start Up', 'Rohith', '', '', '', '', '', '', '', '8277084002', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,webmail and admin panel for his start up company,Meeting fixed for 17.07.2019 evening\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-16', '0000-00-00 00:00:00', '', '', '', ''), (2625, '164', 61, '', '164', '', 'Ashrith', '', '', '', '', '', '', '', '9380216315', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'J P Nagar,6th Phase,Near Yelachanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Education Purpose,Meeting fixed today 17.07.2019 at 6PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-17', '0000-00-00 00:00:00', '', '', '', ''), (2627, '164', 61, '', '164', '', 'Manjunath', '', '', '', '', '', '', '', '9743777208', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Mysore ', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Carpenter work & I have given Quotation =8000+gst(Domain & Hosting already running)', '', 'ACTIVE', 'LEAD', 0, '2019-07-17', '0000-00-00 00:00:00', '', '', '', ''), (2628, '164', 61, '', '164', '', 'Haridev', '', '', '', '', '', '', '', '9742937773', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need Website for Online Business,I Have send his number to nithin sir.He will speak with him', '', 'ACTIVE', 'LEAD', 0, '2019-07-17', '0000-00-00 00:00:00', '', '', '', ''), (2629, '164', 61, '', '164', '', 'Kiran', '', '', 'kiranzest4u@gmail.com', '', '', '', '', '9019190777', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore`', 'Karnataka', 0, 'India', '', '', '', '', 'Need Dynamic Website for Water Purification Company,Have sent Company Profile N Related Links,He will confirm', '', 'ACTIVE', 'LEAD', 0, '2019-07-17', '0000-00-00 00:00:00', '', '', '', ''), (2630, '164', 61, '', '164', '', 'Vinod', '', '', 'vinodrules7@gmail.com', '', '', '', '', '7760672740', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Near Bhanu Hospital,Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for his Individual Business,Meeting Fixed 19.07.2019 Evening', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2631, '164', 61, '', '164', '', 'Alok Kumar Sharma', '', '', 'aloksharma0009@gmail.com', '', '', '', '', '8770509038', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Bangalore ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Website,Profile and Links sent for reference.', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2632, '164', 61, '', '164', '', 'Vinay', '', '', 'bgvinay09@gmail.com', '', '', '', '', '9972405019', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Jakkur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce Application,Sent Profile & Links related to E-Commerce.', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2633, '164', 61, '', '164', 'Start Up', 'Stanislaus', '', '', '', '', '', '', '', '9880157164', '', 'Just Dial', 'Contacted', '0000-00-00', 'POWER', 0, '', '', '', 0, '', '', 'Hennur Cross', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Electrical contract,Meeting fixed 19.07.2019 evening', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2634, '164', 61, '', '164', '', 'Shibu Antony', '', '', 'shibu.antony@coolpexintl.com', '', '', '', '', '8848909375', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Indiranagar', 'bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website,Meeting fixed 18.07.2019 evening 5PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2635, '164', 61, '', '164', '', 'Ayub', '', '', 'ayub4ansar@gmail.com', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', '', 0, '', '', 'Kollegala', 'Chamarajanagar', 'Karnataka', 0, 'india', '', '', '', '', 'Need Application for Govt Contract Business,Informed to Subbu sir,he will handle this.', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2636, '164', 61, '', '164', '', 'Sanjeev ', '', '', '', '', '', '', '', '7477853232', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website & Digital marketing app,Bangalore office Location Shared,he will visit office today.', '', 'ACTIVE', 'LEAD', 0, '2019-07-18', '0000-00-00 00:00:00', '', '', '', ''), (2637, '164', 61, '', '164', 'Start Up', 'Aditya', '', '', 'adityabhm@gmail.com', '', '', '', '', '9036681390', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for his company to start up,have given a quotation of 25000+GST,and Profile & Links also sent', '', 'ACTIVE', 'LEAD', 0, '2019-07-19', '0000-00-00 00:00:00', '', '', '', ''), (2639, '164', 61, '', '164', '', 'Imran', '', '', 'orbitestates@yahoo.com', '', '', '', '', '7406548746', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Basic website for Start up Company(Medical Transcription),Need to send profile,Quotation of Rs.8000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-19', '0000-00-00 00:00:00', '', '', '', ''), (2640, '164', 61, '', '164', '', 'Vivek ', '', '', 'vivek.b.dalagar@gmail.com', '', '', '', '', '9742513508', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce Website & Mobile application,Subbu sir,discussed with him', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2641, '164', 61, '', '164', '', 'Lokesh', '', '', '', '', '', '', '', '9739868899', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Hosakerehalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Water purification & Meeting fixed 22.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2642, '164', 61, '', '164', '', 'Vinod', '', '', '', '', '', '', '', '6366674666', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Scrap Business,Meeting fixed 22.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2643, '164', 61, '', '164', '', 'sudeesh', '', '', '', '', '', '', '', '9108919089', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Real Estate Website,have sent Profile & Links related to Real estate.', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2644, '164', 61, '', '164', '', 'Bhuban Halder', '', '', 'ibibo3@gmail.com', '', '', '', '', '9933200168', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Port Blair', 'Port Blair', 'Andamon & Nicobar', 0, 'India', '', '', '', '', 'Client need website for Selling of Flight Tickets,He will send requirement through mail', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2645, '164', 61, '', '164', '', 'Anshuman Sanjay', '', '', 'amshumant.sanjay@gmail.com', '', '', '', '', '9886782817', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for his Business,Meeting fixed 23.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2646, '164', 61, '', '164', '', 'Ahmed', '', '', '', '', '', '', '', '9880092127', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Palya Main Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website & he will send the reference website.we need to send the quotation ', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2647, '164', 61, '', '164', '', 'Braja Kishore', '', '', 'brajaparida@ymail.com', '', '', '', '', '8668981208', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to call 23.07.2019 morning before 11AM', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2648, '164', 61, '', '164', '', 'Arvind', '', '', '', '', '', '', '', '6362458376', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Vijaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Social Media News Channel website,he call after 2 to 3 days.', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2649, '164', 61, '', '164', '', 'Syed', '', '', '', '', '', '', '', '7829591802', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Meeting fixed 22.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2650, '164', 61, '', '164', '', 'Pavan ', '', '', '', '', '', '', '', '9108427428', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Ramamurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 6 Pages Dynamic website like uniletsolar.com,Subbu sir Quoted 65000+GST', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2651, '164', 61, '', '164', '', 'Wasim', '', '', '', '', '', '', '', '9986311136', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Davanagere', 'Davanagere', 'Karnataka', 0, 'India', '', '', '', '', 'Need MLM Software,Have sent Demo Link of MLM', '', 'ACTIVE', 'LEAD', 0, '2019-07-22', '0000-00-00 00:00:00', '', '', '', ''), (2652, '164', 61, '', '164', 'Srishakthi Karnataka', 'Raj', '', '', 'srishakthikarnataka@gmail.com', '', '', '', '', '9743700020', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Davanagere', 'Davanagere', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for education.Have sent P & L He will check it out & call me back\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-23', '0000-00-00 00:00:00', '', '', '', ''), (2653, '164', 61, '', '164', '', 'Manjunath', '', '', 'manjunathls007@gmail.com', '', '', '', '', '8431827141', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for food catering business.Have sent P & L related to Shreenidhi catering .in & subbu sir gave quo=35K+GST\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-23', '0000-00-00 00:00:00', '', '', '', ''), (2654, '164', 61, '', '164', '', 'Ramesh ', '', '', 'ramesh@mycomimaging.com', '', '', '', '', '7498112272', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need content & Design for his domain & Hosting.Have sent p& L n quo=5500+gst\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-23', '0000-00-00 00:00:00', '', '', '', ''), (2655, '164', 61, '', '164', '', 'Ebiroy', '', '', 'ebi.champion@gmail.com', '', '', '', '', '7644004411', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Chennai', 'Chennai', 'Tamilnadu', 0, 'India', '', '', '', '', 'need dynamic website .Call after 10days& have given wrong quo=11000+gst(Nithin sir told me that\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-23', '0000-00-00 00:00:00', '', '', '', ''), (2656, '164', 61, '', '164', '', 'Krishna', '', '', 'krishna.power.kp@gmail.com', '', '', '', '', '9363367663', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & application food & Grocery,need simple application 1 website,user applicatio,delivery application,businessman just like Zomato\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-23', '0000-00-00 00:00:00', '', '', '', ''), (2657, '164', 61, '', '24', '', 'Kavya', '', '', 'info@greenandclean.co.in', '', '', '', '', '8105261142', 'info@greenandclean.co.in', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Shivajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5-6 pages static website,& quoted 8K+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2658, '164', 61, '', '164', '', 'John', '', '', 'promotion@rbpi.in', '', '', '', '', '9029009355', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website,need to send Profile', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2659, '164', 61, '', '164', '', 'Rambabu', '', '', 'rambabu16789@gmail.com', '', '', '', '', '8904539568', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,Meeting fixed & have given quotation 14000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2660, '164', 61, '', '164', '', 'Kennedy', '', '', 'kennedy13@gmail.com', '', '', '', '', '9845338596', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website for online business,need to send Proposal of quotation 40K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2661, '164', 61, '', '164', '', 'Neha', '', '', 'nrneinnovation@gmail.com', '', '', '', '', '9611292299', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'HSR Police Station', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She need website,Meeting fixed 25.07.2019 evening 5PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2662, '164', 61, '', '164', '', 'Umesh', '', '', 'umeshmagadiadv@gmail.com', '', '', '', '', '9844040565', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Magadi', 'Ramanagara', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for his Clients,he is a Lawyer,need to send P & L', '', 'ACTIVE', 'LEAD', 0, '2019-07-24', '0000-00-00 00:00:00', '', '', '', ''), (2663, '164', 61, '', '164', '', 'Chandramohan', '', '', '', '', '', '', '', '7411224417', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'HBR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Commercial Laundry,Meeting fixed today 25.07.2019.4PM', '', 'ACTIVE', 'LEAD', 0, '2019-07-25', '0000-00-00 00:00:00', '', '', '', ''), (2664, '164', 61, '', '164', '', 'Narasimha', '', '', '', '', '', '', '', '8139999111', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Solar & Geyser (Wholesale Dealers),4-5 pages of static website =8000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-25', '0000-00-00 00:00:00', '', '', '', ''), (2665, '164', 61, '', '164', '', 'Anil', '', '', 'anil.kumar_raj@yahoo.co.in', '', '', '', '', '7738425508', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website for Handcrafted Products,have sent P & L n have given quotation of 46000+gst', '', 'ACTIVE', 'LEAD', 0, '2019-07-25', '0000-00-00 00:00:00', '', '', '', ''), (2669, '164', 61, '', '164', '', 'Rudresh', '', '', 'ms.rudresha9@gmail.com', '', '', '', '', '8660446718', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'Hebbal', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need two single page website Electrical Manufacturing & Concrete Business. Have given quotation 12000+GST he will confirm 26.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-26', '0000-00-00 00:00:00', '', '', '', ''), (2670, '164', 61, '', '164', '', 'Mahesh ', '', '', 'perfectmaheshr@gnail.com', '', '', '', '', '9591492138', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Indranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce application,Have sent P & L related to E-Commerce.', '', 'ACTIVE', 'LEAD', 0, '2019-07-26', '0000-00-00 00:00:00', '', '', '', ''), (2671, '164', 61, '', '164', '', 'Arun', '', '', 'arundhanpal6@gmail.com', '', '', '', '', '9513420007', '', 'Just Dial', '', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Dynamic website of 10-15 pages for 2 Food Industries.Have sent P & L .Meeting fixed 27.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-26', '0000-00-00 00:00:00', '', '', '', ''), (2672, '164', 61, '', '164', '', 'Narendra', '', '', 'sinaienterprises2017@gmail.com', '', '', '', '', '9620960099', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce Application.Have sent Proposal for 41000+gst.', '', 'ACTIVE', 'LEAD', 0, '2019-07-26', '0000-00-00 00:00:00', '', '', '', ''), (2673, '164', 61, '', '164', '', 'Vidya Prasad', '', '', 'vidyaprasad.talakadu@gmail.com', '', '', '', '', '9620007767', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Maintanance for his website.He will visit office may be 29.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-27', '0000-00-00 00:00:00', '', '', '', ''), (2674, '164', 61, '', '164', '', 'Murali Reddy', '', '', '', '', '', '', '', '9886639414', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Real Estate Documentation.Meeting Fixed 27.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-27', '0000-00-00 00:00:00', '', '', '', ''), (2675, '164', 61, '', '164', '', 'Kalyan Kumar', '', '', 'kalyangunda32@gmail.com', '', '', '', '', '7337433644', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Online Training,Just Like Byju\'s App.He is in discussion with Subbu sir.', '', 'ACTIVE', 'LEAD', 0, '2019-07-27', '0000-00-00 00:00:00', '', '', '', ''), (2677, '164', 61, '', '164', '', 'Chandru', '', '', 'apchandrashekar@gmail.com', '', '', '', '', '9632010118', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Koymathoor(office), Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Sales & Service(Submercible Pump),Sent P & L & Q=14K+GST(oral)', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2678, '164', 61, '', '164', '', 'Mahantesh', '', '', '', '', '', '', '', '9343031319', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Near Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Maintanance,general service ,Sent P & L &Location of our office & Q=15K+GST(oral) \r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2679, '164', 61, '', '164', '', 'Kiran', '', '', 'kiranjeevanitsme96@gmail.com', '', '', '', '', '7975807896', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Yashwanthpura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-Commerce for online shopping,Have sent P & L of Clients(7204656198 wattsapp)\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2680, '164', 61, '', '164', '', 'Ramesh ', '', '', 'uberbalaji@gmail.com', '', '', '', '', '8884724422', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '10 to 15 pages Real estate website,Have sent P & L & Q=20K+GST\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2681, '164', 61, '', '164', '', 'Jai', '', '', '', '', '', '', '', '9008590066', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-Commerce with IOS & Android application for Interiors,Have sent P & L & Q=3 to 4 Lakh\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2682, '164', 61, '', '164', 'Start Up', 'Chandru', '', '', '', '', '', '', '', '9513359559', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for manpower sector & HR Consultancy,Call 05.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-07-29', '0000-00-00 00:00:00', '', '', '', ''), (2683, '164', 61, '', '24', '', 'Bharath', '', '', '', '', '', '', '', '9620797359', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Near V Legacy Convention Hall,Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & Meeting Fixed today.30.07.2019', '', 'ACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', '', '', '', ''), (2684, '164', 61, '', '164', '', 'Uday', '', '', 'udaya@manxhrsolutions.com', '', '', '', '', '9945101111', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Kasturaba Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Man Power Consultancy.Have sent P & L & Q=80K (for reference websites given by client)', '', 'ACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', '', '', '', ''), (2685, '164', 61, '', '164', 'CMS Bike Service', 'Rajendran', '', '', 'cmsrajendran@gmail.com', '', '', '', '', '9742029111', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', '100 Feet Road,Indranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Bike Service ,meeting fixed today 30.07.2019 4PM.', '', 'INACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', 'ACONVERT', '', '', ''), (2686, '164', 61, '', '164', '', 'Khaleel', '', '', 'nagarchikhaleel@gmail.com', '', '', '', '', '9108788848', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He has sent E-mail id & i have sent P & L', '', 'INACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', 'ACONVERT', '', '', ''), (2687, '164', 61, '', '164', '', 'Lakshmi Prakash', '', '', 'shreelakshmiprakash@gmail.com', '', '', '', '', '9741927647', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Basavanapura, Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She need website for school & she will discuss with her Senior & Call me back.', '', 'ACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', '', '', '', ''), (2688, '164', 61, '', '20', '', 'Zaman', '', '', '', '', '', '', '', '9900128173', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,Ajay sir quoted him 6 to 7K+GST,& he will visit office tomorrow(31.07.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-07-30', '0000-00-00 00:00:00', '', '', '', ''), (2689, '164', 61, '', '164', '', 'Madhura Hegde', '', '', 'architect.kabekkod@gmail.com', '', '', '', '', '9901038061', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', '', 0, '', '', 'Near Saibaba Temple,Arekere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She already had website,need to change its templets,Photo resolution. ', '', 'ACTIVE', 'LEAD', 0, '2019-07-31', '0000-00-00 00:00:00', '', '', '', ''), (2690, '164', 61, '', '164', '', 'Puttaraju', '', '', '', '', '', '', '', '7996472883', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Haveri', 'Haveri', 'Karnataka', 0, 'India', '', '', '', '', 'Need News Portal Website,Application Unlimited Pages.Have sent P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-07-31', '0000-00-00 00:00:00', '', '', '', ''), (2691, '164', 61, '', '164', '', 'Gupta', '', '', 'nkryjee@gmail.com', '', '', '', '', '9742594250', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,he asked me to send P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-07-31', '0000-00-00 00:00:00', '', '', '', ''), (2692, '164', 61, '', '164', '', 'Kavitha', '', '', '', '', '', '', '', '9591273366', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website to start a Lift Company.Have sent P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-07-31', '0000-00-00 00:00:00', '', '', '', ''), (2693, '164', 61, '', '164', '', 'Amar ', '', '', 'jaishankar@osprosys.com', '', '', '', '', '9845701484', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need web application development.', '', 'ACTIVE', 'LEAD', 0, '2019-08-01', '0000-00-00 00:00:00', '', '', '', ''), (2694, '164', 61, '', '164', '', 'Neha', '', '', 'nrneinnovations@gmail.com', '', '', '', '', '9611292299', '', 'Just Dial', '', '0000-00-00', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'HSR Police Station', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & Application', '', 'ACTIVE', 'LEAD', 0, '2019-08-01', '0000-00-00 00:00:00', '', '', '', ''), (2695, '164', 61, '', '164', '', 'Kousalya', '', '', 'kow.bgen@gmail.com', '', '', '', '', '8073844562', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website (5 pages)with Payment gateway.Have given quotation 15K+gst', '', 'ACTIVE', 'LEAD', 0, '2019-08-01', '0000-00-00 00:00:00', '', '', '', ''), (2697, '164', 61, '', '164', '', 'Amar Singh', '', '', '', '', '', '', '', '8867276442', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Consultancy with Logo Design.Have sent P & L.Sending quotation of 20K+GST.', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2698, '164', 61, '', '164', '', 'Rajath Bhandari', '', '', 'rajathbhandari@gmail.com', '', '', '', '', '9066666206', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Chickpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce for Fashion for Android & IOS. Have sent P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2699, '164', 61, '', '164', '', 'Kantharaju', '', '', '', '', '', '', '', '8884947289', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application like urbanclap for Android & IOS,Have told 4.5L,He will call after 2 days\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2700, '164', 61, '', '164', '', 'Surya', '', '', '', '', '', '', '', '8884921528', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website after this month.Now he need google adwords,have told 8K+GST.', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2701, '164', 61, '', '164', '', 'Saravana Babu', '', '', '', '', '', '', '', '7411144555', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Gollarahatti,Magadi Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'We have given domain name and he will meet monday 05.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2702, '164', 61, '', '164', '', 'Agarwal', '', '', 'enisagrawal007@gmail.com', '', '', '', '', '8123474797', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Banashankari 3rd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need MLM Software,have spoken with subbu sir,have sent P & demo link', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2703, '164', 61, '', '164', '', 'Nikitha', '', '', '', '', '', '', '', '8884886363', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for sales & Marketing.She will send the requirement', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2704, '164', 61, '', '164', '', 'Varaha', '', '', '', '', '', '', '', '6363243820', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Service like Mandovi motors.he has sent requirements', '', 'ACTIVE', 'LEAD', 0, '2019-08-02', '0000-00-00 00:00:00', '', '', '', ''), (2705, '164', 61, '', '164', '', 'Srinivas', '', '', 'srinivassrini11@yahoo.com', '', '', '', '', '8940129986', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website & Subbu sir will meet today 05.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-05', '0000-00-00 00:00:00', '', '', '', ''), (2706, '164', 61, '', '164', '', 'Jayalakshmi', '', '', 'jaya.kens2019@gmail.com', '', '', '', '', '', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Ken\'s Trading ,#242,National Complex,Near Bharath Pertol bunk,Tin Factory', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce Website with android application,need to send Proposal.', '', 'ACTIVE', 'LEAD', 0, '2019-08-05', '0000-00-00 00:00:00', '', '', '', ''), (2707, '164', 61, '', '164', '', 'Zaheer', '', '', 'zaheerworld@gmail.com', '', '', '', '', '9036620386', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Website & ERP software for China School.Have sent profile & PPt', '', 'ACTIVE', 'LEAD', 0, '2019-08-06', '0000-00-00 00:00:00', '', '', '', ''), (2708, '164', 61, '', '164', '', 'Harish', '', '', 'harish.neethu@gmail.com', '', '', '', '', '9986682798', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Nagasandra Metro Station', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need B2B & B2C Application and android combined application.need to send profile & Links', '', 'ACTIVE', 'LEAD', 0, '2019-08-06', '0000-00-00 00:00:00', '', '', '', ''), (2709, '164', 61, '', '164', '', 'Girish AGK', '', '', 'girish@agkinteriors.com', '', '', '', '', '9739098093', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'M S Palya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website Development & Digital marketing.Have sent P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-08-06', '0000-00-00 00:00:00', '', '', '', ''), (2710, '164', 61, '', '164', '', 'Arjun', '', '', 'arjunnaik62@gmail.com', '', '', '', '', '8123704244', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', '', 0, '', '', 'Bellary', 'Bellary', 'Karnataka', 0, 'India', '', '', '', '', 'Need 10 page Dynamic website with payment gateway.have told 20K+gst.', '', 'ACTIVE', 'LEAD', 0, '2019-08-06', '0000-00-00 00:00:00', '', '', '', ''), (2711, '164', 61, '', '164', '', 'Manu', '', '', '', '', '', '', '', '9307751285', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He enquired for website,he told me to call tomorrow 08.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-07', '0000-00-00 00:00:00', '', '', '', ''), (2712, '164', 61, '', '164', '', 'Savitha', '', '', '', '', '', '', '', '7019873216', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Fashion Designing,meeting fixed but client confirm the date', '', 'ACTIVE', 'LEAD', 0, '2019-08-07', '0000-00-00 00:00:00', '', '', '', ''), (2713, '164', 61, '', '164', '', 'Ahmed', '', '', '', '', '', '', '', '9590039123', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He has given appointment to meet in Brigade road 08.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-07', '0000-00-00 00:00:00', '', '', '', ''), (2714, '164', 61, '', '164', '', 'Vinod', '', '', '', '', '', '', '', '6289754311', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need adwords for his travels website & told him 8K+Gst.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-07', '0000-00-00 00:00:00', '', '', '', ''), (2715, '164', 61, '', '164', '', 'Chethan', '', '', 'bochethan@gmail.com', '', '', '', '', '7411251394', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Basaveshwaranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need website,and sent requirements through watts app.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-07', '0000-00-00 00:00:00', '', '', '', ''), (2716, '164', 61, '', '164', '', 'Anthony', '', '', '', '', '', '', '', '9880351447', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', '', 0, '', '', 'Jigani,Industrial Area', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Mobile Crane Service.Have sent Link & Profile', '', 'ACTIVE', 'LEAD', 0, '2019-08-08', '0000-00-00 00:00:00', '', '', '', ''), (2717, '164', 61, '', '164', '', 'Manjunath', '', '', '', '', '', '', '', '7618787201', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', '', 0, '', '', 'Metagalli', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Financial Purpose,have sent Location,he will visit office by 10.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-08', '0000-00-00 00:00:00', '', '', '', ''), (2718, '164', 61, '', '164', '', 'Selvakumar', '', '', '', '', '', '', '', '7829937469', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application like Nparrots,Shared demo link', '', 'ACTIVE', 'LEAD', 0, '2019-08-08', '0000-00-00 00:00:00', '', '', '', ''), (2719, '164', 61, '', '164', '', 'Praful', '', '', '', '', '', '', '', '9870504603', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for new firm to start up for financial.need to send quotation for his reference link\r\n\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-08', '0000-00-00 00:00:00', '', '', '', ''), (2720, '164', 61, '', '164', '', 'Nelson', '', '', '', '', '', '', '', '8050737458', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Rajeevnagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application,he will visit office saturday 10.08.2019,need to call sat morning', '', 'ACTIVE', 'LEAD', 0, '2019-08-08', '0000-00-00 00:00:00', '', '', '', ''), (2722, '164', 61, '', '164', 'Ramesh', 'Ramesh', '', '', 'nomail@gmail.com', '', '', '', '', '8098802666', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Banasawadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need classified web application for three category hotel booking ,real estate and travels \r\nhybrid application for android mobile', '', 'ACTIVE', 'LEAD', 0, '2019-08-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2723, '164', 61, '', '164', 'Start Up', 'Shreedhar', '', '', 'nomail@gmail.com', '', '', '', '', '9845926749', '', 'Just Dial', '', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need matrimonial Website,Meeting Fixed today 10.08.2019 at 6PM', '', 'ACTIVE', 'LEAD', 0, '2019-08-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2724, '164', 61, '', '164', 'Start Up', 'Naveendsouza', '', '', 'nomail@gmail.com', '', '', '', '', '9845004295', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need ERP Software for Factory,Have sent Profile ', '', 'ACTIVE', 'LEAD', 0, '2019-08-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2725, '164', 61, '', '164', 'Leather Garments', 'Anuradhapallavi', '', '', 'stella@supremeoverseas.com', '', '', '', '', '9343363527', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She just ask for quotation of 5 page static website,have given 9K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-08-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2726, '164', 61, '', '164', 'Praveen Rao', 'Praveen Rao', '', '', 'pravin.rao@mitsubishielevator.in', '', '', '', '', '9901972202', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Present he is out of station,he told me to call by 22 or 23 of august', '', 'ACTIVE', 'LEAD', 0, '2019-08-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2727, '164', 61, '', '164', 'Hotel', 'Arasu', '', '', 'nomail@gmail.com', '', '', '', '', '9449441308', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'Gandhinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Hotel Room Bookings.Need to send P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2728, '164', 61, '', '164', 'Madhusudhan', 'Madhusudhan', '', '', 'nomail@gmail.com', '', '', '', '', '7996424782', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '10 Pages Website,he will confirm when to meet.', '', 'ACTIVE', 'LEAD', 0, '2019-08-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2729, '164', 61, '', '164', 'Binoy Joseph', 'Binoy Joseph', '', '', 'nomail@gmail.com', '', '', '', '', '9900283449', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kormangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He asked me to send the Links.Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2730, '164', 61, '', '20', 'Genius Kids Learning Private Limited', 'Srinivas', '', '', 'info@gklpl.in', '', '', '', '', '9845043125', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', '43/3,old Kanakpura Road,Armugam Circle,Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Ajay sir spoke with him & Meeting fixed with subbu sir 14.08.2019 12PM', '', 'ACTIVE', 'LEAD', 0, '2019-08-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2731, '164', 61, '', '164', 'Tattoz', 'Ram', '', '', 'nomail@gmail.com', '', '', '', '', '8050127565', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Google reviews for his business.Meeting fixed 14.08.2019 afternoon.', '', 'ACTIVE', 'LEAD', 0, '2019-08-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2732, '164', 61, '', '164', 'Real Estate', 'Bharath', '', '', 'nomail@gmail.com', '', '', '', '', '7019102599', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed today 14.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2733, '164', 61, '', '164', 'Start Up', 'Narayan', '', '', 'narayan9069@gmail.com', '', '', '', '', '9341065200', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,Meeting fixed 15.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2734, '164', 61, '', '24', 'Travel Mitra', 'Bhaskar', '', '', 'bhaskar.n.murthy@gmail.com', '', '', '', '', '9980255888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap)', 'Bangalore ', 'Karnataka', 560056, 'India', '', '', '', '', '5-6 Pages of Dynamic Website,Meeting finalized for 13K+GST,and whatsapp chat 1800 extra if he need', '', 'INACTIVE', 'LEAD', 0, '2019-08-15', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2735, '164', 61, '', '164', 'Start Up', 'Shivaji', '', '', 'nomail@gmail.com', '', '', '', '', '9448522314', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Beside Kamath Hotel,Lalbagh West gate,V V Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Matrimonial website,meeting fixed 16.08.2019 11am\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2736, '164', 61, '', '164', 'Start Up', 'Krishnan', '', '', 'nomail@gmail.com', '', '', '', '', '9741277857', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'rajarajeshwari nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Private limited,and also asking for MLM ', '', 'ACTIVE', 'LEAD', 0, '2019-08-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2737, '164', 61, '', '164', 'Start Up', 'Shankar', '', '', 'reddyshankarvjp@gmail.com', '', '', '', '', '9632235066', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Shivajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Mutual Fund,equity and API need to be added,Meeting fixed tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-08-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2738, '24', 69, '', '164', 'Feel Good Moments', 'Krishnan NS', '', '', 'goalsonline.ns@gmail.com', '', '', '', '', '9741277857', 'www.feelgoodmoments.in', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '#44, 3rd cross, Sachidananda nagar, RR Nagar', 'Bangalore', 'Karnataka', 560098, 'India', 'Krishna', '9741277857', 'New', '80', 'MLM application', '', 'INACTIVE', 'LEAD', 0, '2019-08-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"MLM Application\"]', '[\"16-08-2019\"]'), (2739, '164', 61, '', '164', 'Start Up', 'Kukra Chowdari', '', '', 'nomail@gmail.com', '', '', '', '', '7411455455', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Moodalapalya Circle,near Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,Meeting fixed 16.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2740, '164', 61, '', '164', 'Rahul', 'Rahul', '', '', 'aimrexindia@gmail.com', '', '', '', '', '9743280840', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 2-3 pages website & asking for application,have sent mail with P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2741, '164', 61, '', '164', 'Start Up', 'Sanjay ', '', '', 'sanjaygowda55555@gmail.com', '', '', '', '', '7975631417', '', 'Just Dial', 'Contacted', '0000-00-00', 'Sports', 0, '', '', 'NO', 0, '', '', 'Hebbal', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need event Bidding website,have told 80K+gst', '', 'ACTIVE', 'LEAD', 0, '2019-08-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2742, '164', 61, '', '164', 'Prem K V', 'Prem K V ', '', '', 'nomail@gmail.com', '', '', '', '', '9845435655', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Sent contact no & Profile,He will call me back\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2743, '164', 61, '', '164', 'VR Electricals', 'Ragimol ', '', '', 'gagimolraj96@gmail.com', '', '', '', '', '9446200794', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'need renewal for his website & have told 4.5K,he will call after 2 days.\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2744, '164', 61, '', '164', 'bluepackersmovers ', 'Rajesh ', '', '', 'nomail@gmail.com', '', '', '', '', '8660180012', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'SEO packages,have told 15K+gst per month', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2745, '164', 61, '', '164', 'Sampath', 'Sampath ', '', '', 'sampath_janu@rediffmail.com', '', '', '', '', '9886451307', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kathriguppe ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'he need website & told me to call by 2.30PM ,He will visit office tomorrow 20.08.2019', '', 'INACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2746, '164', 61, '', '164', 'Bhaskar Reddy', 'D G Bhaskar reddy ', '', '', 'dgbreddy59@gmail.com', '', '', '', '', '8095041000', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Horamavu', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He told me to call at 7PM', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2747, '164', 61, '', '164', 'Arun', 'Arun ', '', '', 'eartearunkumar@gmail.com', '', '', '', '', '9986999512', '', 'Just Dial', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & Meeting fixed 20.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2748, '164', 61, '', '164', 'SLN Tours & Travels', 'Arun ', '', '', 'prohit322@gmail.com', '', '', '', '', '9620685797', '', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Muddinapalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 4-5 pages of travels website,he will visit office 20.08.2019 at 9.30am', '', 'INACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2749, '164', 61, '', '164', 'Saurabh', 'Saurabh ', '', '', 'nomail@gmail.com', '', '', '', '', '9540400088', '', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call 24.08.2019 have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2750, '164', 61, '', '164', 'Aarathi', 'Aarathi ', '', '', 'artiravindranathan@yahoo.com', '', '', '', '', '9886736703', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bellandur', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L ', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2751, '164', 61, '', '164', 'Surat Bricks', 'Abhishek', '', '', 'abhishekgadia@hotmail.com', '', '', '', '', '9377002239', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Surat', 'Surat', 'Gujarath', 0, 'India', '', '', '', '', 'He is discussing with subbu sir,I have shared requirements.', '', 'ACTIVE', 'LEAD', 0, '2019-08-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2752, '164', 61, '', '164', 'Trading website', 'Naveen ', '', '', 'nomail@gmail.com', '', '', '', '', '7406017976', '', '', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '6-7 pages dynamic website,Meeting 21.08.2019 12PM', '', 'INACTIVE', 'LEAD', 0, '2019-08-20', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2753, '164', 61, '', '164', 'Start Up', 'Vicky ', '', '', 'nomail@gmail.com', '', '', '', '', '9740013004', '', '', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website like SPA Bangalore,He will confirm the meeting time today 20.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2755, '164', 61, '', '164', 'Start Up', 'Ibraham', '', '', 'nomail@gmail.com', '', '8098802666', '', '', '9663355468', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Malleswaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 4 to 5 pages of static website', '', 'ACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (2756, '164', 61, '', '164', 'Vlight services private limited', 'Aiyanna', '', '', 'aianadevaiah123@gmail.com', '', '', '', '', '6364320666', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', 'Shylaja', '7899305780', '', '', 'Need website,meeting fixed 21.08.2019 ', '', 'INACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2757, '164', 61, '', '164', 'AJ Sports', 'Andrew Anthony', '', '', 'ajsports2019@gmail.com', '', '', '', '', '9148430877', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', '#6/20,2nd cross,St.Thomas town,Lingarajpuram', 'Bangalore', 'Karnataka', 84, 'India`', 'Andrew', '9008823232', '', '', 'Need website for sports shop.Meeting fixed 21.08.2019', '', 'INACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2758, '164', 61, '', '164', 'Start Up', 'Hanif', '', '', 'nomail@gmail.com', '', '', '', '', '9845538030', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Interiors & meeting fixed tomorrow 22.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2759, '164', 61, '', '164', 'Hemanth', 'Hemanth ', '', '', 'hemanth9719@gmail.com', '', '', '', '', '9844109699', '', 'Just Dial', 'Contacted', '0000-00-00', 'Astrology', 0, '', '', 'NO', 0, '', '', 'Lingarajpuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for astrology,Meeting fixed today 21.08.2019 at 7PM', '', 'ACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2760, '164', 61, '', '164', 'Political', 'Puttaswamy ', '', '', 'bharathiyabelakuparty@gmail.com', '', '', '', '', '9110450298', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 5 pages of political website ,Meeting fixed 22.08.2019 at 10.30am', '', 'INACTIVE', 'LEAD', 0, '2019-08-21', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (2761, '164', 61, '', '164', 'Orel inn', 'Sachin', '', '', 'sales@hotelorelinn.com', '', '', '', '', '9972102222', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Website for Hotel Business,Meeting fixed tomorrow 23.08.2019 at 11.30AM', '', 'ACTIVE', 'LEAD', 0, '2019-08-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2762, '164', 61, '', '164', 'Start Up', 'Zafar Iqbal', '', '', 'zafariqbal@gmail.com', '', '', '', '', '9008536597', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayabank Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for his Start up business.Meeting fixed 23.08.2019 Morning', '', 'ACTIVE', 'LEAD', 0, '2019-08-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2763, '164', 61, '', '24', 'Start Up', 'Abhishek', '', '', 'abhishek7867@gmail.com', '', '', '', '', '7019606285', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Static website for Manufacturing,have told 10K+GST(subbu sir)& need to send quotation', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2764, '164', 61, '', '164', 'Sunder', 'Sunder', '', '', 'rajansunder@hotmail.com', '', '', '', '', '9901767699', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'COX town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 7-8 pages of static website,with 5 e-mail Id & 1 contact form', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2765, '164', 61, '', '164', 'Start Up', 'Deepak', '', '', 'deep_nair19@yahoo.com', '', '', '', '', '9845299441', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Ramagondanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'His cousine need website,he will call me back', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2766, '164', 61, '', '164', 'Mahadev', 'Mahadev', '', '', 'nomail@gmail.com', '', '', '', '', '9113873368', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need webapplication,he is not answering my call', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2767, '164', 61, '', '164', 'Start Up', 'Bhuvaneshwaran', '', '', 'nomail@gmail.com', '', '', '', '', '6379211073', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website for Training center & Consultancy,Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2770, '164', 61, '', '164', 'Start Up', 'Sarun Satheesh', '', '', 'nomail@gmail.com', '', '', '', '', '9809084447', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Job Portal Application,subbu sir discussed with him,monday need to call', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2771, '164', 61, '', '164', 'Sirajuddin', 'Sirajuddin', '', '', 'nomail@gmail.com', '', '', '', '', '8884220269', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need single page dynamic website,meeting fixed 23.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2772, '164', 61, '', '164', 'MK Interiors', 'Mohammed Rafi', '', '', 'nomail@gmail.com', '', '', '', '', '7259187197', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website for Interiors,meeting fixed tomorrow 24.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2773, '164', 61, '', '164', 'Smart Enterprises', 'Syed Yousuf', '', '', 'nomail@gmail.com', '', '', '', '', '9886913007', '', 'Just Dial', 'Contacted', '0000-00-00', 'Sports', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Sports shop,meeting fixed tomorrow 24.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2774, '164', 61, '', '164', 'Raju Chandrappa', 'Raju Chandrappa ', '', '', 'raju.rgp06@gmail.com', '', '', '', '', '9845480199', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Basaveshwaranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He is driving call later, He will call by Monday 26.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2775, '164', 61, '', '164', 'Start Up', 'Imran ', '', '', 'nomail@gmail.com', '', '', '', '', '9620754845', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Sirsi', 'Uttarakannada', 'Karnataka', 0, 'India', '', '8384234398', '', '', 'need website like aarida.com,have told 3-4 Lakh He will call me back.Call Monday 26.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2776, '164', 61, '', '164', 'oil business', 'Nusrat alli ', '', '', 'nomail@gmail.com', '', '', '', '', '9971200646', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Delhi', 'Delhi', 'Delhi', 0, 'India', '', '', '', '', 'E-Commerce website for oil business with international payment gate way,Have told 30K+GST & have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2777, '164', 61, '', '164', 'Event Management', 'Yatheesh ', '', '', 'yatheesh991@gmail.com', '', '', '', '', '7760807780', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He will call after 15 min,He will visit office & have sent location ', '', 'INACTIVE', 'LEAD', 0, '2019-08-24', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Dynamic website\"]', '[\"31-08-2019\"]'), (2778, '164', 61, '', '164', 'Dresser Team', 'Devleena', '', '', 'dresserteam2018@gmail.com', '', '', '', '', '9804876479', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Richmond town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for women appearls with 10-12 categories of 250-300 products with payment gateway & corriour agency,have told 30K+gst with 1 gb server space,data entry should be made by the client only.', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2779, '164', 61, '', '164', 'Start Up', 'sumith Thakur', '', '', 'iamsumitthakur89@gmail.com', '', '', '', '', '9902390867', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website,he will call me in the evening.', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2780, '164', 61, '', '164', 'Vishwanath', 'Vishwanath', '', '', 'vishuritha@gmail.com', '', '', '', '', '9739735571', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Richmond town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent Profile & Links.', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2781, '164', 61, '', '164', 'RMV Travels', 'Raghunath ', '', '', 'rmvtravels01@gmail.com', '', '', '', '', '8088776664', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website,meeting fixed today 26.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2782, '164', 61, '', '164', 'Water purifier', 'Reddy', '', '', 'nomail@gmail.com', '', '', '', '', '9743435333', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for water purifier,have told 9K+gst for single page dynamic website', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2783, '164', 61, '', '164', 'Amithabh', 'Amithabh', '', '', 'nomail@gmail.com', '', '', '', '', '8088105553', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Peenya,Platinum city O Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed today 26.08.2019.', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2784, '164', 61, '', '164', 'Construction ', 'Pradeep Reddy', '', '', 'pradeepsreddy@gmail.com', '', '', '', '', '9945017337', '', 'Just Dial', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '', '', 'NO', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5-6 page static website for construction company,Have told 9K+gst,he will call me back', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2785, '164', 61, '', '164', 'Egg Marketing', 'Manikantha', '', '', 'manikantha8095@gmail.com', '', '', '', '', '9742445889', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website for Egg Marketing.Have sent Quotation & Profile', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2786, '164', 61, '', '164', 'Start Up', 'Amrutha Rao', '', '', 'r.amrutharao@yahoo.com', '', '', '', '', '9980213109', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Vidyaranyapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,she will confirm tomorrow 27.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2787, '164', 61, '', '164', 'Chickpet donne biriyani house', 'Pradeep', '', '', 'madan.chickpetdonnebiryani@gmail.com', '', '', '', '', '9901622922', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' page dynamic website with domain & hosting 15K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2788, '164', 61, '', '164', 'Taxcelant India', 'Nafaul', '', '', 'nomail@gmail.com', '', '', '', '', '8197498974', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Corporation circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application like Ola or Oyo,meeting fixed on 01.09.2019,subbu sir will meet him\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2789, '164', 61, '', '164', 'Start Up', 'Lal Chand', '', '', 'nomail@gmail.com', '', '', '', '', '9840122065', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Whitefield ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He has sent requirements thro\'whatsapp,I send it to Subbu sir.', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2790, '164', 61, '', '164', 'Bhaktha and sons', 'Purushotham Bhakta', '', '', 'bhakthaandsons@gmail.com', '', '', '', '', '9844038405', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website & Meeting fixed today evening (27.08.2019).', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2791, '164', 61, '', '164', 'Start Up', 'Suhas Pandith', '', '', 'nomail@gmail.com', '', '', '', '', '9845520360', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5 pages of dynamic website with CMS,have told 15K+GSt,He will visit office 28.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2792, '164', 61, '', '164', 'Oldage home', 'Raju', '', '', 'nomail@gmail.com', '', '', '', '', '9902315072', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'Kengeri upanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for oldage home,meeting fixed today 27.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2793, '164', 61, '', '164', 'Prashanth Venkategowda', 'Prashanth Venkategowda', '', '', 'prashanthv03@gmail.com', '', '', '', '', '7760768986', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'He need website & He has given appointment tomorrow 29.08.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2794, '164', 61, '', '164', 'Start Up', 'Vishnu', '', '', 'nomail@gmail.com', '', '', '', '', '9916121552', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'C V Raman nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need static website,Have told 9K+GST,need to call tomorrow (29.08.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-08-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2795, '164', 61, '', '164', 'Meenakshi', 'Meenakshi', '', '', 'brmeenakshi@yahoo.com', '', '', '', '', '9980866660', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Manjunathgalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to call tomorrow morning(29.08.2019)\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2796, '164', 61, '', '164', 'Akasmika Furnitures', 'Binoy', '', '', 'binoybangalore@gmail.com', '', '', '', '', '9916106606', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He has sent his requirement.', '', 'ACTIVE', 'LEAD', 0, '2019-08-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2797, '164', 61, '', '164', 'Start Up', 'Balu', '', '', 'anjana.smcg@gmail.com', '', '', '', '', '9066662304', '', 'Just Dial', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '', '', 'NO', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for start up interiors & Construction company & digital marketing,he will call me back when he need,have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-29', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2798, '164', 61, '', '164', 'Anushankar', 'Anushankar', '', '', 'gs.gaurav.gs1@gmail.com', '', '', '', '', '8861253968', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 7 page static website with wordpress,have told 10K+gst,need to send mail\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-29', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2799, '164', 61, '', '164', 'Vishwas Jain', 'Vishwas Jain', '', '', 'nomail@gmail.com', '', '', '', '', '9916070999', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 4-5 page website,he is out of station now need to call after one week.', '', 'ACTIVE', 'LEAD', 0, '2019-08-29', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2800, '164', 61, '', '164', 'Optical manufacture', 'Divya', '', '', 'nomail@gmail.com', '', '', '', '', '9845366406', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 10-15 page static website,meeting fixed today 29.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-29', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2801, '164', 61, '', '164', 'Security solutions', 'Dilip Krishnan', '', '', 'dgkhrd@gmail.com', '', '', '', '', '9497381041', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Kasthurinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,he will call after reaching mysore', '', 'ACTIVE', 'LEAD', 0, '2019-08-29', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2802, '164', 61, '', '164', 'Eszero project private limited', 'Pradeep', '', '', 'eszeroprojects@gmail.com', '', '', '', '', '9945553032', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Raghuvanahalli, Bangalore City Municipal Corporation Layout,', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website development,already having domain & Hosting.Meeting today', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2803, '164', 61, '', '164', 'Rashmi', 'Rashmi', '', '', '87rashu@gmail.com', '', '', '', '', '9686045287', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', '#029,2nd cross,Ramamurthy nagar', 'Bangalore`', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for personal use.meeting today', '', 'INACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2804, '164', 61, '', '164', 'Start Up', 'Aathesh', '', '', 'nomail@gmail.com', '', '', '', '', '8546834455', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need dynamic website for online training.meeting fixed today 30.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2805, '164', 61, '', '164', 'Consultancy', 'Nitin Barekere', '', '', 'nitinisnow@gmail.com', '', '', '', '', '9901811566', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will send the reference website,have told 16K+GST.', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2806, '164', 61, '', '164', 'Madhukanth', 'Madhukanth', '', '', 'madhukanthn@gmail.com', '', '', '', '', '9980411778', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Attiguppe ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will call tomorrow.31.08.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2807, '164', 61, '', '164', 'Start Up', 'Rajaneesh Raj', '', '', 'rajaneeshraj15@gmail.com', '', '', '', '', '9741973969', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He was asking for application,have sent location', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2808, '164', 61, '', '164', 'Suresh', 'Suresh', '', '', 'srivarumedical@gmail.com', '', '', '', '', '9900232434', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'API Development,have sent requirements to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-08-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2809, '164', 61, '', '164', 'Ravi Varma', 'Ravi Varma', '', '', 'ravi7074@gmail.com', '', '', '', '', '9880077753', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Kammanhalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Dynamic website for data management.Need to send q: website-12K,US Hosting:4000,SSL Certificate:4000,5 E-mail Id:5000=25000+GST\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Dynamic website\"]', '[\"\"]'), (2810, '164', 61, '', '164', 'Ananth', 'Ananth ', '', '', 'nomail@gmail.com', '', '', '', '', '7904068394', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Hosur', 'Hosur', 'Thamilnadu', 0, 'India', '', '', '', '', 'Need website & SEO,Have sent P & L.', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2811, '164', 61, '', '164', 'Niranjan', 'Niranjan ', '', '', 'hlnns0606@gmail.com', '', '', '', '', '8950051371', '', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent mail,he will visit office by Tuesday 03.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2812, '164', 61, '', '164', 'Praveen Kumar', 'Praveen Kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9916417556', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for printing,Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2813, '164', 61, '', '164', 'Dilip', 'Dilip ', '', '', 'deepakthaltr@gmail.com', '', '', '', '', '9740576521', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call after 03.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2814, '164', 61, '', '164', 'Adithya Jodhani', 'Adithya Jodhani ', '', '', 'nomail@gmail.com', '', '', '', '', '9916562015', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will call me back ,Call 04.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2815, '164', 61, '', '164', 'Homestay', 'Abhi Laxman ', '', '', 'nomail@gmail.com', '', '', '', '', '9480487468', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Chikkamagalore ', 'Chikkamagalore ', 'karnataka', 0, 'India', '', '', '', '', 'Need website for Home stay', '', 'ACTIVE', 'LEAD', 0, '2019-08-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2816, '164', 61, '', '164', 'Murali', 'Murali ', '', '', 'naveenkumar@universalwaterpurifiers.com', '', '', '', '', '9591913848', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Begur road,Bommanahalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for online marketing Meeting fixed today 04.09.2019,Have told 35K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2817, '164', 61, '', '164', 'Start Up', 'Praveen ', '', '', 'nomail@gmail.com', '', '', '', '', '8050716413', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', 'NO', 0, '', '', 'Gulbarga', 'Gulbarga', 'Karnataka', 0, 'India', '', '', '', '', 'MLM application have sent demo link Call 05.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2818, '164', 61, '', '164', 'component buy', 'Raghu ', '', '', 'sales@componentbuy.com', '', '', '', '', '9980267129', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for 2lak products Meeting tomorrow morning 05.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2819, '164', 61, '', '164', 'UVC Alumni association', 'Prasad ', '', '', 'nomail@gmail.com', '', '', '', '', '9845101625', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'application for UVC Alumni association Meeting fixed ', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2820, '164', 61, '', '164', 'Start Up', 'Ranjith Tejaswi ', '', '', 'tejaswiranjith@gmail.com', '', '', '', '', '9986895167', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Mysore', 'mysore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website He will visit office tomorrow 05.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2821, '164', 61, '', '164', 'Job recruitment', 'Irfan ', '', '', 'nomail@gmail.com', '', '', '', '', '9738805504', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for job recruitment ,Meeting fixed tomorrow afternoon 05.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2822, '164', 61, '', '164', 'Chandru', 'Chandru ', '', '', 'parulokesh93@gmail.com', '', '', '', '', '9945025044', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bagalagunte', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '6-7 pages of dynamic website Meeting fixed next Sunday', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2823, '164', 61, '', '164', 'Start Up', 'Munegowda ', '', '', 'nomail@gmail.com', '', '', '', '', '8095064888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed tomorrow evening 05.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2824, '164', 61, '', '164', 'Abiu media', 'Iphiyash', '', '', 'abiumedia@gmail.com', '', '', '', '', '9916178701', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website with android app,need to send quotation of 90K+GST\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2825, '164', 61, '', '164', 'Start Up', 'Lokeshappa', '', '', 'lokeshappa@gmail.com', '', '', '', '', '7676760225', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed on 04.09.2019,need to send quotation of 6K(static)& 11K(dynamic)', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2826, '164', 61, '', '164', 'Temple', 'Krishnakumar', '', '', 'skksbc@yahoo.com', '', '', '', '', '9480194844', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need single page static website for Temple in Tamilnadu,have told 6K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (2827, '164', 61, '', '164', 'Bhaskar', 'Bhaskar Reddy', '', '', 'bhaskarreddyas@gmail.com', '', '', '', '', '9845971063', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,meeting fixed today 05.09.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2828, '164', 61, '', '164', 'Amyra Sofa Furnitures', 'Azaan Khan ', '', '', 'nomail@gmail.com', '', '', '', '', '9900524846', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'HBR Layout,BDA Complex ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Amyra furniture & Sofa Meeting fixed 06.09.2019 at 11am', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2829, '164', 61, '', '164', 'Start Up', 'Chethan ', '', '', 'nomail@gmail.com', '', '', '', '', '9886688150', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Chamrajpet ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 2 websites for Goshale & Fabrication constructions', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2830, '164', 61, '', '164', 'Chethan', 'Chethan ', '', '', 'nomail@gmail.com', '', '', '', '', '9916929419', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'He will visit office tomorrow 12PM', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2831, '164', 61, '', '164', 'Start Up', 'Praveen ', '', '', 'praveencb97@gmail.com', '', '', '', '', '8880816192', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '3-4 pages dynamic website (2websites) Mineral water factory & Electrical shop Have told 11K+GST each', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2832, '164', 61, '', '164', 'Fernandis ', 'Fernandis ', '', '', 'nomail@gmail.com', '', '', '', '', '7829310277', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Yelachanahalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He said he will call back', '', 'ACTIVE', 'LEAD', 0, '2019-09-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2833, '164', 61, '', '164', 'Rudresh', 'Rudresh', '', '', 'nomail@gmail.com', '', '', '', '', '9535410636', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Meenakshim mall ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & meeting fixed 06.09.2019,Have told 9K+GST,He will confirm\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-09-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2834, '164', 61, '', '164', 'paper plate manufacture', 'Kishan', '', '', 'sapolipack@gmail.com', '', '', '', '', '9342311333', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Kamakshipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website 5-6 page with social media link,Have sent P & L have told 20K+GST,Call 07.09.2019\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-09-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2835, '164', 61, '', '164', 'Home Appliances', 'Praveen Kumar ', '', '', 'praveenkumartr.magadi@gmail.com', '', '', '', '', '9591578849', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Malleshwaram ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website & digital marketing,have told 30K+gst ', '', 'ACTIVE', 'LEAD', 0, '2019-09-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2836, '164', 61, '', '164', 'Abdul', 'Abdulla ', '', '', 'nomail@gmail.com', '', '', '', '', '8884408888', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'ERP need to send P & L', '', 'ACTIVE', 'LEAD', 0, '2019-09-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2837, '164', 61, '', '164', 'decorart', 'Jency thomas ', '', '', 'jencythomas18@yahoo.co.in', '', '', '', '', '9591444944', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vidyaranyapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Vidyaranyapuram,Need 2-3 pages static website with hosting,she will confirm 07.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2838, '164', 61, '', '164', 'start up', 'Vivekananda ', '', '', 'nomail@gmail.com', '', '', '', '', '9700789797', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website,Need to send P & L', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2839, '164', 61, '', '164', 'Selvakumar', 'Selva Kumar ', '', '', 'ssati78@gmail.com', '', '', '', '', '9886260934', '', '', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website for Real estate,Meeting fixed 10.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2840, '164', 61, '', '164', 'Interiors', 'Uday ', '', '', 'uday.sndy@gmail.com', '', '', '', '', '9164533339', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Interiors,Meeting fixed 09.09.2019 Have told 10K+GST,He will confirm 11.09.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2841, '164', 61, '', '164', 'Consultancy', 'Guptha ', '', '', 'nomail@gmail.com', '', '', '', '', '9620125933', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages website for consultancy,Meeting fixed today 09.09.2019 at 8PM', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2842, '164', 61, '', '164', 'Start up', 'Ahmed ', '', '', 'mudasirnazar525@gmail.com', '', '', '', '', '8088336548', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'J P Nagar (Ragi gudda temple)', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website with payment gateway,Meeting fixed 10.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2843, '164', 61, '', '164', 'Start up', 'Sathish ', '', '', 'tejareddy218@gmail.com', '', '', '', '', '7674949398', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Mahadevpura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website with payment gateway', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2844, '164', 61, '', '164', 'Start up', 'Poornima ', '', '', 'mails.poorniman@gmail.com', '', '', '', '', '9900638431', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bannerghatta Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Job Portal website,Need to send Quotation', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2845, '164', 61, '', '164', 'Naveen', 'Naveen ', '', '', 'sansansantosh7@gmail.com', '', '', '', '', '9148087080', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages dynamic website ,Have sent proposal of 12K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2846, '164', 61, '', '164', 'Start up', 'Kumar ', '', '', 'kumarkarthikarayan@gmail.com', '', '', '', '', '8660415274', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website Meeting fixed 10.09.2019,have told 15K+GST,He will send the reference link.', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2847, '164', 61, '', '164', 'Vivek', 'Vivek ', '', '', 'bjmvivek@gmail.com', '', '', '', '', '8105452424', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L,call 11.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2848, '164', 61, '', '164', 'Praveen', 'Praveen ', '', '', 'Praveenikb2020@gmail.com', '', '', '', '', '9380815757', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'E-commerce website & events website,Have sent P & L & L,He will visit our office ,call 11.09.2019.', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2849, '164', 61, '', '164', 'Satheesh', 'Satheesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9901107989', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Maratha halli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Education n training website ,Subbu sir will call ', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2850, '164', 61, '', '164', 'Chandan', 'Chandan ', '', '', 'chandansga@yahoo.co.in', '', '', '', '', '9900249488', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L,He need to re wap the existing website sriguruautomatics.com with new domain,Have told 18K+GST,call 11.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2851, '164', 61, '', '164', 'Start up', 'Santhosh ', '', '', 'nomail@gmail.com', '', '', '', '', '7204259902', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Kalyan nagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for tours & Travels,Packages,pick up n drop,Have sent P & L,call 11.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2852, '164', 61, '', '164', 'Mohan', 'Mohan ', '', '', 'nomail@gmail.com', '', '', '', '', '9980708016', '', 'Just Dial', '', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', 'Silk board factory ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4 page static website with google map,have told 7K+gst,He will visit our office ,call 11.09.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2853, '164', 61, '', '164', 'Car rental', 'Kiran ', '', '', 'speed9393@yahoo.com', '', '', '', '', '9986666647', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'HSR Layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Car Rental website.', '', 'ACTIVE', 'LEAD', 0, '2019-09-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2854, '164', 61, '', '164', 'Construction ', 'Kamath', '', '', 'kamathinsul@yahoo.com', '', '', '', '', '9448453819', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need basic static website for Construction business,have told 7K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2856, '164', 61, '', '164', 'Puttaraju', 'Puttaraju ', '', '', 'nomail@gmail.com', '', '', '', '', '7996472883', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Haveri', 'Haveri', 'Karnataka', 0, 'India', '', '', '', '', 'Call after one hour,Call 13.09.2019 at 10AM', '', 'ACTIVE', 'LEAD', 0, '2019-09-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2857, '164', 61, '', '164', 'Consultancy', 'Ravindranath ', '', '', 'nath_consultancy@yahoo.com', '', '', '', '', '9343783355', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L Call 16.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2858, '164', 61, '', '164', 'start up', 'Nagaraju ', '', '', 'nagu5262@gmail.com', '', '', '', '', '9880675946', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'HSR ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'basic static website Have sent P & L told 6K+GST Call 13.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2859, '164', 61, '', '164', 'Ambulance service', 'Ajay ', '', '', 'nomail@gmail.com', '', '', '', '', '7022510868', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bannerghatta road ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website with digital marketing,Tomorrow meeting 13.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2860, '164', 61, '', '164', 'Manvestates', 'Sai', '', '', 'nomail@gmail.com', '', '', '', '', '8497071189', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Dynamic website 5 pages,Have told 12K+GST.', '', 'ACTIVE', 'LEAD', 0, '2019-09-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2861, '164', 61, '', '164', 'Sudheer', 'Sudheer kumar reddy', '', '', 'sudheerreporter@gmail.com', '', '', '', '', '7386666199', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', 'NO', 0, '', '', 'Lalbhagh road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Application,he met Subbu sir in office 13.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2862, '164', 61, '', '164', 'Sujay', 'Sujay', '', '', 'nomail@gmail.com', '', '', '', '', '9902860442', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Banashankari 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,He visited office', '', 'ACTIVE', 'LEAD', 0, '2019-09-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2863, '164', 61, '', '164', 'Start up', 'Mohammed', '', '', 'aryantousif9743@gmail.com', '', '', '', '', '9743139677', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar 7 th Block', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 page static website,have told 10K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2864, '164', 61, '', '164', 'Distribution company', 'Madhumitha', '', '', 'madhumita.krishnaswamy736@gmail.com', '', '', '', '', '9972006341', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Deepanjali nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need static website,meeting fixed today', '', 'ACTIVE', 'LEAD', 0, '2019-09-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2865, '164', 61, '', '164', 'Home cleaner', 'Manu', '', '', 'nomail@gmail.com', '', '', '', '', '9606431209', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'J P Nagar 8th phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for online booking,have told 25K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2866, '164', 61, '', '164', 'Sai Jyothi Builders', 'Diwakar', '', '', 'info@aiebuildtech.com', '', '', '', '', '9071503399', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'ITPL main road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,meeting fixed 17.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2867, '164', 61, '', '164', 'IN-FIN solutions', 'Karthik ', '', '', 'fruityranjitha77@gmail.com', '', '', '', '', '7871087767', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli', 'Bangalore', 'Karnataka', 560103, 'India', 'Karthik', '8667416927', 'New', '20', 'Need static website.Meeting fixed 17.09.2019\r\n', '', 'INACTIVE', 'LEAD', 0, '2019-09-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2868, '164', 61, '', '164', 'Start up', 'Muskan', '', '', 's.muskan@rediffmail.com', '', '', '', '', '9845878622', '', 'Just Dial', 'Contacted', '0000-00-00', 'Astrology', 0, '', '', 'NO', 0, '', '', 'Thippasandra,near HAL', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need static website for Astrology.Meeting fixed 17.09.2019 afternoon\r\n', '', 'ACTIVE', 'LEAD', 0, '2019-09-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2869, '164', 61, '', '164', 'Pavan', 'Pavan ', '', '', 'pavanbk420@gmail.com', '', '', '', '', '7411744964', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 5 pages of dynamic website with 3 e-mail id,have told 15K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2870, '24', 69, '', '24', 'Build My Home', 'Vishwas', '', '', 'buildmyhomemarketing@gmail.com', '', '', '', '', '9588416714', '', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', 'Dona Paula', 'Goa', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-09-17', '0000-00-00 00:00:00', '', '[\"30000\"]', '[\"Application document preparation\"]', '[\"17-09-2019\"]'), (2871, '164', 61, '', '164', 'Construction ', 'Jaffer ', '', '', 'nomail@gmail.com', '', '', '', '', '9738654007', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'HBR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website,Meeting today ,Have told 18K+GST for dynamic website with logo', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2872, '164', 61, '', '164', 'Start up', 'Heena Jain ', '', '', 'heenajain87@gmail.com', '', '', '', '', '9739888988', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She need application like airbnb.com,Have transferd details to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2873, '164', 61, '', '164', 'Start up', 'Chethan ', '', '', 'chethanram@malur.in', '', '', '', '', '8123087642', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Maloor', 'Bangalore', 'Karnataka', 0, 'India', '', '8660019927', '', '', 'Need website he will send the requirements through mail Call after 2 days 20.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2874, '164', 61, '', '164', 'Gokul', 'Gokul ', '', '', 'nomail@gmail.com', '', '', '', '', '9902266371', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'HSR ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5-6 pages of dynamic website with payment gateway,Call tomorrow at 10.30 he will confirm the meeting time', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2875, '164', 61, '', '164', 'Abhishek', 'Abhishek ', '', '', 'nomail@gmail.com', '', '', '', '', '9741110745', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'R R Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed on Monday 23.09.2019 with subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2876, '164', 61, '', '164', 'Rohan', 'Rohan ', '', '', 'nomail@gmail.com', '', '', '', '', '7406555547', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vidyaranyapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,Meeting today ', '', 'ACTIVE', 'LEAD', 0, '2019-09-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2877, '164', 61, '', '164', 'Dinesh', 'Dinesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9581330781', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website for Interior Designing Need to call tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-09-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2878, '164', 61, '', '164', 'Start up', 'Syed Irtuza zahid ', '', '', 'nomail@gmail.com', '', '', '', '', '9206752584', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Customized E-commerce website ,Have told 1.5L +GST,He will meet subbu sir on Sunday. he will confirm tomorrow Call 20.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2879, '164', 61, '', '164', 'Start up', 'Chandan ', '', '', 'nomail@gmail.com', '', '', '', '', '9945482494', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Koramangala ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 10-12 pages of dynamic website with domain hosting,google addwords,payment gateway & SEO have told 23K+15K+GST He will meet subbu sir by1 or 2 week Call 26.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2880, '164', 61, '', '164', 'Roy', 'Roy ', '', '', 'moevent@gmail.com', '', '', '', '', '9886846088', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Ejipura,Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to send P & L ', '', 'ACTIVE', 'LEAD', 0, '2019-09-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2881, '164', 61, '', '164', 'Nutriment Domesticated', 'Mohammed', '', '', 'saj.bossonline@gmail.com', '', '', '', '', '9080665730', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Frazer town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Retail of chicken selling,Have told 12K+GST & have sent P& L.', '', 'ACTIVE', 'LEAD', 0, '2019-09-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2882, '164', 61, '', '164', 'Travel agency', 'Rupesh ', '', '', 'a.rupesh1989@gmail.com', '', '', '', '', '7022806749', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Near Bangalore university', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for Travel agency Have sent P,L & L he will visit our office', '', 'ACTIVE', 'LEAD', 0, '2019-09-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2883, '164', 61, '', '164', 'Vijay Kumar', 'Vijay Kumar ', '', '', 'viji.ym@gmail.com', '', '', '', '', '9972469225', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'osborne road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will discuss with his friend & call me back Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-09-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2884, '164', 61, '', '164', 'MJ Reworker ', 'Pavan kumar ', '', '', 'mjreworkerfibermanufacture@gmail.com', '', '', '', '', '9844554631', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L,Need e-commerce,Call 23.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2885, '164', 61, '', '164', 'Manjunatha Enterprise', 'Manjunath', '', '', 'nomail@gmail.com', '', '', '', '', '8050333363', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Banasavadi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website & google adwords,have sent location he will visit office tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-09-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2886, '164', 61, '', '164', 'Anju', 'Anju ', '', '', 'princy@narayaniholidays.com', '', '', '', '', '9741492828', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need travel agency website,Subbu sir will call her She will visit on Monday', '', 'ACTIVE', 'LEAD', 0, '2019-09-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2887, '164', 61, '', '164', 'Annappa', 'Annappa ', '', '', 'nomail@gmail.com', '', '', '', '', '9590265693', '', '', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5-10 pages Dynamic website,Need to send quotation', '', 'ACTIVE', 'LEAD', 0, '2019-09-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2888, '164', 61, '', '164', 'Surya', 'Surya ', '', '', 'actmekalyan@yahoo.com', '', '', '', '', '8431753904', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '9036095888', '', '', 'Have sent location & subbu sir number He will visit office today', '', 'ACTIVE', 'LEAD', 0, '2019-09-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2889, '24', 69, '', '24', 'Excel Sports Scientifics', 'Rajendran', '', '', 'excelsports.scientifics69@gmail.com', '', '', '', '', '9844222200', '', 'Advertisement', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', 'Bangalore', 'Karnatak', 0, '', '', '', '', '', 'Urgent requirements for website with 10 pages. 18k + GST', '', 'ACTIVE', 'LEAD', 0, '2019-09-21', '0000-00-00 00:00:00', '', '[\"18000\"]', '[\"Dynamic website\"]', '[\"21-09-2019\"]'), (2890, '164', 61, '', '164', 'start up', 'Manju ', '', '', 'ThirumalaTankServices@gmail.com', '', '', '', '', '9845363532', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Vijayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & google adword ,Meeting fixed have told 7K for website & 8K for adwords,he will confirm tomorrow 23.09.2019 Call 24.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2891, '164', 61, '', '164', 'Ravi Kumar', 'Ravi kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '7337775750', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 4-5 page dynamic website for training institute Have told 10K+GST whatsapp chat -1800 Need to call 5.30PM he will confirm meeting time', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2892, '164', 61, '', '164', 'Sandeep', 'Sandeep ', '', '', 'deepurockzzzz@gmail.com', '', '', '', '', '9731473788', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need web application(1.5L) android(1.5L) IOS(1.5L) for training institute Ajay sir spoken in conference have sent P & L Call 24.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2893, '164', 61, '', '164', 'start up', 'Basavaraj Hosmani ', '', '', 'nomail@gmail.com', '', '', '', '', '9110270768', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Start up company service related Meeting fixed today at 5.30PM Have told ', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2894, '164', 61, '', '164', 'STONE TOOLS AND CHEMICALS PVT LTD', 'Rahul ', '', '', 'nomail@gmail.com', '', '', '', '', '9902631014', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He sent his requirement through whatsapp Need to send quotation', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2895, '164', 61, '', '164', 'Pooja', 'Pooja ', '', '', 'apple.pooja@gmail.com', '', '', '', '', '8884507073', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '3-4 pages dynamic website with payment gateway for NGO Meeting fixed & have told 11.5K+GST she will come to office n make payment ', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2896, '164', 61, '', '164', 'Start up', 'Kishor ', '', '', 'kishor.im2019@gmail.com', '', '', '', '', '9513786056', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for food delivery(Raw mutton,chicken with ingredients) need seo,digital marketing also,need to send proposal for 40K e-commerce & 18K digital marketing', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2897, '164', 61, '', '164', 'Civil Contractor', 'Yogananda ', '', '', 'nomail@gmail.com', '', '', '', '', '9632996644', '', 'Just Dial', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '', '', 'NO', 0, '', '', 'Mahalakshmi Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '10 page civil contract website static have told 11K+GST have sent P & L he said call after Nov-15 ', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2898, '164', 61, '', '164', 'Darshan Gowda', 'Darshan Gowda ', '', '', 'darshangowda1866@gmail.com', '', '', '', '', '9538241866', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 1 static,1 dynamic & IOS app Meeting tomorrow 24.09.2019 at 11.30am', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2899, '164', 61, '', '164', 'Customized gift', 'Asha ', '', '', 'nomail@gmail.com', '', '', '', '', '9845448001', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Konanakunte ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need website for customized gift marketing Meeting fixed 24.09.2019 at 10.30am', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2900, '164', 61, '', '164', 'Imports Exports', 'Rahul ', '', '', 'nomail@gmail.com', '', '', '', '', '9845412375', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Chickpet ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for textile manufacturing & wholesale business Have shared office location he will visit office today at 7.30PM ', '', 'ACTIVE', 'LEAD', 0, '2019-09-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2901, '164', 61, '', '164', 'Imports Exports', 'Mallikriayan', '', '', 'malikrehan7861@gmail.com', '', '', '', '', '8884677054', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Static website with 3 e-mail ID', '', 'ACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2902, '164', 61, '', '164', 'NGO ', 'Shalini ', '', '', 'shalini9801@gmail.com', '', '', '', '', '9739793996', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need NGO website ,Have sent P & L Need to call after 2 days call 27.09.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2903, '164', 61, '', '164', 'irismedia', 'Venkatram ravi ', '', '', 'irismedia.ravi@gmail.com', '', '', '', '', '9741528421', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Online products Have sent P & L ,He said he will only call me back', '', 'ACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2904, '164', 61, '', '164', 'Kiran', 'Kiran ', '', '', 'nomail@gmail.com', '', '', '', '', '7406030061', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'MLM ,he will visit office tomorrow ,He said he will call me back 24.09.2019 Call 25.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2905, '164', 61, '', '164', 'SCP INFRA', 'Shreedhar ', '', '', 'nomail@gmail.com', '', '', '', '', '9886454338', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', '#32/2,Bilwaradahalli,Bannerghatta road', 'Bangalore', 'Karnataka', 83, 'India', 'Kishore', '8105814714', 'New', '20', 'Need website with logo & ERP for Ready mix concrete Meeting fixed tomorrow call 25.09.2019', '', 'INACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"25-09-2019\"]'), (2906, '164', 61, '', '164', 'Sneha', 'Sneha ', '', '', 'nomail@gmail.com', '', '', '', '', '9567729625', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Cunningham road ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L Call tomorrow evening 24.09.2019 call 25.09.2019 evening', '', 'ACTIVE', 'LEAD', 0, '2019-09-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2907, '24', 69, '', '24', 'Narayani Holidays and Conferences Pvt Ltd', 'Princy', '', '', 'princy@narayaniholidays.com', '', '8042151225', '', '', '9741492828', 'narayaniholidays.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '#24, \"Balaji Plaza\" 2nd floor, 2nd cross, Kirloskar HBCS 2nd stage, Basaveshvara nagar', 'Bangalore', 'Karnataka', 560079, 'India', 'Princy K D', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', 'ACONVERT', '[\"75000\"]', '[\"Tours package website\"]', '[\"25-09-2019\"]'), (2908, '164', 61, '', '164', 'Start up', 'Krishna ', '', '', 'krishnamkrishna@gmail.com', '', '', '', '', '9980402147', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Basaweshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He has sent requirement thro\' whatsapp need to give quotation', '', 'ACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2909, '164', 61, '', '164', 'Anand', 'Anand ', '', '', 'linenhub@gmail.com', '', '', '', '', '7338470707', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'G T Mall Back side', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will share the location ', '', 'ACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2910, '164', 61, '', '164', 'Arun Simha', 'Arun Simha ', '', '', 'marketing@parawires.net', '', '', '', '', '9880366001', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Sanjay nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call next week he is finalizing other isuues Call 02.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2911, '164', 61, '', '164', 'Ramesh', 'Ramesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9738879992', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website have told 11K+GST ,Meet by 11AM on 26.09.2019', '', 'ACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2912, '164', 61, '', '164', 'Marshal arts', 'Yashwanth ', '', '', 'yesh18390@gmail.com', '', '', '', '', '7259113288', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Yalahanka new town', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Marshal arts app he will send requirements thro\'mail', '', 'ACTIVE', 'LEAD', 0, '2019-09-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2913, '164', 61, '', '20', 'Shree Mahalakshmi Enterprises', 'Nuthan Kumar K S', '', 'Proprietor', 'smenuthan@gmail.com', '', '', '', '', '9901780150', '', 'Public Relations', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '#237/8,2nd floor , \" Sri Vinayaka Nilaya\",Kethiganahalli Road', 'Bidadi,Ramanagar', 'Karnataka', 562109, 'India', 'Nuthan Kumar K S', '9036167470', 'New', '20', '5 Page static website with Logo, Envelop,Visiting Card,Letter head', '', 'INACTIVE', 'LEAD', 0, '2019-09-27', '0000-00-00 00:00:00', 'ACONVERT', '[\"12000\"]', '[\"Static website\"]', '[\"27-09-2019\"]'), (2914, '164', 61, '', '164', 'ampsys', 'Neena', '', '', 'accounts@ampsys.in/mjamwal@ampsys.in', '', '', '', '', '9148860822', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5-6 pages of Dynamic website ,have told 12K+GST.', '', 'ACTIVE', 'LEAD', 0, '2019-09-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2915, '164', 61, '', '164', 'Suresh Reddy', 'Suresh Reddy', '', '', 'sumukha1973@gmail.com', '', '', '', '', '9620011313', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-09-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2916, '164', 61, '', '20', 'Yashas Narayan', 'Yashas Narayan', '', '', 'narayan.yashas@gmail.com', '', '', '', '', '9738404534', '', 'Public Relations', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', 'Yashas', '9738404534', 'New', '', 'Need website,Portpoliyo, Social media integration (Instagram),Proffesional E-mail Id(2).', '', 'INACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"01-10-2019\"]'), (2917, '164', 61, '', '164', 'Naddem', 'Nadeem ', '', '', 'nadeemhafeezoa@gmail.com', '', '', '', '', '7975598661', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for AC Service,installation, He will call me back', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2918, '164', 61, '', '164', 'Mukesh Agarwal', 'Mukesh Agarwal ', '', '', 'agarwal.bunty@gmail.com', '', '', '', '', '9483323333', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website have sent P & L He will meet tomorrow or day after tomo. ', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2919, '164', 61, '', '164', 'Misbha', 'Misbha ', '', '', 'misbha.vision@gmail.com', '', '', '', '', '8136842555', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have told 3-4 pages static website 7K & Dynamic 9K+gst He said he will get back', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2920, '164', 61, '', '164', 'Academy Publisher', 'Srinath ', '', '', 'shreenaath@academypublisher.com', '', '', '', '', '9606937336', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for book publishing have sent p& L He will meet subbu sir 3rd or 4th Call 03.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2921, '164', 61, '', '20', 'Rajashekar', 'Rajashekar', '', '', 'nomail@gmail.com', '', '', '', '', '9985566656', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Marathalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2922, '164', 61, '', '164', 'Rishi', 'Rishi ', '', '', 'nomail@gmail.com', '', '', '', '', '8077571332', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website with app & Ios told subbu sir to call', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2923, '164', 61, '', '164', 'Meera chandran', 'Meera chandran ', '', '', 'chandran62@rediffmail.com', '', '', '', '', '8197811649', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call last week of october', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2924, '164', 61, '', '164', 'Bhargav', 'Bhargav ', '', '', 'nomail@gmail.com', '', '', '', '', '7019073761', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He is going to meet subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2925, '164', 61, '', '164', 'Abhishek', 'Abhishek ', '', '', 'nomail@gmail.com', '', '', '', '', '9148467478', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kamakshipalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'he will meet nithin Monday have told 7K website & 8K adwords call 07.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2926, '164', 61, '', '164', 'Interiors', 'Aarav', '', '', 'nomail@gmail.com', '', '', '', '', '9611896440', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Interiors,meeting fixed tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-10-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2927, '164', 61, '', '164', 'Shashi', 'Shashi ', '', '', 'profitnifty@gmail.com', '', '', '', '', '7676570983', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website like research24.in, Static website have told 28K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2928, '164', 61, '', '164', 'Start up', 'Kiran ', '', '', 'kiran.nv23@gmail.com', '', '', '', '', '7619185224', '', 'Just Dial', 'Contacted', '0000-00-00', 'ROADS', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Taxi application,need Android IOS ,He is waiting for mail from subbu sir 04.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2929, '164', 61, '', '164', 'Nataraj', 'Nataraj ', '', '', 'natasva22@rediffmail.com', '', '', '', '', '9741122592', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Yashwanth pura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 page website for oil business Have told 9K+GST,He will call me back in 2-3 days call 09.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2930, '164', 61, '', '164', 'Mallikarjun', 'Mallikarjuna ', '', '', 'nomail@gmail.com', '', '', '', '', '8050355363', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Gadag ', 'Gadag', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website for Christian product,Have told 30K,50K,1.4L. He will visit our office by 11.10.2019 at 3PM Call 10.10.2019 to confirm ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2931, '164', 61, '', '164', 'Manju Prasad', 'Manju Prasad ', '', '', 'vajramukhi.investment@gmail.com', '', '', '', '', '9535775514', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website Have sent P & L,Waiting for the requirement ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2932, '164', 61, '', '164', 'Bharathi', 'Bharathi ', '', '', 'nomail@gmail.com', '', '', '', '', '9945742809', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Sofa service,chair service website Have told 9K+GST & 25K e-com ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2933, '164', 61, '', '164', 'Sher Singh', 'Sher singh ', '', '', 'sahil.alldsingh@gmail.com', '', '', '', '', '7408605304', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need MLM for Educational tutorials have sent nparrots URL waiting for requirement', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2934, '164', 61, '', '164', 'Harish', 'Harish ', '', '', 'harishsaro25@gmail.com', '', '', '', '', '6361506257', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'BTM layout', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'need website & application for Scrap to money business Have sent subbu sir mail id waiting for requirement ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2935, '164', 61, '', '164', 'Jeevan Dental', 'George ', '', '', 'georgejeevan@gmail.com', '', '', '', '', '9886892438', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for dental clinic with ref:dentaldiagnostic.com Need to call 05.10.2019 at 1.45PM ', '', 'ACTIVE', 'LEAD', 0, '2019-10-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2936, '164', 61, '', '164', 'Vivek Tours and Travels', 'Dhananjaya', '', '', 'nomail@gmail.com', '', '', '', '', '7353720005', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-10-09', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"09-10-2019\"]'), (2937, '164', 61, '', '164', 'Prashanth', 'Prashanth ', '', '', 'prashant_tolamur@yahoo.com', '', '', '', '', '9535352929', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Belgaum', 'Balgaum', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for stock market & link to facebook ,youtube & I have shared E-mail id to share requirements Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2938, '164', 61, '', '164', 'Start up', 'Asif ', '', '', 'nomail@gmail.com', '', '', '', '', '8892262742', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Kolar', 'Kolar', 'Karnataka', 0, 'India', '', '', '', '', 'Website like Olx have told 60K+gst,Call after 2 week 10.10.2019.Call 25.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2939, '164', 61, '', '164', 'Alpines academy', 'Rekha ', '', '', 'alpinesacademybaalya@gmail.com', '', '', '', '', '9481561847', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'kuvempunagar', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'have sent proposal of 10K+gst(Static website)', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (2940, '164', 61, '', '164', 'NK Technosohere ', 'Nanda ', '', '', 'nk@technosphereindia.in', '', '', '', '', '9886025368', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need e-commerce website & app ,meeting fixed ', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2941, '164', 61, '', '164', 'Abhishek Pandey', 'Abhishek Pandey ', '', '', 'nomail@gmail.com', '', '', '', '', '8800535825', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 page dynamic website have told 9K+gst,meeting fixed ', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2942, '164', 61, '', '164', 'Mohammed', 'Mohammed ', '', '', 'nomail@gmail.com', '', '', '', '', '9964891857', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'static website for society have told 10K+gst', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2943, '164', 61, '', '164', 'Suraj Roy', 'Suraj Roy ', '', '', 'nomail@gmail.com', '', '', '', '', '7349009907', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kolar ', 'Kolar', 'Karnataka', 0, 'India', '', '', '', '', 'he want web & app have shared location ,he will visit office ', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2944, '164', 61, '', '164', 'Rajesh', 'Rajesh ', '', '', 'nomail@gmail.com', '', '', '', '', '7892355589', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Maintainance for 2 website ,Have discussed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2945, '164', 61, '', '164', 'Start up', 'Prajwal Raj', '', '', 'nomail@gmail.com', '', '', '', '', '9148658010', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-Commerce website for Handicraft business.', '', 'ACTIVE', 'LEAD', 0, '2019-10-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2946, '24', 69, '', '24', 'Asia Pacific Advanced Fertility Center', 'Suresh', 'Reddy', '', 'katteras@gmail.com', '', '', '', '', '9566099149', 'http://www.asiapacificfertility.com', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '#1141, 2nd and 3rd Floor, BEML Layout,3rd Stage, RR Nagar, Jn Road', 'Bangalore', 'Karnataka', 560098, 'India', 'Suresh Kattera', '9566099149', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-10-11', '0000-00-00 00:00:00', '', '[\"32000\"]', '[\"Digital Marketing\"]', '[\"11-10-2019\"]'), (2947, '164', 61, '', '164', 'Deepak', 'Deepak ', '', '', 'pleasecontactdeepak@gmail.com', '', '', '', '', '8892434476', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website with seo ,logo,visiting card & Letter head,Have told 11K,15K & 5K. He will confirm next week 15.10.2019,Call 22.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2948, '164', 61, '', '164', 'Bhaskar', 'Bhaskar ', '', '', 'nomail@gmail.com', '', '', '', '', '9880024787', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Chamrajpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have shared Loction he will visit office 15.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2949, '164', 61, '', '164', 'Club Premier', 'Prasanna T Gowda ', '', '', 'gowda.prasanna26@gmail.com', '', '', '', '', '8123451111', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Meeting fixed today Have sent E-com Proposal of 67K+GST He will call in the evening today 15.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2950, '164', 61, '', '164', 'Veera Reddy', 'Veera Reddy ', '', '', 'bs.eerareddy@gmail.com', '', '', '', '', '9141720478', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed today Have sent E-com Proposal of 30K+GST Call Saturday (19.10.2019)', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2951, '164', 61, '', '164', 'Start Up', 'Arun Raj ', '', '', 'nomail@gmail.com', '', '', '', '', '8883314331', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Tamilnadu', 'Tamilnadu', 'Tamilnadu', 0, 'India', '', '', '', '', 'E-com website have sent P ,L & L he will visit office next week Call 21.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2952, '164', 61, '', '164', 'TOBIK LIFELINE NIG.LTD', 'Betrand Tochukwu Ikwuka ', '', '', 'nomail@gmail.com', '', '', '', '', '9591711278', '', 'Just Dial', 'Contacted', '0000-00-00', 'PHARMACEUTICALS', 0, '', '', '', 0, '', '', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli', 'Bangalore', 'Karnataka', 560077, 'India', 'Shirinerose', '8123908144', 'New', '20', 'Need website for pharmaceuticals Have told basic st 10K basic dy 12K & Premium st-16K & Pr Dy 18K+gst ', '', 'INACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2953, '164', 61, '', '164', 'Consultancy', 'K Subramanian ', '', '', 'sureshconsultant2@yahoo.co.in', '', '', '', '', '9845371567', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L He will visit office after Wednesday Call 16.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2954, '164', 61, '', '164', 'Bidding application', 'Kushal ', '', '', 'nomail@gmail.com', '', '', '', '', '9403840231', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Nagpur', 'Maharashtra', 'Maharashtra', 0, 'India', '', '', '', '', 'Bidding website for Agri products Have discussed in skyp but problem in network he will call back on 15.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2955, '164', 61, '', '164', 'Vijay Karthik', 'Vijay Karthik ', '', '', 'ambgvijay@gmail.com', '', '', '', '', '8073896076', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website single vendor have sent proposal 60K+GST & Multiple vendor for 120000+gst Call after 1 week call 22.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2956, '164', 61, '', '164', 'Start up', 'Vinod ', '', '', 'nomail@gmail.com', '', '', '', '', '8310677008', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Basaweshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call tomorrow mmorning by 10AM', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2957, '164', 61, '', '164', 'Start Up', 'Krishnaraj Urs ', '', '', 'krishnarajurs25@gmail.com', '', '', '', '', '8310337487', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website but after 1 week Call 21.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2958, '164', 61, 'PCONVERTED', '164', 'Shri Hari', 'Shri Hari ', '', '', 'srihari.sssh22@gmail.com', '', '', '', '', '9632533376', '', 'Just Dial', 'Contacted', '2019-10-16', '', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Interiors Meeting fixed on 15.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2959, '164', 61, '', '164', 'Megha Welfare Association', 'Sagar ', '', '', 'incsag@gmail.com', '', '', '', '', '9742936667', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', '', 0, '', '', 'Kathriguppe ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website ,Meeting fixed on 15.10.2019 ', '', 'INACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"25-10-2019\"]'), (2960, '164', 61, '', '164', 'LSH Tech Productions Premium Pvt. Ltd ', 'Nalini ', '', '', 'nalinimmohan@gmail.com', '', '', '', '', '7996005308', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website adwords logo Meeting fixed on 15.10.2019 ', '', 'INACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', 'ACONVERT', '[\"10170\"]', '[\"Static website\"]', '[\"17-10-2019\"]'); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (2961, '164', 61, '', '164', 'Security Agency', 'Sampath kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9742420303', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Security agency website Have sent P & L ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2962, '164', 61, '', '164', 'Start Up', 'Kadreesh ', '', '', 'nomail@gmail.com', '', '', '', '', '8050368433', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, '', '', '7406017976', '', '', '5-10 pages of dynamic website have told 15K & 12K fo st', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2963, '164', 61, '', '164', 'Ravi Kiran', 'Ravi Kiran ', '', '', 'nomail@gmail.com', '', '', '', '', '9900277425', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website for Kitchen appliences manufacturing with payment gateway in 5 languages Ajay sir have told him 30K+gst ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2964, '164', 61, '', '164', 'Job Poratal', 'Ganesh ', '', '', 'nomail@gmail.com', '', '', '', '', '7019660891', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Job portal web & Android application Ajay sir have told 2L+gst have shared location he will visit office ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2965, '164', 61, '', '164', 'Start Up', 'Asif Pasha ', '', '', 'nomail@gmail.com', '', '', '', '', '9036363671', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website with 30 Product have told him 30K+GST & sent office location', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2966, '164', 61, '', '164', 'Magzine writer', 'Mallikarjun ', '', '', 'yugapurushuduysr@gmail.co', '', '', '', '', '9035956660', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need wedsite for Magzine with unlimited data space Ajay sir have told 30-35K ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2967, '164', 61, '', '164', 'Pharmaceuticals', 'Deepak jain ', '', '', 'deepakjain_878@yahoo.co.in', '', '', '', '', '9844382878', '', 'Just Dial', 'Contacted', '0000-00-00', 'PHARMACEUTICALS', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for pharmaceuticals manufacturing Have sent P & L of Pharma also ', '', 'ACTIVE', 'LEAD', 0, '2019-10-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2968, '164', 61, '', '164', 'Start Up', 'Rajashekar ', '', '', 'nomail@gmail.com', '', '', '', '', '9066827033', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce with android application for fashionable items Ajay sir have told 1.5 L to 2 L ', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2969, '164', 61, '', '164', 'Start Up', 'Murthi ', '', '', 'murthi95@gmail.com', '', '', '', '', '9008106663', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website & App he will visit office on Friday.Call 17.10.2019 evening ', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2970, '164', 61, '', '164', 'Lalitha', 'Lalitha ', '', '', 'nomail@gmail.com', '', '', '', '', '9880050420', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have text my e-mail id She will send her requirement ', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2971, '164', 61, '', '164', 'School', 'Ananda ', '', '', 'nomail@gmail.com', '', '', '', '', '7259165579', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Alsoor', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for School have sent P & L of educational purpose He will inform after 1 week call 23.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2972, '164', 61, '', '164', 'Manufacturing Industry', 'Diney Rajesh ', '', '', 'lisinds@yahoo.com', '', '', '', '', '9343655224', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Peenya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L website for Manufacturing industry', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2973, '164', 61, '', '164', 'Pramod', 'Pramod ', '', '', 'nomail@gmail.com', '', '', '', '', '8073369515', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Mysore ', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 3 websites need to meet him tomorrow at 10AM', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2974, '164', 61, '', '164', 'Vishnuvardhan Reddy', 'Vishnuvardhan reddy ', '', '', 'nomail@gmail.com', '', '', '', '', '9916079643', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bannerghatta', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' Static website 8K+gst', '', 'ACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2975, '164', 61, '', '164', 'Paneetha Consulting Engineering', 'Ashok ', '', '', 'pgashok@gmail.com', '', '', '', '', '9535683862', '', 'Just Dial', 'Contacted', '2019-10-17', 'REAL ESTATE', 0, '', '', '', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Dynamic website for construction company have sent P & L of related', '', 'INACTIVE', 'LEAD', 0, '2019-10-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Dynamic website\"]', '[\"18-10-2019\"]'), (2976, '164', 61, '', '164', 'Hari Babu', 'Hari Babu ', '', '', 'nomail@gmail.com', '', '', '', '', '9108899748', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'murgeshpalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting Fixed at 12PM E-commerce web', '', 'ACTIVE', 'LEAD', 0, '2019-10-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2977, '164', 61, '', '164', 'Furniture Business', 'Manju ', '', '', 'nomail@gmail.com', '', '', '', '', '9740313924', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Marathahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website for furniture business have told 30K+GST He will confirm in this week only call 21.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2978, '164', 61, '', '164', 'Start Up', 'Mahesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9980792292', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call Tomorrow call 18.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2979, '164', 61, '', '164', 'Start up', 'Shashank', '', '', 'raoandraofacility@gmail.com', '', '', '', '', '8660771346', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Matrimonial application have sent Q:60K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-10-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2980, '164', 61, '', '164', 'Start Up', 'Uday ', '', '', 'nomail@gmail.com', '', '', '', '', '8050308512', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Majestic ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call Tuesday to confirm meeting time.', '', 'ACTIVE', 'LEAD', 0, '2019-10-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2981, '164', 61, '', '164', 'Start up', 'Pranay Kumar ', '', '', 'pranay@lazygeniuses.in', '', '', '', '', '6202375543', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L ', '', 'ACTIVE', 'LEAD', 0, '2019-10-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2982, '164', 61, '', '164', 'Start Up', 'Ashish ', '', '', 'ashishj533@gmail.com', '', '', '', '', '9738798351', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need basic website meeting on Tuesday ', '', 'ACTIVE', 'LEAD', 0, '2019-10-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2983, '164', 61, '', '164', 'Health clinic', 'Jyothi Prakash ', '', '', 'nomail@gmail.com', '', '', '', '', '9113626982', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', 'NO', 0, '', '', 'Mysore ', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Android app for health care subbu sir have told 2.5L .He will visit office 22.10.2019 evening ', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2984, '164', 61, '', '164', 'NGO website', 'Shalini ', '', '', 'shalini9801@gmail.com', '', '', '', '', '9739793996', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed 22.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2985, '164', 61, '', '164', 'Start up', 'Sri Pad ', '', '', 'nomail@gmail.com', '', '', '', '', '9148043202', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Real estate website like 99acre Have farwarded call to subbu sir ', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2986, '164', 61, '', '164', 'Start up', 'Prasad ', '', '', 'nomail@gmail.com', '', '', '', '', '8660118770', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Padmanabhnagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will visit office today.Because of rain he will visit office by Wednesday 23.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2987, '164', 61, '', '164', 'Start up', 'Dev ', '', '', 'nomail@gmail.com', '', '', '', '', '7337685123', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent my E-mail Id he will share his requirements', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2988, '164', 61, '', '164', 'Sportd wing', 'Nithananda ', '', '', 'nomail@gmail.com', '', '', '', '', '9035678000', '', 'Just Dial', 'Contacted', '0000-00-00', 'Sports', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Sportswing.in Need IOS app have sent details from subbu sir He will check it out n get back ', '', 'ACTIVE', 'LEAD', 0, '2019-10-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2989, '164', 61, '', '164', 'Sri Maruthi Enterprise', 'Kallappa', '', '', 'lunatcyashu8055@gmail.com', '', '', '', '', '8884868758', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Nayandahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website', '', 'INACTIVE', 'LEAD', 0, '2019-10-22', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2990, '164', 61, '', '164', 'THINQTEVHNO SYSTEMS PVT LTD', 'Rajendra Prasad ', '', '', 'rajendraprasadst@gmail.com', '', '', '', '', '9742583148', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-10-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2991, '164', 61, '', '164', 'Karthik Enterprises', 'Karthik Reddy ', '', '', 'reddykarthik458@gmail.com ', '', '', '', '', '7019199336', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banasawadi', 'Bangalore', 'Karnataka', 0, '', '', '8098802666', '', '', 'Meeting fixed today', '', 'INACTIVE', 'LEAD', 0, '2019-10-22', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (2992, '164', 61, '', '164', 'Start up', 'Rajiv ', '', '', 'a.rajiv1988@gmail.com', '', '', '', '', '8147011247', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 pages of dynamic website have told 9K+gst.he said he will call me back ', '', 'ACTIVE', 'LEAD', 0, '2019-10-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2993, '164', 61, '', '164', 'Bike service', 'Naveen ', '', '', 'nomail@gmail.com', '', '', '', '', '9108126726', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'web application for Bike service.Have sent P, L & L he visited office have told 1.4L for web app & 2.2L for android app ', '', 'ACTIVE', 'LEAD', 0, '2019-10-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2994, '164', 61, '', '164', 'N Power service', 'Kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9353794668', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website with 4 E -mail id Have told 9K+GST Have sent location he will visit office 24.10.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-10-23', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2995, '164', 61, '', '164', 'Ramesh', 'Ramesh ', '', '', 'nomail@gmail.com', '', '', '', '', '8310537325', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Laggere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for movie production profile & application.Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-10-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2996, '164', 61, '', '164', 'Manoj', 'Manoj ', '', '', 'manoj.yadav.m94@gmail.com', '', '', '', '', '8147381949', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Matthikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website .Meeting fixed ', '', 'ACTIVE', 'LEAD', 0, '2019-10-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2997, '164', 61, '', '164', 'Asutosh Mishra', 'Asutosh Mishra ', '', '', 'asutosh.mishra@bucephalusglobal.com', '', '', '', '', '9900165332', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages of dynamic website.Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-10-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2998, '164', 61, '', '164', 'Vinayak', 'Vinayak ', '', '', 'vinayak.bhat@vinvatech.com', '', '', '', '', '9620045390', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need development for static website already have domain & Hosting have told 6K +gst have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-10-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (2999, '164', 61, '', '164', 'Vasanth', 'Vasanth ', '', '', 'vasanth.fs@gmail.com', '', '', '', '', '9739020070', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Vidyaranyapuram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-com website for 2000 products he will visit office tomorrow 26.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3000, '164', 61, '', '164', 'Muneer', 'Muneer ', '', '', 'nomail@gmail.com', '', '', '', '', '9686622566', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Frazer Town ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L he is out of station once he reached on Wednesday he will call call 30.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3001, '164', 61, '', '164', 'Gyan Solutions', 'Siddharth ', '', '', 'shilpimohan@gyansolutions.in', '', '', '', '', '8884482222', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'New BEL Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent Mail with P & L.Call 26.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3002, '164', 61, '', '164', 'Club', 'Deepu M Gowda ', '', '', 'deepu_bangl@yahoo.com', '', '', '', '', '9620222221', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Application for club,Have told Nithin to meet today ', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3003, '164', 61, '', '164', 'Pooja', 'Pooja ', '', '', 'poojarimpooja@gmail.com', '', '', '', '', '8296467585', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Atthibele', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'She will call me back by 30.10.2019', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3004, '164', 61, '', '164', 'Zomato application', 'Sharukh ', '', '', 'nomail@hgmail.com', '', '', '', '', '6366060571', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'Shimoga', 'Shimoga', 'Karnataka', 0, 'India', '', '', '', '', 'Application like Zomato ,Have sent details he will visit office ', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3005, '164', 61, '', '164', 'Sudhakar', 'Sudhakar ', '', '', 'sudhakar.polu@gmail.com', '', '', '', '', '9632447034', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Yelahanka', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Asking for website have sent number to nithin he will meet today 6PM', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3006, '164', 61, '', '164', 'Matrimony', 'Rakesh ', '', '', 'nomail@gmail.com', '', '', '', '', '8660864659', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need matrimonial website Dyn have told 13K+GST .have sent details of nithin he will discuss with him ', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3007, '164', 61, '', '164', 'Prem', 'Prem ', '', '', 'prem2479@rediffmail.com', '', '', '', '', '9731764292', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Hebbal', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will call me back', '', 'ACTIVE', 'LEAD', 0, '2019-10-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3008, '164', 61, '', '164', 'Start up', 'Akhil Chawla', '', '', 'akhilchawla.sbi@gmail.com', '', '', '', '', '9300501865', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Madhya Pradesh', 'Madhya Pradesh', 'Madhya Pradesh', 0, 'India', '', '', '', '', 'B2B & B2C Solutions for Saloons(Web and Android application).', '', 'ACTIVE', 'LEAD', 0, '2019-10-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3011, '164', 61, '', '164', 'Nagaprathap', 'Nagaprathap Manu ', '', '', 'nomail@gmail.com', '', '', '', '', '9972144355', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Interiors have told 9K & 12K he will visit office by 31.10.2019 call at 10.30AM', '', 'ACTIVE', 'LEAD', 0, '2019-10-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3012, '164', 61, '', '164', 'Muni Krishna', 'Muni Krishna ', '', '', 'nomail@gmail.com', '', '', '', '', '7975373451', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, '', '', '7406017976', '', '', 'He will visit office by 04.11.2019 at 11 am', '', 'ACTIVE', 'LEAD', 0, '2019-10-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3013, '164', 61, '', '164', 'Srinivas', 'Srinivas ', '', '', 'nomail@gmail.com', '', '', '', '', '9052718087', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Andhra Pradesh', 'Andhra Pradesh', 'Andhra Pradesh', 0, 'India', '', '', '', '', 'Have sent P & L & my E-mail id he will share his requirement', '', 'ACTIVE', 'LEAD', 0, '2019-10-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3014, '164', 61, '', '164', 'Klicpic', 'Deepak ', '', '', 'deepak@klicpic.com', '', '', '', '', '8861855505', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Prestige Tower, 9th Floor, Residency Rd, Shanthala Nagar, Ashok Nagar ', ' Bengaluru', 'Karnataka', 560025, 'India', '', '', '', '', 'Need application ajay sir discussed with him Meeting fixed on 01.11.2019 at 3.30PM ', '', 'ACTIVE', 'LEAD', 0, '2019-10-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3015, '164', 61, '', '164', 'Naveen', 'Naveen ', '', '', 'naveenmaddy20@gmail.com', '', '', '', '', '9742322242', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website meeting tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-10-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3016, '164', 61, '', '164', 'Ganesh', 'Ganesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9008024060', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '#284/11,Roopa & Company,GV Palya,Hosur main road ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website if possible he will visit office', '', 'ACTIVE', 'LEAD', 0, '2019-10-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3017, '164', 61, '', '164', 'School', 'Shivkumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9731945687', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website for school.Meeting fixed today', '', 'ACTIVE', 'LEAD', 0, '2019-10-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3018, '164', 61, '', '164', 'Vinod', 'Vinod ', '', '', 'vinod.k3161@gmail.com', '', '', '', '', '8553972999', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website call 04.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3019, '164', 61, '', '164', 'Harish', 'Harish ', '', '', 'nomail@gmail.com', '', '', '', '', '9972555713', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need SEO for tours & travels website Have sent details of SEO & P & L', '', 'ACTIVE', 'LEAD', 0, '2019-11-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3020, '164', 61, '', '164', 'Umesh', 'Umesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9611354509', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Electric vehicle manufacturing he will visit office Monday 10.30 need to remind him ', '', 'ACTIVE', 'LEAD', 0, '2019-11-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3021, '164', 61, '', '164', 'Sathish', 'Sathish ', '', '', 'rxsatish@gmail.com', '', '', '', '', '9880603264', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Real estate he will visit office Monday 10.30 need to remind him ', '', 'ACTIVE', 'LEAD', 0, '2019-11-01', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3022, '164', 61, '', '164', 'Start up', 'Suprabath sharma ', '', '', 'nomail@gmail.com', '', '', '', '', '8904095903', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Chikkaballapura', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 2 websites school & Company ,have sent p & L &L he will visit office by next week ', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3023, '164', 61, '', '164', 'Nagareddy', 'Nagareddy ', '', '', 'shiva.srv@gmail.com', '', '', '', '', '9141611135', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Kalyan nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '2 website (water tank cleaning) meeting fixed tomo at 10AM ', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3024, '164', 61, '', '164', 'Tours Travels', 'Srinivas ', '', '', 'nomail@gmail.com', '', '', '', '', '9886430006', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Devaiah park', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website he will meet nithin this week end', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3025, '164', 61, '', '164', 'Nikhil', 'Nikhil ', '', '', 'bunde.nik@gmail.com', '', '', '', '', '7020537027', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Maharashtra', 'Maharashtra', 'Maharashtra', 0, 'India', '', '', '', '', 'Need E-com web he will call me back', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3026, '164', 61, '', '164', 'Srinidhi', 'Srinidhi dutta ', '', '', 'datta.jadeengineers@gmail.com', '', '', '', '', '9449068595', '', 'Just Dial', 'Contacted', '0000-00-00', 'ENGINEERING AND CAPITAL GOODS', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need to meet him tomo in jayanagar ', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3027, '164', 61, '', '164', 'Harsha', 'Harsha ', '', '', 'blharsha2020@gmail.com', '', '', '', '', '7338541516', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' Have sent quotation', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3028, '164', 61, '', '164', 'News paper', 'Venkataramana ', '', '', 'nomail@gmail.com', '', '', '', '', '8296241792', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'News paper he will visit office tomo ', '', 'ACTIVE', 'LEAD', 0, '2019-11-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3029, '164', 61, '', '164', 'Chimmi Garments', 'Poovaiah ', '', '', 'chimmi88@gmail.com', '', '', '', '', '9900707576', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com with payment gateway for garments told 30K+GST ,Have sent proposal ', '', 'ACTIVE', 'LEAD', 0, '2019-11-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3030, '164', 61, '', '164', 'start up', 'Arun ', '', '', 'nomail@gmail.com', '', '', '', '', '9964954486', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'online booking website for travells,have told 25K+gst he will call me back ', '', 'ACTIVE', 'LEAD', 0, '2019-11-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3031, '164', 61, '', '164', 'Subba rao', 'Subba rao ', '', '', 'nomail@gmail.com', '', '', '', '', '9741829521', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Uttarahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' have told 15K for 5-10 pages of dynamic website,He will discuss & call me back ', '', 'ACTIVE', 'LEAD', 0, '2019-11-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3032, '164', 61, '', '164', 'Start up', 'Ahmed', '', '', 'arehbarahmed@gmail.com', '', '', '', '', '9686777070', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Koramanagala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 20 pages of dynamic website,have told 23K+GST', '', 'ACTIVE', 'LEAD', 0, '2019-11-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3033, '164', 61, '', '164', 'Kalpesh Jain', 'Kalpesh Jain ', '', '', 'kj@hiraholovision.com', '', '', '', '', '9845750111', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Guddanahalli,mysore road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need web & Mobile application,Meeting fixed with subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-11-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3034, '164', 61, '', '164', 'NGO', 'Jameen Taj ', '', '', 'nomail@gmail.com', '', '', '', '', '7892409300', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' Need NGO Website,She will visit office by Monday 11.11.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-11-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3035, '164', 61, '', '164', 'Amaresh', 'Amaresh ', '', '', 'anymaski@gmail.com', '', '', '', '', '9845252200', '', 'Just Dial', 'Contacted', '0000-00-00', 'BANKING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Customized loan process mangement app,Ajay sir is discussing', '', 'ACTIVE', 'LEAD', 0, '2019-11-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3036, '164', 61, '', '164', 'Yugender', 'Yugender ', '', '', 'bujjibabu1982@gmail.com', '', '', '', '', '6361591155', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Ramamurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com website with 6 categorieswith payment gateway,Have sent quotation', '', 'ACTIVE', 'LEAD', 0, '2019-11-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3037, '164', 61, '', '164', 'Thinqtechno', 'Kiran', '', '', 'thinqtechno@gmail.com', '', '', '', '', '8197078792', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'HSR layout ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 1 website for Consulting & development and 1 application for training institute', '', 'ACTIVE', 'LEAD', 0, '2019-11-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3038, '164', 61, '', '164', 'Start up', 'Jaweed', '', '', 'nomail@gmail.com', '', '', '', '', '9008001700', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Brigade Road ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Web application & Mobile application for tiffin box online marketing', '', 'ACTIVE', 'LEAD', 0, '2019-11-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3039, '164', 61, '', '20', 'Essence Home Decor Pvt Ltd', 'Prabhakaran V', '', 'Managing Partner', 'prabhakaran@artisanhome.in', '', '', '', '', '9845010901', '', 'Cold Call', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'J-Fiber soft product', '', 'INACTIVE', 'LEAD', 0, '2019-11-14', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"ERP Solution\"]', '[\"14-11-2019\"]'), (3040, '164', 61, '', '164', 'Event Management', 'Godwin Stanley', '', '', 'godwinstanley73@gmail.com', '', '', '', '', '8861152991', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Ramamurthy nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website for Event management & have finalised it to 11K,he will call in the evening', '', 'ACTIVE', 'LEAD', 0, '2019-11-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3041, '164', 61, '', '164', 'Start up', 'Vinayak', '', '', 'nomail@gmail.com', '', '', '', '', '9880785786', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Arekere,Bannerghatta road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-11-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3046, '164', 61, '', '164', 'School', 'Umesh Rao ', '', '', 'umeshrao3000@gmail.com', '', '', '', '', '8310457215', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 4 pages of dynamic website with login registration have farwarded his number to subbu sir', '', 'ACTIVE', 'LEAD', 0, '2019-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3047, '164', 61, '', '164', 'Manju', 'Manju ', '', '', 'nomail@gmail.com', '', '', '', '', '9611108952', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com for 2 categories grocery & Travels.He will visit office by 23.11.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3048, '164', 61, '', '164', 'Praveen', 'Praveen ', '', '', 'nomail@gmail.com', '', '', '', '', '9742226460', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website have sent details ', '', 'ACTIVE', 'LEAD', 0, '2019-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3049, '164', 61, '', '164', 'Silk business', 'Syed ', '', '', 'isendyouproject@hotmail.com', '', '', '', '', '9900720700', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need 7 to 11 pages of dynamic website have told 15K+tax Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3050, '164', 61, '', '164', 'R K', 'R K ', '', '', 'nomail@gmail.com', '', '', '', '', '9141505555', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website only in Kannada like flip cart', '', 'ACTIVE', 'LEAD', 0, '2019-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3051, '164', 61, '', '164', 'Start up', 'Jennofer ', '', '', 'jennofer@gmail.com', '', '', '', '', '9513096848', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-com site & customised app(global ) Meeting fixed with Ajay sir & Subbu sir ', '', 'ACTIVE', 'LEAD', 0, '2019-11-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3052, '164', 61, '', '164', 'Darshini', 'Darshini ', '', '', 'nomail@gmail.com', '', '', '', '', '9620239758', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to Re-design of website ,Meeting fixed with Nithin Have sent proposal of 13K+tax ', '', 'ACTIVE', 'LEAD', 0, '2019-11-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3053, '164', 61, '', '164', 'Praveen', 'Praveen ', '', '', 'pk1829300@gmail.com', '', '', '', '', '9989484398', '', 'Just Dial', 'Contacted', '0000-00-00', 'INFRASTRUCTURE', 0, '', '', 'NO', 0, '', '', 'Sahakarnagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Need website for Interiors have sent P & L & L,he will confirm the time to meet on 21.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-19', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3054, '164', 61, '', '164', 'Start up', 'Arun', '', '', 'nomail@gmail.com', '', '', '', '', '9513888832', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Indiaranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Web & Android IOS app', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3055, '164', 61, '', '164', 'Channappa', 'Channappa ', '', '', 'nomail@gmail.com', '', '', '', '', '9964100130', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kunigal ', 'Kunigal', 'Karnataka', 0, 'india', '', '', '', '', '10 pages of dynamic website ,Have told 15K+tax he will call tomorrow Call 22.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3056, '164', 61, '', '164', 'Abdul', 'Abdul ', '', '', 'operations@isratravels.com', '', '', '', '', '9972585066', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need Maintanance for his existing website & software,Have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3057, '164', 61, '', '164', 'Mahesh', 'Mahesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9035552266', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website he will call tomo,Call 22.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3058, '164', 61, '', '164', 'Travels', 'Sunder ', '', '', 'nomail@gmail.com', '', '', '', '', '8747994444', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Kathriguppe ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for travels,Call Saturday', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3059, '164', 61, '', '164', 'Rohith', 'Rohith ', '', '', 'Rohitkumarksn@icloud.com', '', '', '', '', '9986413555', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Ramamurthynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L,He will call tomorrow', '', 'ACTIVE', 'LEAD', 0, '2019-11-21', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3060, '164', 61, '', '164', 'Interiors', 'James ', '', '', 'peter.james18@gmail.com', '', '', '', '', '7829518131', '', 'Just Dial', 'Contacted', '0000-00-00', 'INFRASTRUCTURE', 0, '', '', 'NO', 0, '', '', 'Ulsoor', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static Website for Interiors ,Have told 9K+tax,call 26.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3061, '164', 61, '', '164', 'Jagadish Hiremat', 'Jagadeesh Hiremath ', '', '', 'jagadishhiremat.1998@gmail.com', '', '', '', '', '9380314509', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com website like amazon & Flip cart call 26.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3062, '164', 61, '', '164', 'Manufacturer', 'Rakesh ', '', '', 'nomail@gmail.com', '', '', '', '', '9008006360', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Mysore Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Manufacturer of LED Meeting fixed today', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3063, '164', 61, '', '164', 'application', 'Girish ', '', '', 'girish.kanathur1@gmail.com', '', '', '', '', '9343829179', '', 'Just Dial', 'Contacted', '0000-00-00', 'BANKING', 0, '', '', 'NO', 0, '', '', 'Bhatavia chambers,shivananda circle', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application like Account Bazar Ajay sir,have discussed with him on a conference He will confirm the meeting time ', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3064, '164', 61, '', '164', 'Astrology', 'Balu ', '', '', 'nomail@gmail.com', '', '', '', '', '8861889281', '', 'Just Dial', 'Contacted', '0000-00-00', 'Astrology', 0, '', '', 'NO', 0, '', '', 'Egipura ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L of astrology Nithin will call & meet him ', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3065, '164', 61, '', '164', 'Chaitra Groups', 'Prashanth ', '', '', 'pp.prashanth@gmail.com', '', '', '', '', '9986600115', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'karnataka', 0, 'India', '', '', '', '', 'Chaitra groups Have sent proposal for 3 website 75K+tax & customized 1.4L+tax ', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3066, '164', 61, '', '164', 'Joel', 'Joel ', '', '', 'nomail@gmail.com', '', '', '', '', '9844135935', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Yelahanka', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Nparrots application,need to give demo tomorrow afternoon Call 26.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3067, '164', 61, '', '164', 'Kamalesh', 'Kamalesh ', '', '', 'nomail@gmail.com', '', '', '', '', '8881288831', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Chickpet ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com website for 200 categories,sarees,cosmetics & Electronics Have sent details watsapp ', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3068, '164', 61, '', '164', 'Girish', 'Girish ', '', '', 'girisha.am@accretefms.co.in', '', '', '', '', '9945211145', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'have sent P & L mail ', '', 'ACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3069, '164', 61, '', '164', 'Vikas milk diary', 'Nagaraj', '', '', 'nomail@gmail.com', '', '', '', '', '9845073830', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Nanjangud', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need application for milk diery ,have sent details watsapp ', '', 'INACTIVE', 'LEAD', 0, '2019-11-25', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3071, '164', 61, '', '164', 'Start Up', 'Raghavan', '', '', 'nomail@gmail.com', '', '', '', '', '9384560570', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kammanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website with logo,have told 15K+Tax', '', 'ACTIVE', 'LEAD', 0, '2019-11-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3072, '164', 61, '', '164', 'INFO CARE INDIA GLOBAL SOLUTIONS', 'Venkatesh', '', '', 'infocareindia077@gmail.com', '', '', '', '', '9620850935', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need changes in his old website siri global solutions as Info care india global solutions and the address,contact details, have finalised for 5K,and he has given 2K as advance.', '', 'INACTIVE', 'LEAD', 0, '2019-11-26', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3073, '164', 61, '', '164', 'Ararat Group', 'Sathish', '', '', 'sathishhr1950@gmail.com', '', '', '', '', '7619574531', '', 'Just Dial', 'Contacted', '0000-00-00', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '', '', 'NO', 0, '', '', 'Madanayakanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-11-26', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3074, '164', 61, '', '164', 'Media agency', 'Vijay Gowda', '', '', 'admin@rideculture.in', '', '', '', '', '8861241941', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Sunkadakatte', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-11-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3075, '164', 61, '', '164', 'Yaman', 'Yaman ', '', '', 'yamannimae@gmail.com', '', '', '', '', '8951509240', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need dynamic website for dog day care Have told 10K+tax,he will confirm ', '', 'ACTIVE', 'LEAD', 0, '2019-11-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3076, '164', 61, '', '164', 'Northern Suites', 'Karthik ', '', '', 'karthick@northern-suites.com', '', '', '', '', '9886035484', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'two website hotel & Real estate & SEO have sent quotation of 12,12 & 15K ', '', 'ACTIVE', 'LEAD', 0, '2019-11-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3077, '164', 61, '', '164', 'Vijay Kumar', 'Vijay Kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9901655511', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Channapatna', 'Channapatna', 'Karnataka', 0, 'India', '', '', '', '', 'need website with payment gateway ,ssl for level plan He will visit mysore office by Sunday 01.12.2019 Call him to remind on 30.11.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-11-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3078, '164', 61, '', '164', 'Mohan', 'Mohan ', '', '', 'nomail@gmail.com', '', '', '', '', '8197452085', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need website for food industry have sent P ,L & L he will call us back ', '', 'ACTIVE', 'LEAD', 0, '2019-11-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3079, '164', 61, '', '164', 'Start up', 'Sathish Kumar', '', '', 'hagiosenterprises@gmail.com', '', '', '', '', '7892033478', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'HRBR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce website for Shoes & Clothes whole sale business.have sent quotation of 25K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-11-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (3080, '164', 61, '', '164', 'Start up', 'Franklin Daniel ', '', '', 'franklin_d17@yahoo.co.in', '', '', '', '', '9741129270', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'he need website,have discussed with him,need to call 02.12.2019 to confirm the meeting time ', '', 'ACTIVE', 'LEAD', 0, '2019-11-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3081, '164', 61, '', '164', 'Bharath', 'Bharath ', '', '', 'nomail@gmail.com', '', '', '', '', '9945794326', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'busy but need website call tomorrow,call 29.11.2019', '', 'ACTIVE', 'LEAD', 0, '2019-11-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3082, '164', 61, '', '164', 'Start up', 'Savitha ', '', '', 'savithagsrocks@gmail.com', '', '', '', '', '7411000985', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Service based website she will send the reference link ', '', 'ACTIVE', 'LEAD', 0, '2019-11-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3083, '164', 61, '', '164', 'Start up', 'Abhishek ', '', '', 'nomail@gmail.com', '', '', '', '', '7204565108', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Jalahalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-com web have shared P & L & my E-mail Id,he will share the requirement', '', 'ACTIVE', 'LEAD', 0, '2019-11-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3084, '164', 61, '', '164', 'Joseph', 'Joseph Edwin Prashanth ', '', '', 'edwin@foxprotechnologies.com', '', '', '', '', '9916937947', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Cambridge Layout,Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', ' He explaied his project to ajay sir in a conference ,have told 3 Lakh', '', 'ACTIVE', 'LEAD', 0, '2019-11-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3085, '164', 61, '', '164', 'Start up', 'Umashankar', '', '', 'sharma72@gmail.com', '', '', '', '', '9844819816', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'Kumarswamy layout', 'Bangalore', 'Karnataka', 0, 'India', 'Umashankar', '9980199811', '', '', 'Need 8 pages of Dynamic website in wordpress.', '', 'ACTIVE', 'LEAD', 0, '2019-12-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3086, '164', 61, '', '164', 'Chandrashekar', 'Chandrashekar', '', '', 'chandrashekarkv@rediffmail.com', '', '', '', '', '9900162525', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Patrahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2019-12-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3087, '164', 61, '', '164', 'Interiors', 'Shivani', '', '', 'shivanivpatil99@gmail.com', '', '', '', '', '9686910830', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Basaveshwara nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need dynamic website for Interiors & Architecture,Have sent quotation:11K', '', 'ACTIVE', 'LEAD', 0, '2019-12-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3088, '164', 61, '', '164', 'Srinivas', 'Srinivas', '', '', 'nomai@gmail.com', '', '', '', '', '8884838360', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Saraswathipuram', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website & Adwords ,he will visit office today', '', 'ACTIVE', 'LEAD', 0, '2019-12-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3089, '164', 61, '', '20', 'Start up', 'Chethan jain', '', '', 'nomail@gmail.com', '', '', '', '', '9164115533', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website including Domain,Hosting,Server,Payment gateway have told 30K+Tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3090, '164', 61, '', '164', 'Interiors', 'Kamalesh', '', '', 'nomail@gmail.com', '', '', '', '', '9980768609', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Hennur Cross', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5-6 pages of dynamic website with only hosting,have told 11K+tax,have sent quotation', '', 'ACTIVE', 'LEAD', 0, '2019-12-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3091, '164', 61, '', '164', 'HRB Interiors', 'Nadiya', '', '', 'support@hrbinteriors.com', '', '', '', '', '8105940007', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 10 pages of dynamic website have sent quotation 18K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3092, '164', 61, '', '164', 'Interiors', 'Shekar', '', '', 'nomail@gmail.com', '', '', '', '', '9008855961', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'K R Puram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need static website & google adwords,have sent quotation of 15K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3093, '164', 61, '', '164', 'Rakesh', 'Rakesh ', '', '', 'rakeshnj333@gmail.com', '', '', '', '', '8105097143', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Indiranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'home appliences SEO & Chat pot ,He will visit office by Friday evening ', '', 'ACTIVE', 'LEAD', 0, '2019-12-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3094, '164', 61, '', '164', 'Start up', 'Narine Balchanda ', '', '', 'nbalchandani@yahoo.com', '', '', '', '', '9844172104', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 pages dynamic website need to send quotation ,She will call 05.12.19/06.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3095, '164', 61, '', '164', 'Prasad', 'Prasad ', '', '', 'nomail@gmail.com', '', '', '', '', '6363850414', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Pavagada', '', '', 0, '', '', '', '', '', 'website with review page have told 25K', '', 'ACTIVE', 'LEAD', 0, '2019-12-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3096, '164', 61, '', '164', 'Srinivas', 'Srinivas', '', '', 'nomail@gmail.com', '', '', '', '', '8197636317', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need basic static website for construction field for 6K', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3097, '164', 61, '', '20', 'Geriatrics clinic and services', 'Geriatrics clinic and services', '', '', 'sivakumar.nimhans@gmail.com', '', '', '', '', '9663808626', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', 'Nimhans Hospital', 'Bamgalore', 'Karnataka', 0, 'India', 'Sojansivakumar', '', '', '', 'Website - 25K+tax, Sojan sir -sojan47@gmail.com', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3098, '164', 61, '', '164', 'Praveenkumar', 'Praveen Kumar ', '', '', 'nomail@gmail.com', '', '', '', '', '9591227022', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Rajajinagar 1st block ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website Meeting with Nithin on 06.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3099, '164', 61, '', '164', 'Kumar', 'Kumar ', '', '', 'kumar_aneshin@yahoo.com', '', '', '', '', '9886731697', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website for education institute with SEO friendly', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3100, '164', 61, '', '164', 'Shashibhshan', 'Shashibhushan ', '', '', 'shashibv17@gmail.com', '', '', '', '', '9739381754', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Jigani', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Manufacturer of transformer Need 18pages of wordpress website,SEO friendly,looks good with contact form,but not an e-com ', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3101, '164', 61, '', '164', 'Organic', 'Shivu ', '', '', 'shivusachi2@gmail.com', '', '', '', '', '9743630879', '', 'Just Dial', 'Contacted', '0000-00-00', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '', '', 'NO', 0, '', '', 'Basaveshwaranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'dynamic website for prganic crop plot for rent ,domain,hosting,social media links integration Call Monday 09.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3102, '164', 61, '', '164', 'Nagaraj', 'Nagaraj Dorairaj ', '', '', 'nomail@gmail.com', '', '', '', '', '9686934111', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Mathikere ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'static website with 8 e-mail id for sakshi enterprises have told 8K+5K he said he will call me back ', '', 'ACTIVE', 'LEAD', 0, '2019-12-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3103, '164', 61, '', '164', 'Prasad', 'Prasad ', '', '', 'nomail@gmail.com', '', '', '', '', '9886137937', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Frazer town ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need application like handybook.in have told 2L+tax & have sent links ', '', 'ACTIVE', 'LEAD', 0, '2019-12-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3104, '164', 61, '', '164', 'logistics', 'Abdulla R K ', '', '', 'rkabdullah4@gmail.com', '', '', '', '', '9845082267', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need website for logistics like gati.com have told 35K+tax have sent link ', '', 'ACTIVE', 'LEAD', 0, '2019-12-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3105, '164', 61, 'PCONVERTED', '164', 'Healthcare', 'Hemanth Naik', '', '', 'bhairaweshwarapoliclinic@gmail.com', '', '', '', '', '9902232573', '', 'Website Research', 'Contacted', '2019-12-11', 'HEALTHCARE', 0, '', '', 'NO', 0, '', '', 'Chikkamagaluru', 'Chikkamagaluru', 'Karnataka', 0, '', '', '', '', '', 'Healthcare cusomized website', '', 'INACTIVE', 'LEAD', 0, '2019-12-10', '0000-00-00 00:00:00', 'PCONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3106, '164', 61, '', '164', 'FISIX WORLD', 'Naveen', '', '', 'naveen.gowda04@gmail.com', '', '', '', '', '9986565789', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', '#125,126,1st floor Abalashram Building,Basavanagudi', 'Bangalore', 'Karnataka', 560004, 'India', 'Naveen', '9886413232', '', '', 'E-commerce website for Mobile repair shop,need to send the quotation mrplife3232@gmail.com', '', 'ACTIVE', 'LEAD', 0, '2019-12-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3107, '164', 61, '', '164', 'Vijendra Gowda', 'Vijendra gowda ', '', '', 'nomail@gmail.com', '', '', '', '', '9742333699', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bommanahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Bike & Car service Have sent P & L ', '', 'ACTIVE', 'LEAD', 0, '2019-12-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3108, '164', 61, '', '164', 'Madhusudhan', 'Madhusudhan ', '', '', 'nomail@gmail.com', '', '', '', '', '7829904653', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Jayamahal road ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-commerce website for Garments call 16.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3109, '164', 61, '', '164', 'Ruchi', 'Ruchi ', '', '', 'nomail@gmail.com', '', '', '', '', '9108291592', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-12-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3110, '164', 61, '', '164', 'Salim', 'Salim', '', '', 'salimshazada24@gmail.com', '', '', '', '', '8217483692', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Mathikere', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Education & training,need to send quotation & Gtrack link', '', 'ACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3111, '164', 61, '', '164', 'Consultancy', 'Nithin ', '', '', 'nomail@gmail.com', '', '', '', '', '9620468631', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Vijayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for loans & finance consultancy Have sent P & L & meeting fixed 13.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3112, '164', 61, '', '164', 'SIEMxperts', 'Sulabh ', '', '', 'sulabhmishra@gmail.com', '', '', '', '', '8217269633', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'HSR', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'SIEMxperts need website meeting fixed', '', 'ACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3113, '164', 61, '', '164', 'Start up', 'Shoiab ', '', '', 'nomail@gmail.com', '', '', '', '', '9663699655', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'HSR ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Construction water meeting fixed', '', 'ACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3114, '164', 61, '', '164', 'Nataraj Naik', 'Natraj naik ', '', '', 'nomail@gmail.com', '', '', '', '', '9880236383', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Hebbal ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Automation integration ,10-15 pages website ,Meeting fixed tomorrow ', '', 'ACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3115, '20', 1, '', '20', 'vsp entirtinment private ltd', 'Rakesh', '', '', 'rakeshadagur@gmail.com', '', '', '', '', '9880977789', '', 'Employee Reference', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-12-12', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3116, '164', 61, '', '164', 'Matrimony', 'Mahesh ', '', '', 'maheshrh2233@gmail.com', '', '', '', '', '8971533927', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Matrimonial website ,have sent company profile', '', 'ACTIVE', 'LEAD', 0, '2019-12-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3117, '164', 61, '', '164', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', 'Prakash', '', '', 'prakash.reddy@eldaas.com', '', '8042009090', '', '', '9845759501', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar ', 'Bangaluru', 'Karnataka', 560043, 'India', 'PrakashReddy', '9845759501', '', '', 'Need to re-design of Eldaas website with Word press', '', 'INACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Dynamic website\"]', '[\"\"]'), (3118, '164', 61, '', '164', 'Dayakar Poly clinic', 'Hemanth Naik', '', '', 'bhairaweshwarapoliclinic@gmail.com', '', '', '', '', '9902232573', '', 'Website Research', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', 'NO', 0, '', '', 'Chikkamagaluru', 'Chikkamagaluru', 'Karnataka', 0, 'India', '', '', '', '', 'Healthcare website', '', 'INACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3119, '164', 61, '', '164', 'VLS VEDIKE', 'Pradeep', '', '', 'vlsvedike@gmail.com', '', '', '', '', '9663419600', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Opposite to ESI hospital,Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need matrimonial web application & Android app', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3120, '164', 61, '', '164', 'Start up', 'Jackson', '', '', 'alontras.technoligies@gmail.com', '', '', '', '', '7760339904', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', 'Neelasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 pages of dynamic website with 5 e-mail id,domain,hosting,have told - 15K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3121, '164', 61, '', '164', 'Start up', 'Ankith', '', '', 'ankitdivekar1@gmail.com', '', '', '', '', '9900563459', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need 10-12 pages of Healthcare website,have told 18K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3123, '164', 61, '', '164', 'Start up', 'Syed ', '', '', 'nomail@gmail.com', '', '', '', '', '9591791927', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-com website & website for little wood school have told 25K for E- com & 9K for website ', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3124, '164', 61, '', '164', 'Varun Kumar', 'Varun Kumar ', '', '', 'varun.brunda@gmail.com', '', '', '', '', '9964184389', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need app for milk distribution agency have told 45K+tax ', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3125, '164', 61, '', '164', 'start up', 'B V Agarwal ', '', '', 'agarwal.victor@gmail.com', '', '', '', '', '8939888584', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for Education & training center Have sent P ,L & Q:20K+tax ', '', 'ACTIVE', 'LEAD', 0, '2019-12-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3126, '164', 61, '', '164', 'jayblues', 'chaya', '', '', 'rekha@jayblues.org', '', '', '', '', '8884563754', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-12-17', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3127, '164', 61, '', '164', 'Fabrication', 'Charan Raj ', '', '', 'charanraj.n45@gmail.com', '', '', '', '', '9113823660', '', 'Just Dial', 'Contacted', '0000-00-00', 'METALS AND MINING', 0, '', '', 'NO', 0, '', '', 'Andralli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages of static website for frabication Call 18.12.2019 afternoon ', '', 'ACTIVE', 'LEAD', 0, '2019-12-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3128, '164', 61, '', '164', 'shashi', 'Shashi ', '', '', 'sasikumar.sla@gmail.com', '', '', '', '', '9902069677', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website with mobile app', '', 'ACTIVE', 'LEAD', 0, '2019-12-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3129, '164', 61, '', '164', 'Start up', 'Vishwanath ', '', '', 'nomail@gmail.com', '', '', '', '', '6361810839', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', 'NO', 0, '', '', 'Sanjaynagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Consultancy Have sent details ', '', 'ACTIVE', 'LEAD', 0, '2019-12-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3130, '164', 61, '', '164', 'Vaastu Mall', 'Vijay ', '', '', 'nomail@gmail.com', '', '', '', '', '7020181085', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Nasik', 'Nasik', 'Maharashtra', 0, 'India', '', '', '', '', 'Need website,have sent P & L', '', 'ACTIVE', 'LEAD', 0, '2019-12-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3131, '164', 61, '', '164', 'Swamy', 'G Narayana swamy ', '', '', 'nomail@gmail.com', '', '', '', '', '9845757332', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'BTM Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need static website with domain,hosting,have told 9K he will meet Nithin 20.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3132, '164', 61, '', '164', 'Veeraiah', 'Veeraiah ', '', '', '', '', '', '7483047788', '', '9113047293', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', '#1262/B,19th \'B\' Main Road', 'Bangalore', 'Karnataka', 560050, 'India', 'Pandu', '9663625073', '', '', 'Static website converted for 8K', '', 'INACTIVE', 'LEAD', 0, '2019-12-18', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3133, '164', 61, '', '164', 'Sharath', 'Sharath ', '', '', 'abvtsharat@gmail.com', '', '', '', '', '9449904222', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', ' Old airport road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website have told 10K,he will call back', '', 'ACTIVE', 'LEAD', 0, '2019-12-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3134, '164', 61, '', '164', 'Harish', 'Harish ', '', '', '', '', '', '', '', '8553336722', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Kengeri ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will call back after 1 hour ', '', 'ACTIVE', 'LEAD', 0, '2019-12-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3135, '164', 61, '', '164', 'Event Management', 'Meghana ', '', '', '', '', '', '', '', '9611016797', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Event management website have told 8K+tax', '', 'ACTIVE', 'LEAD', 0, '2019-12-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3136, '164', 61, '', '164', 'Houddesh', 'Houddesh ', '', '', '', '', '', '', '', '8173979822', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website ,ajay sir have told 20K,meeting fixed with nithin 20.12.2019', '', 'ACTIVE', 'LEAD', 0, '2019-12-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3137, '164', 61, '', '164', 'Consultancy', 'Rohith ', '', '', '', '', '', '', '', '9663375926', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Basavanagudi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Consultancy website with webmail have told 8K+1800 +tax,he said he will call back In the evening 20.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3138, '164', 61, '', '164', 'PEOPLESOFT CONSULTANCY SERVICES', 'Hemanth Kumar P', '', 'CEO', 'helpdesk_pcs@yahoo.com', '', '', '9963930393', '', '9700100660', 'www.mysoftskills.in', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli', 'Bangalore', 'Karnataka', 560068, 'India', 'Hemanth Kumar', '', '', '', 'Static website with 2 enquiry form=9K +tax', '', 'INACTIVE', 'LEAD', 0, '2019-12-24', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (3139, '164', 61, '', '164', 'Ashok', 'Ashok ', '', '', '', '', '', '', '', '9902362036', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Vijayanagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Agricultural training institute,mushrum growth,Have told him 550/login /month & recorded 200/month,If possible he will meet on Friday.(28.12.2019) ', '', 'ACTIVE', 'LEAD', 0, '2019-12-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3140, '164', 61, '', '164', 'Gpower global', 'Keerthana ', '', '', '', '', '', '', '', '7411460868', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Sahakarnagar', 'Bangalore', 'Karnataka', 0, 'India', ' Uttam', '', '', '', 'Website for gas agency,Meeting fixed tomorrow 25.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3141, '164', 61, '', '164', 'Start up', 'Shakthi ', '', '', '', '', '', '', '', '9148115332', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'K R Puram ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Service based website,have told 8K website ,8K adwords,Meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2019-12-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3142, '164', 61, '', '164', 'Nikhil', 'Nikhil ', '', '', '', '', '', '', '', '9606334141', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website like oyo,have sent link of uk9', '', 'ACTIVE', 'LEAD', 0, '2019-12-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3143, '164', 61, '', '164', 'Service', 'Mohammed sheik ', '', '', '', '', '', '', '', '8050353736', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Service based website have sent his number to nithin,he will meet him', '', 'ACTIVE', 'LEAD', 0, '2019-12-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3144, '164', 61, '', '164', 'NGO', 'Aakash ', '', '', '', '', '', '', '', '9206889100', '', 'Just Dial', 'Contacted', '0000-00-00', 'NGO', 0, '', '', 'NO', 0, '', '', 'Basaveshwaranagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need NGO website with payment gateway integration,Have told 15K,he will call 26.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-25', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3145, '164', 61, '', '20', 'Hokkaido', 'Vijay ', '', '', 'hnvijayasimha@gmail.com', '', '', '', '', '9342552697', '', 'Website Research', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', 'Banashankari ', 'Bangalore', 'Karnartaka', 0, 'India', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website with 2 dynamic page\"]', '[\"\"]'), (3146, '164', 61, '', '164', 'Bhabananda Mishra', 'Bhabananda Mishra ', '', '', 'bmisra@gmail.com', '', '', '', '', '9343769771', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need app have shared company profile', '', 'ACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3147, '164', 61, '', '164', 'Venki', 'Venki ', '', '', '', '', '', '', '', '7904663535', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Hosur road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He will share his requirements thro whatsapp', '', 'ACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3148, '164', 61, '', '164', 'Hi Tech Services', 'Kumar ', '', '', '', '', '', '', '', '7829262205', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Vijayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Call Monday(30.12.2019) have told 8K+8K website & adwords', '', 'ACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3149, '164', 61, '', '164', 'Vinayak', 'Vinayak ', '', '', '', '', '', '', '', '9449410394', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent P & L He will call next week call 02.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3150, '164', 61, '', '164', 'Gas Agency', 'Kumar ', '', '', '', '', '', '', '', '9449653687', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website for gas agency with payment gateway ', '', 'ACTIVE', 'LEAD', 0, '2019-12-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3151, '164', 61, '', '164', 'Bhargav', 'Bharghav ', '', '', '', '', '', '', '', '9108215999', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Uttarahalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com website spa,saloon,customer login.Meeting will be Tuesday 31.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3152, '164', 61, '', '164', 'Harsha', 'Harsha ', '', '', '', '', '', '', '', '8147647635', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Start up construction company dyn website have told 10K+tax He will visit office Thursday (02.01.2020) ', '', 'ACTIVE', 'LEAD', 0, '2019-12-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3153, '164', 61, '', '164', 'Sharan', 'Sharan ', '', '', '', '', '', '', '', '7676437388', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', 'Peenya ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Consultancy website with registration form with payment gateway Meeting fixed 30.12.2019 Have told 8K for website & 1.5 L for webapp ', '', 'ACTIVE', 'LEAD', 0, '2019-12-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3154, '164', 61, '', '164', 'Start up', 'Thiru Murugan ', '', '', '', '', '', '', '', '7411503404', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Rajajinagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for eduation purpose Meeting fixed 31.12.2019 ', '', 'ACTIVE', 'LEAD', 0, '2019-12-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3155, '164', 61, '', '164', 'Yash', 'Yash ', '', '', 'biz@pragathicomputers.com', '', '', '', '', '9886896061', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'S P Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need to send package details', '', 'ACTIVE', 'LEAD', 0, '2019-12-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3156, '164', 61, '', '164', 'Start up', 'Santhosh ', '', '', '', '', '', '', '', '9886517080', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Marathalli', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'E-com multivendor,have told 4L', '', 'ACTIVE', 'LEAD', 0, '2019-12-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3157, '164', 61, '', '164', 'Start up', 'Principal', '', '', '', '', '', '', '', '9620823211', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', '', 0, '', '', 'SMITI ,Kanakapura', 'Bangalore', 'karnataka', 0, 'India', 'Swamy', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-01-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3158, '164', 61, '', '164', 'Electronic shop', 'Hemanth Kumar ', '', '', '', '', '', '', '', '8618584939', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', 'NO', 0, '', '', 'Vijaynagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Share market website.have shared our office location,he will visit ', '', 'ACTIVE', 'LEAD', 0, '2020-01-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3159, '164', 61, '', '164', 'BPO', 'Shilpa', '', '', '', '', '', '', '', '9611017187', '', 'Just Dial', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website for IT company,have told 11K+tax for 4-5 pages website', '', 'ACTIVE', 'LEAD', 0, '2020-01-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3160, '164', 61, '', '20', 'Textile company', 'Thandav Murthy', '', '', 'thandav.murthy2@gmail.com', '', '', '', '', '6366024850', '', 'Website Research', 'Contacted', '0000-00-00', 'TEXTILES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Textile static website ', '', 'ACTIVE', 'LEAD', 0, '2020-01-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3161, '164', 61, '', '164', 'Ananth', 'Ananth ', '', '', '', '', '', '', '', '9483868392', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have sent details ,meeting on Sunday 05.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3162, '164', 61, '', '164', 'Shilpa', 'Shilpa ', '', '', '', '', '', '', '', '9686999550', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Malleshwaram', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Modular faal ceiling website meeting on Wednesday 08.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3163, '164', 61, '', '164', 'Community website', 'Devraj ', '', '', 'devarajrb@gmail.com', '', '', '', '', '9900687163', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'community website,Meeting fixed with nithin on 04.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3164, '20', 1, 'PCONVERTED', '21', 'Matrimoney Consultancy', 'Devaraj B', '', '', 'devarajrb@gmail.com', '', '', '', '', '9900687163', '', 'Just Dial', 'Contacted', '2020-01-04', 'OTHERS', 0, '', 'Active', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2020-01-04', '0000-00-00 00:00:00', 'PCONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3165, '164', 61, '', '164', 'Posh Silver Jewellery', 'Akhil Bhandari', '', '', 'poshsilverjewellery@gmail.com', '', '', '', '', '9901844222', '', 'Just Dial', 'Contacted', '0000-00-00', 'GEMS AND JEWELLERY', 0, '', '', '', 0, '', '', '#139,3rd main road,B/W 8th & 9th cross,Margosa Road,Malleshwaram', 'Bangalore', 'Karnataka', 560003, 'India', '', '', '', '', 'E-commerce website like bcositssilver.com , Unniyarcha.com have told 27K+Tax', '', 'ACTIVE', 'LEAD', 0, '2020-01-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"E-commerce website\"]', '[\"\"]'), (3166, '164', 61, '', '20', 'Nishtha Asthana', 'Nishtha Aathana', '', '', 'nishtha.a@gmail.com', '', '', '', '', '9342552697', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'BANKING', 0, '', '', '', 0, '', '', 'Singapore', 'Singapore', 'Singapore', 0, 'Singapore', '', '', '', '', ' Client Contact number : +659068441', '', 'ACTIVE', 'LEAD', 0, '2020-01-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3167, '164', 61, '', '164', 'Eshan', 'Eshan ', '', '', '', '', '', '', '', '9513401364', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Yelachanahalli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,meeting fixed 07.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3168, '164', 61, '', '164', 'C R FABRICATOR', 'Prakash L ', '', '', 'saravanan_crelectricals@gmail.com', '', '', '9743435431', '', '9606120129', '', 'Just Dial', 'Contacted', '0000-00-00', 'METALS AND MINING', 0, '', '', '', 0, '', '', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra', 'Bangalore', 'Karnataka', 560068, 'India', 'Saravanan', '9743435431', 'New', '20', 'Website for fabrication.Have sent P & L he will confirm the meeting time tomo ', '', 'INACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (3169, '164', 61, '', '164', 'Prakash', 'Prakash ', '', '', '', '', '', '', '', '9916383576', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'BTM 2nd stage', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for photo studio,Meeting attended by nithin & have told 7K+tax he will confirm 08.01.2020 evening ', '', 'ACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3170, '164', 61, '', '164', 'Water Purifier', 'Anitha', '', '', '', '', '', '', '', '9448765970', '', 'Just Dial', 'Contacted', '0000-00-00', 'RENEWABLE ENERGY', 0, '', '', 'NO', 0, '', '', 'Atthibele', 'Bangalaore', 'Karnataka', 0, 'India', '', '', '', '', 'Need MLM for Water Purifier business.', '', 'ACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3171, '164', 61, '', '164', 'School', 'Riyaz', '', '', '', '', '', '', '', '9242751348', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bellary', 'Bellary', 'Karnataka', 0, 'India', '', '', '', '', 'Have shared company profile & links whatsapp.', '', 'ACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3172, '164', 61, '', '164', 'Start up', 'Mohan', '', '', '', '', '', '', '', '9986878100', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'HSR Layout', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Old client need website & SEO (or adwords)', '', 'ACTIVE', 'LEAD', 0, '2020-01-07', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3173, '164', 61, '', '164', 'Rethesh', 'Rethesh ', '', '', 'rethesh.kamalakar@eland.co.kr', '', '', '', '', '9738341749', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'M G Road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'retheshshet8@gmail.com Have sent details ,he will call me back when he need ', '', 'ACTIVE', 'LEAD', 0, '2020-01-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3174, '164', 61, '', '164', 'CRM application', 'Sushanth ', '', '', '', '', '', '', '', '8073297284', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'Sanjay Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'CRM application Meeting fixed with ajay sir ', '', 'ACTIVE', 'LEAD', 0, '2020-01-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3175, '164', 61, '', '164', 'Sai Glazing Systems', 'Jagadeesh ', '', '', '', '', '', '', '', '9738627570', '', 'Just Dial', 'Contacted', '0000-00-00', 'METALS AND MINING', 0, '', '', 'NO', 0, '', '', 'Girinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Fabrication website Meeting fixed with Nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-08', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3176, '164', 61, '', '164', 'Sridhar', 'Sridhar ', '', '', '', '', '', '', '', '9019039337', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-com website& App Call later Not answering my call ', '', 'ACTIVE', 'LEAD', 0, '2020-01-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3177, '164', 61, '', '164', 'Fashion Beauty Academy', 'Bhavani ', '', '', '', '', '', '', '', '7829349710', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for Fashion & beauty academy She will meet nithin tomorrow in BTM ', '', 'ACTIVE', 'LEAD', 0, '2020-01-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3178, '164', 61, '', '164', 'Veerendra', 'Veerendra ', '', '', '', '', '', '', '', '7483249296', '', 'Just Dial', 'Contacted', '0000-00-00', 'TOURISM AND HOSPITALITY', 0, '', '', 'NO', 0, '', '', 'Singasandra', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Driver service agency website Meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3179, '164', 61, '', '164', 'Hotel Oberoi', 'John ', '', '', '', '', '', '', '', '9082847988', '', 'Just Dial', 'Contacted', '0000-00-00', 'Food Industry', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Meeting fixed with ajay sir on 10.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3180, '164', 61, '', '164', 'Dheeraj Kumar', 'Dheeraj Kumar ', '', '', '', '', '', '', '', '8789463688', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '5 pages of static website have told 8K+tax ', '', 'ACTIVE', 'LEAD', 0, '2020-01-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3181, '164', 61, '', '164', 'Computer Shop', 'Rakesh ', '', '', '', '', '', '', '', '9844029367', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website for computer sales & services Nithin will meet him on 11.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3182, '164', 61, '', '164', 'Security agency', 'Sandeep ', '', '', '', '', '', '', '', '8088460610', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Security service website Meeting fixed with nithin on 11.01.2020 morning ', '', 'ACTIVE', 'LEAD', 0, '2020-01-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3183, '164', 61, '', '164', 'Furniture', 'Akbar', '', '', 'furniclub20@gmail.com', '', '', '', '', '9513560025', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'J P Nagar,9th Phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need E-commerce application B2B & B2C Ajay sir discussed & told 2Lakh+tax', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3184, '164', 61, '', '164', 'Mental Health ', 'Monish ', '', '', 'monishantharaju@gmail.com', '', '', '', '', '9900291106', '', 'Just Dial', 'Contacted', '0000-00-00', 'HEALTHCARE', 0, '', '', 'NO', 0, '', '', 'Koramangala', 'Bangalore', 'Karnataka', 0, 'India', 'Monish', '', '', '', 'Customised application for mental health ', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3185, '164', 61, '', '164', 'Mahesh', 'Mahesh ', '', '', '', '', '', '', '', '9591492138', '', 'Just Dial', 'Contacted', '0000-00-00', 'STEEL', 0, '', '', 'NO', 0, '', '', 'Indiranagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Service oriented website ', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3186, '164', 61, '', '164', 'Printing Press', 'Reddaiah ', '', '', '', '', '', '', '', '9900470111', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Uttaralli ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for printing press', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3187, '164', 61, '', '164', 'Pharmaceuticals', 'Shashikiran ', '', '', 'sashikiran@gmail.com', '', '', '', '', '9741111107', '', 'Just Dial', 'Contacted', '0000-00-00', 'PHARMACEUTICALS', 0, '', '', 'NO', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Pharmaceutical website,Have sent company Profile & links', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3188, '164', 61, '', '164', 'Girish Nagaraju', 'Girish Nagaraju ', '', '', 'girishnagaraj09@gmail.com', '', '', '', '', '9620703955', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Simple dynamic website with blog & contact form ', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3189, '164', 61, '', '164', 'Gas Agency', 'Naveen ', '', '', '', '', '', '', '', '9481838368', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Kengeri ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Gas agency website Meeting fixed with Nithin,Ajay sir also talked to him ', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3190, '164', 61, '', '164', 'Lokesh', 'Lokesh ', '', '', '', '', '', '', '', '9980199004', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Basaveshwaranagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website,he will send the reference link ', '', 'ACTIVE', 'LEAD', 0, '2020-01-13', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3191, '164', 61, '', '164', 'MLM', 'Rohit', '', '', 'rohitmicky1998@gmail.com', '', '', '', '', '8277084002', '', 'Just Dial', 'Contacted', '0000-00-00', 'TEXTILES', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'MLM software with Binary Plan', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3192, '164', 61, '', '164', 'academy4career', 'Chethan', '', '', 'academy4career@gmail.com', '', '', '', '', '9986113335', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Application for Career guidence,have sent quotation of Rs.1.5L+tax', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3193, '164', 61, '', '164', 'Venkatesh', 'Venkatesh ', '', '', '', '', '', '', '', '8746090729', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Hennur depo', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages of static website have told 9K+tax,he will call me back ', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3194, '164', 61, '', '164', 'Mahadev', 'Mahadev ', '', '', 'info.dhanyaelectricals@gmail.com', '', '', '', '', '9606153992', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website have sent details mail ', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'); INSERT INTO `leads` (`lead_id`, `user_id`, `role_id`, `lead_convert`, `lead_owner`, `company_name`, `first_name`, `last_name`, `lead_title`, `email`, `alternate_email`, `phone`, `alternate_phone`, `fax`, `mobile`, `website`, `lead_source`, `lead_status`, `converted_at`, `industry`, `no_of_employees`, `annual_revenue`, `ratings`, `email_otp`, `skype_id`, `sec_email`, `twitter`, `street`, `city`, `state`, `zip_code`, `country`, `Cperson`, `Cphone`, `cType`, `lprocess`, `description`, `profile_pick`, `delete_status`, `l_type`, `contact_id`, `created_at`, `updated_at`, `converted_next_level`, `service_amount`, `service_name`, `service_date`) VALUES (3195, '164', 61, '', '164', 'Faisal', 'Faisal ', '', '', '', '', '', '', '', '8136963610', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Murgeshpalya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '6-7 pages of static website,have told 9K+tax ', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3196, '164', 61, '', '164', 'Krishna', 'Krishna ', '', '', 'krishrd1000@gmail.com', '', '', '', '', '9739099996', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Whitefield', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Real estate website,have sent P & L ', '', 'ACTIVE', 'LEAD', 0, '2020-01-14', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3197, '164', 61, '', '164', 'Linen Hub', 'Ramesh', '', '', '', '', '', '6366370707', '', '7338470707', 'linenhub.co.in', 'Just Dial', 'Contacted', '0000-00-00', 'TEXTILES', 0, '', '', 'NO', 0, '', '', '#86,2nd main,Vidyaranyanagar,Magadi road', 'Bangalore', 'Karnataka', 560023, 'India', 'Ramesh', '7338470707', 'New', '20', 'Re-design of static website with google adwords & a single webmail', '', 'INACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Static website with google adwords \"]', '[\"\"]'), (3198, '164', 61, '', '164', 'Indus Valley School', 'Roopa', '', '', 'newindusvalley@gmail.com', '', '', '', '', '9591630268', 'www.indusvalley.com', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bhattarahalli,Near K R Puram', 'Bangalore', 'Karnataka', 0, 'India', 'Roopa', '9591630268', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (3199, '164', 61, '', '164', 'Sai Vision technologies', 'Suresh ', '', '', '', '', '', '', '', '9620091010', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Nagarabhavi ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Automatic water level controler website +adwords Have told 17K+tax Have sent details ', '', 'ACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3200, '164', 61, '', '164', 'Fitness', 'Anil ', '', '', 'aniljeffery3@gmail.com', '', '', '', '', '9513388998', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Horamavu', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'website for fitness centre Call after Tuesday Call 22.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3201, '164', 61, '', '164', 'summer camp', 'Amar ', '', '', '', '', '', '', '', '9164618771', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Hanumanthnagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Lead generation & offline convertion for summer camp Have sent address he will meet ajay sir ', '', 'ACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3202, '164', 61, '', '164', 'MLM', 'Vinod ', '', '', 'matriji123bangalore123@gmail.com', '', '', '', '', '7026246246', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'MLM application,he will meet ajay sir tomorrow ', '', 'ACTIVE', 'LEAD', 0, '2020-01-16', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3203, '164', 61, '', '164', 'VISA', 'Amarnath ', '', '', 'amarnathtr@hotmail.com', '', '', '', '', '9008401402', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '100-200pages of website development with payment gateway,ajay sir have discussed with him visa client have told 1.5L+tax ', '', 'ACTIVE', 'LEAD', 0, '2020-01-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3204, '164', 61, '', '164', 'Water Purifier', 'Girish Ramaswamy ', '', '', '', '', '', '', '', '9738206991', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Magadi road/Mysore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Water purifier website,have told 8 K,have sent details & Mysore location ,he will visit office next week ', '', 'ACTIVE', 'LEAD', 0, '2020-01-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3205, '164', 61, '', '164', 'Shivakumar', 'Shivakumar ', '', '', '', '', '', '', '', '9900226825', 'jagatesmist.com', 'Just Dial', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'J C road', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 're-design of website,meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3206, '164', 61, '', '164', 'Sanjay', 'Sanjay ', '', '', '', '', '', '', '', '8660884288', '', 'Just Dial', 'Contacted', '0000-00-00', 'MANUFACTURING', 0, '', '', 'NO', 0, '', '', 'Mysore road,satellite bus stop ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Manufacturer website,meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3207, '164', 61, '', '164', 'Sunil jain', 'Sunil Jain ', '', '', '', '', '', '', '', '9066640500', 'novetuz.com', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'J P Nagar,1st phase', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'he has given reference website igiftshub.com ', '', 'ACTIVE', 'LEAD', 0, '2020-01-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3208, '164', 61, '', '164', 'Jaisri Nagendra', 'Jaisri ', '', '', 'jaisrinagendra@gmail.com', '', '', '', '', '9999999999', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Mysore', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Have shared company details ', '', 'ACTIVE', 'LEAD', 0, '2020-01-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3209, '164', 61, '', '164', 'Kiran', 'Kiran ', '', '', '', '', '', '', '', '7996673878', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Shanthinagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have shared company details whatsapp ', '', 'ACTIVE', 'LEAD', 0, '2020-01-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3210, '164', 61, '', '164', 'Matrimony', 'Srikanth ', '', '', '', '', '', '', '', '9741492612', '', 'Just Dial', 'Contacted', '0000-00-00', 'TELECOMMUNICATIONS', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Matrimonial app he will send the requirement ', '', 'ACTIVE', 'LEAD', 0, '2020-01-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3211, '164', 61, '', '164', 'Raghav', 'Raghav R ', '', '', '', '', '', '', '', '7406377689', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Peenya,Jalahalli cross', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Need website meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-20', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3212, '164', 61, '', '164', 'Aquarium', 'Minu Madhan', '', '', '', '', '', '', '', '9916938425', '', 'Just Dial', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'J P Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website & adwords have told 7K+8K+tax', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3213, '164', 61, '', '164', 'Construction', 'Sindhoori', '', '', '', '', '', '', '', '9900000945', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (3214, '164', 61, '', '164', 'Event Management', 'Nagarjun ', '', '', '', '', '', '', '', '9980600141', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Sanjaynagar ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Event management website Meeting fixed with Nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3215, '164', 61, '', '164', 'Santhosh', 'Santhosh ', '', '', 'kcsbengalurukarnataka2907@gmail.com', '', '', '', '', '9900002907', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Sanjaynagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'need website,have sent mail with details ', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3216, '164', 61, '', '164', 'Avco India ', 'Aniketh ', '', '', '', '', '', '', '', '6362768078', '', 'Just Dial', 'Contacted', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', '', 'NO', 0, '', '', 'Bangalore ', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Web application for school,digital marketing lead ,He will meet ajay sir next wedneesday 29.01.2020 ', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3217, '164', 61, '', '164', 'Raj', 'Raj ', '', '', '', '', '', '', '', '9886505050', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Website meeting fixed with Nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3218, '164', 61, '', '164', 'Mak Hotel', 'Sanjib ', '', '', 'mak.enterprise85@gmail.com', '', '', '', '', '9433454741', '', 'Just Dial', '', '0000-00-00', 'Food Industry', 0, '', '', '', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Have shared company P L waiting for his requirement ', '', 'ACTIVE', 'LEAD', 0, '2020-01-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3219, '20', 1, '', '21', 'Raj company', 'Raj ', '', '', 'Raj@123.com', '', '', '', '', '9886505050', '', '', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', '', 0, '', '', '', 'New', '40', '', '', 'ACTIVE', 'LEAD', 0, '2020-01-25', '0000-00-00 00:00:00', '', '[\"40000\"]', '[\"domine\"]', '[\"25-01-2020\"]'), (3220, '164', 61, '', '164', 'Transe Vision Care Pvt.Ltd', 'Geetha K', '', '', 'mcm@varnacreations.in', '', '', '', '', '9845366406', '', 'Just Dial', 'Contacted', '0000-00-00', 'RETAIL', 0, '', '', '', 0, '', '', '#814,23rd main,2nd phase,J p Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '9845366406', 'New', '', '2 Dynamic website(domain,hosting from client)', '', 'INACTIVE', 'LEAD', 0, '2020-01-27', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Dynamic website\"]', '[\"\"]'), (3221, '164', 61, '', '164', 'Car Service Station', 'Imran', '', '', '', '', '', '', '', '7975541884', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'R T Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic website with payment gateway', '', 'ACTIVE', 'LEAD', 0, '2020-01-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Dynamic website\"]', '[\"\"]'), (3222, '164', 61, '', '164', 'Start up', 'Anusha', '', '', 'anushad552@gmail.com', '', '', '', '', '8296128916', '', 'Just Dial', 'Contacted', '0000-00-00', 'TEXTILES', 0, '', '', 'NO', 0, '', '', 'Kengeri', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Static website ', '', 'ACTIVE', 'LEAD', 0, '2020-01-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Static website\"]', '[\"\"]'), (3223, '164', 61, '', '164', 'Sandeep', 'Sandeep ', '', '', 'sandeep@adastyainfo.in', '', '', '', '', '8217334190', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'He need website but he is driving call later ', '', 'ACTIVE', 'LEAD', 0, '2020-01-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3224, '164', 61, '', '164', 'Asif', 'Asif ', '', '', '', '', '', '', '', '9880046002', '', 'Just Dial', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Jayanagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages of dynamic website Have told 9K+tax he said he will call me back ', '', 'ACTIVE', 'LEAD', 0, '2020-01-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3225, '164', 61, '', '164', 'Kaushik', 'Kaushik ', '', '', '', '', '', '', '', '9036882273', '', 'Just Dial', 'Contacted', '0000-00-00', 'GEMS AND JEWELLERY', 0, '', '', 'NO', 0, '', '', 'Nagarathpet', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Jewellery business wholesale e-com Meeting fixed with Nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3226, '164', 61, '', '164', 'Yashaswini', 'Yashaswini ', '', '', '', '', '', '', '', '7026736435', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Mariyappana palya', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Xerox shop have told 9K for dynamic website ', '', 'ACTIVE', 'LEAD', 0, '2020-01-28', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3227, '164', 61, '', '164', 'Dairy Products', 'Punith ', '', '', 'punithreddy7555@gmail.com', '', '', '', '', '9741160101', '', 'Just Dial', 'Contacted', '0000-00-00', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'App for dairy products', '', 'ACTIVE', 'LEAD', 0, '2020-01-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3228, '164', 61, '', '164', 'Abhishek Gowda', 'Abhishek gowda ', '', '', '', '', '', '', '', '9113648313', '', 'Just Dial', 'Contacted', '0000-00-00', 'REAL ESTATE', 0, '', '', 'NO', 0, '', '', 'Konanakunte Cross', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Construction & Real estate SEO,Meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3229, '164', 61, '', '164', 'Yoga Centre', 'Narayana swamy ', '', '', 'omfacility.m@gmail.com', '', '', '', '', '9986000935', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Hospet Taluk', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Yoga website,Meeting fixed with nithin ', '', 'ACTIVE', 'LEAD', 0, '2020-01-31', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3230, '164', 61, '', '164', 'Start up', 'Kamalaksha', '', '', 'kamal5981@gmail.com', '', '', '', '', '9916763537', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Electronic city', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '4-5 pages of dynamic website including payment gateway,have told 15K+tax', '', 'ACTIVE', 'LEAD', 0, '2020-02-04', '0000-00-00 00:00:00', '', '[\"\"]', '[\"Dynamic website\"]', '[\"\"]'), (3231, '164', 61, '', '164', 'NONAHomes', 'Navin K', '', '', 'navin@swansilk.com', '', '', '', '', '9901777007', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bangalore', 'Bangalore', 'Karnataka', 0, 'India', 'Navin K', '9901777007', '', '', 'E-commerce website with Megento Platform', '', 'INACTIVE', 'LEAD', 0, '2020-02-05', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"E-commerce website with Megento platform\"]', '[\"\"]'), (3232, '164', 61, '', '164', 'Start up', 'Aravind', '', '', 'aravindsampathpro@gmail.com', '', '', '', '', '9739436788', '', 'Just Dial', 'Contacted', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'BDA Complex,Nagarabhavi', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-02-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3233, '164', 61, '', '164', 'Harish', 'Harish', '', '', '', '', '', '', '', '9591045018', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Hanumanthnagar', 'Bangalore', 'Karnataka', 0, 'India', 'Harish', '9591045018', '', '', 'Static website', '', 'ACTIVE', 'LEAD', 0, '2020-02-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3234, '164', 61, '', '164', 'Varna Creations', 'Geetha K', '', '', 'mcm@varnacreations.in', '', '9845366406', '', '', '9845366406', '', 'Just Dial', 'Contacted', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '#814,23rd main,2nd phase,J p Nagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Dynamic Website (only design & Development)(Domain & hosting by client)', '', 'INACTIVE', 'LEAD', 0, '2020-02-08', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3235, '164', 61, '', '164', 'start up', 'vishwas', '', '', '', '', '', '', '', '7022780848', '', 'Just Dial', 'Contacted', '0000-00-00', 'FINANCIAL SERVICES', 0, '', '', 'NO', 0, '', '', 'J P nagar', 'Mysore', 'Karnataka', 0, 'India', '', '', '', '', 'Application like Cash bean', '', 'ACTIVE', 'LEAD', 0, '2020-02-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3236, '164', 61, '', '164', 'Start up', 'Karthik', '', '', '', '', '', '', '', '9035350828', '', 'Just Dial', 'Contacted', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Sahakarnagar', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', 'Photography website have told 10K for normal dynamic website & 40K for customized website.', '', 'ACTIVE', 'LEAD', 0, '2020-02-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3237, '164', 61, '', '20', 'Medu Sys', 'Pradeep Achar', '', '', 'hnvijayasimha@gmail.com', '', '', '', '', '9342552697', '', 'Existing Client Reference', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', 'Australia', 'Australia', 'Australia', 0, 'Australia', '', '', '', '', 'PCOM Application according to the requirement shared.', '', 'ACTIVE', 'LEAD', 0, '2020-02-10', '0000-00-00 00:00:00', '', '[\"\"]', '[\"PCOM Application\"]', '[\"\"]'), (3238, '164', 61, '', '21', 'Start up', 'Vijendra gowda ', '', '', 'viji7259521592@gmail.com', '', '9742333699', '', '', '9742333699', '', 'Just Dial', '', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Garvabhavipalya Banglore', '', 'Karnataka', 0, 'india', 'vijendra', '9742333699', 'New', '80', 'social media', '', 'INACTIVE', 'LEAD', 0, '2020-02-18', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"social media\"]', '[\"\"]'), (3239, '164', 61, '', '20', 'Start up', 'Vamika', '', '', 'rachnasdezain@gmil.com', '', '9743555771', '', '', '9743555771', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'kalyan Nagar', 'Banglore', 'karnataka', 0, 'india', '', '', '', '', 'Dynamic website', '', 'INACTIVE', 'LEAD', 0, '2020-02-19', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3240, '164', 61, '', '20', 'Start up', 'Vamika', '', '', 'rachnasdezain@gmil.com', 'rachnasdezain@gmil.com', '9743555771', '', '', '9743555771', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'kalyan Nagar', 'Bangalore', 'Karnataka', 560023, 'India', 'Vamika', '9743555771', 'New', '', 'Dynamic website', '', 'INACTIVE', 'LEAD', 0, '2020-02-19', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3241, '164', 61, '', '20', 'Start up', 'Raja G', '', '', 'graja1303@gmail.com', '', '9739001729', '', '', '9739001729', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Bommanhalli', 'Bangalore', 'Karnataka', 560004, 'India', 'Raja G', '9739001729', 'New', '80', 'Static website', '', 'INACTIVE', 'LEAD', 0, '2020-02-22', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3242, '164', 61, '', '20', 'Start up', 'Raja G', '', '', 'graja1303@gmail.com', '', '9739001729', '', '', '9739001729', '', 'Just Dial', '', '0000-00-00', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'NO', 0, '', '', 'Bommanhalli', 'Bangalore', 'Karnataka', 560004, 'India', 'Raja G', '9739001729', 'New', '', 'Static website', '', 'ACTIVE', 'LEAD', 0, '2020-02-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3243, '164', 61, '', '21', 'Start up', 'Mithun', '', '', '', '', '9731083670', '', '', '9731083670', '', 'Just Dial', '', '0000-00-00', 'ECOMMERCE', 0, '', '', 'NO', 0, '', '', 'Bannerghatta ', 'Bangalore', 'Karnataka', 560023, 'India', 'Mithun', '9731083670', 'New', '', 'E-Commerce Application', '', 'ACTIVE', 'LEAD', 0, '2020-02-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3244, '164', 61, '', '20', 'Start up', 'Satish BG', '', '', 'satish.yoga@gmail.com', 'satish.yoga@gmail.com', '8147267798', '', '', '8147267798', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'LR Bande R T Nagar', 'Bangaluru', 'Karnataka', 560043, 'India', 'Stish BG', '8147267798', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-02-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3245, '164', 61, '', '20', 'Start up', 'Akash kumar', '', '', '', '', '7204726851', '', '', '7204726851', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', 'Rajajinagar', 'Bangalore', 'Karnataka', 560023, 'India', '', '07338470707', 'New', '', 'Static website', '', 'ACTIVE', 'LEAD', 0, '2020-02-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3246, '164', 61, '', '20', 'Start up', 'joyce priya', '', '', '', '', '9632175879', '', '', '9632175879', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Indiranagar ', 'Bangalore', 'Karnataka', 0, 'India', 'Joyce priya', '9606120129', 'New', '', 'Dynamic website', '', 'ACTIVE', 'LEAD', 0, '2020-02-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3247, '164', 61, '', '20', 'Start up', 'Manoj', '', '', '', '', '8553744049', '', '', '8553744049', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Banashankari', 'Bangalore', 'Karnataka', 0, 'India', 'Manoj', '8553744049', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3248, '164', 61, '', '20', 'Start up', 'Chandra Mouli', '', '', '', '', '9379705040', '', '', '9379705040', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '9886413232', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-02-27', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3249, '164', 61, '', '20', 'Start up', 'Suhas', '', '', 'suhaas.nayak@think-wright.com', '', '9880110120', '', '', '9880110120', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', 'Suhas', '9880110120', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-03-03', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3250, '164', 61, '', '20', 'Start up', 'Veeksha', '', '', 'veekshajsatu@gmail.com', '', '9743982178', '', '', '9743982178', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', 'Dr veeksha', '9743982178', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-03-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3251, '164', 61, '', '20', 'Start up', 'Kadambari', '', '', 'Kadambarimehta009@gmail.com', '', '7259730069', '', '', '7259730069', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', 'Vasanthnagar', 'Bangalore', 'Karnataka', 560068, 'India', 'Kadambari', '7259730069', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-03-05', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3252, '164', 61, '', '20', 'Start up', 'Siddaram', '', '', 'Siddaram1907@gmail.com', '', '9845989012', '', '', '9845989012', '', 'Just Dial', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', 'Siddaram', '9845989012', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-03-09', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3253, '164', 61, '', '20', 'Start up', 'kshitij', 'kshitij', '', '', '', '9980473772', '', '', '9980473772', '', 'Partner', '', '0000-00-00', 'SERVICES', 0, '', '', 'NO', 0, '', '', '', 'Banglore', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2020-05-19', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3254, '164', 61, '', '20', 'wizmatrix', 'Sushmitha shetty', '', '', 'sushmitha@wizmatrix.com', '', '9844057417', '', '', '9844057417', 'wizmatrix.com', 'Website Research', '', '0000-00-00', 'HEALTHCARE', 0, '', '', '', 0, '', '', '', 'Bangalore', '', 0, '', '', '', '', '', 'Dynamic website (wizmatrix.com )', '', 'ACTIVE', 'LEAD', 0, '2020-05-22', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3255, '164', 61, '', '20', 'Dental square ', 'Dr jayanthi ', '', '', '', '', '9845945726', '', '', '9845945726', '', 'Website Research', 'Contacted', '0000-00-00', 'SERVICES', 0, '', 'Active', '', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', '', '9845945726', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2020-06-24', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3256, '164', 61, '', '20', 'start up', 'Athar Ali', '', '', 'mindsmithsindia@gmail.com', '', '9198117196', '', '', '9198117196', '', 'Website Research', '', '0000-00-00', 'Sports', 0, '', '', 'NO', 0, '', '', '', 'Bangalore', 'Karnataka', 0, 'India', 'Athar Ali', '9198117196', 'New', '80', '', '', 'ACTIVE', 'LEAD', 0, '2020-08-17', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3257, '164', 61, '', '20', 'MMG Constructions LLP', 'Jayaram', '', '', '', '', '9900486815', '', '', '9900486815', '', '', '', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara ', 'Mysore ', 'Karnataka 570022', 0, 'India', 'chandrakala', '', 'New', '80', '', '', 'INACTIVE', 'LEAD', 0, '2020-10-10', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3258, '164', 61, '', '20', 'Start up', 'Surya M P', '', '', 'smsfilesmysore@gmail.com', '', '9945847513', '', '', '9945847513', '', 'Public Relations', 'Contacted', '0000-00-00', 'OTHERS', 0, '', '', 'NO', 0, '', '', 'Plot No.78 ,Hootgalli Industrial Area,Mysuru-570016', '', 'Karnataka', 0, 'India', 'Raghunath G', '9686677143', 'New', '', '', '', 'ACTIVE', 'LEAD', 0, '2020-11-11', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3259, '24', 69, '', '24', 'Novel Tissues', 'Novel Tissues', '', '', 'admin@noveltissues.com', '', '', '', '', '9845398453', 'noveltissues.com', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '#65A,Hootagalli, Ilavala Hobli', 'Mysore', 'Karnataka', 570018, 'India', 'TauqheerAhmed', '08214282765', '', '', 'POS machine and ERP', '', 'ACTIVE', 'LEAD', 0, '2021-01-30', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3260, '24', 69, '', '24', 'Farahs Foundation Trust', 'Farah Mukhtar', '', '', 'farah.zaina@yahoo.in', '', '', '', '', '8880030528', '', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '#302,4th floor, 3rd cross, Xavier layout', 'Bangalore', 'Karantaka', 560047, 'India', 'Farah Mukhtar', '8880030528', '', '', 'Trust website with payment gateway', '', 'ACTIVE', 'LEAD', 0, '2021-02-11', '0000-00-00 00:00:00', '', '[\"30000\"]', '[\"Dynamic website with payment gateway\"]', '[\"\"]'), (3261, '24', 69, '', '24', 'View paker India Pvt Ltd', 'View paker India Pvt Ltd', 'Pandey', 'CEO', 'shalini@viewpakerindia.com', '', '', '', '', '9845087399', 'viewpakerindia.com', '', '', '0000-00-00', '', 0, '', '', '', 0, '', '', '84. 4th cross, Panduranganagar, Bannergatta road', 'Bangalore', 'Karnataka', 0, 'India', 'ShaliniPandey', '9845087399', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2021-02-18', '0000-00-00 00:00:00', 'ACONVERT', '[\"125000\"]', '[\"ERP Implementation\"]', '[\"18-02-2021\"]'), (3262, '24', 69, '', '24', 'Agro Chemicals', 'Vinod Hiregoudar', '', '', 'vinodgouda6060@gmail.com', '', '9449258713', '', '', '9449258713', '', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', 'Vinod Hiregoudar', '9449258713', 'New', '20', 'ERP with billing application. Told 1.3L. he was interested but later not picking the call', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3263, '24', 69, '', '24', 'Vijay Kumar', 'Vijay', '', '', 'vijaykumarbrl333@gmail.com', '', '7892265614', '', '', '7892265614', '', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'He has automobile spare part factory. wanted erp for that. but not picking call after that', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3264, '24', 69, '', '24', 'Isiri Creations', 'Chandrashekar', '', '', 'isiricreationss@gmail.com', '', '', '', '', '8792295009', '', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Wants ERP for his garments with inventory, billing etc.. Not that potential', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3265, '24', 69, '', '24', 'Doart', 'Naveen', 'Nimbalkar', '', 'infodesignerceo@gmail.com', '', '', '', '', '7847028080', 'doart.in', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Art design person. potential. has woocommerce website and wants an erp to manage inventory, vendors, billing, printing solution etc.. demo given and talks are going on.', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3266, '24', 69, '', '24', 'Wellco Imaging', 'Moin Khan', '', '', 'mkmoinkhan1@gmail.com', '', '', '', '', '9742093359', '', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'He asked me to call in march 1st week', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3267, '24', 69, '', '24', 'Vagmine', 'Satish', '', '', 'hd.sathisha@ranegroup.com', '', '', '', '', '9008873807', '', '', '', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'he is starting a new company of UPVC or french window. wants me to contact him after march', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3268, '24', 69, '', '24', 'Sri Ranga Furniture', 'Madan Damodaran', '', '', 'madan.d@srirangafurniture.com', '', '', '', '', '9945777007', 'srirangafurniture.com', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '2 floors manufacturing and 2 floors trading of furnitures. Very potential. Asked to meet us in 1st week of march at his office', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3269, '24', 69, '', '24', 'DPK Engineers', 'Satish Babu', '', '', 'satish@dpkgroup.in', '', '', '', '', '9900052495', 'dpkgroup.in', 'Advertisement', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', 'Wants CRM for around 50k. Busy to give appointment for demo.', '', 'ACTIVE', 'LEAD', 0, '2021-02-26', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3270, '20', 1, 'PCONVERTED', '20', 'DreamSole Auto Industries', 'Bhushan', 'Patel', '', 'patilbhushan309@gmail.com', '', '9081620165', '', '', '9081620165', '', 'Website Research', 'Contacted', '2021-10-28', 'AUTOMOBILES', 0, '', 'Active', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2021-06-29', '0000-00-00 00:00:00', 'PCONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3271, '20', 1, '', '20', 'Dr Srinivas', 'Srinivas', '', 'Proprietor', '', '', '9845198890', '', '', '9845198890', '', 'Existing Client Reference', 'Self Generated', '0000-00-00', 'HEALTHCARE', 0, '5,000', 'Active', 'NO', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2021-09-07', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"Dentics Software\"]', '[\"\"]'), (3272, '20', 1, '', '20', 'AVC multispeciality Dental Care', 'Divya', '', '', 'dhisha.divya@gmail.com', '', '9448071026', '', '', '9448071026', '', 'Existing Client Reference', 'Self Generated', '0000-00-00', '', 0, '6,000', '', '', 0, '', '', 'No.728/9 , Bommasandra industrial area Main Road Near SBI Bank,', 'Bangalore', 'karnataka', 560009, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2021-12-06', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3273, '20', 1, '', '20', 'Jyothi Ranjan', 'Jyothi', 'Ranjan', '', 'jyotiranjan_m@yahoo.com', '', '9741111687', '', '', '9741111687', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'IT & ITES', 0, '', '', '', 0, '', '', 'Electronic City', 'Bangalore', 'Karnataka', 0, 'India', '', '', '', '', '', '', 'INACTIVE', 'LEAD', 0, '2022-04-09', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3274, '20', 1, '', '24', 'St Josephs Central school', 'Principal', '', 'Principal , St Josephs Central school', 'social.jayblues@gmail.com', '', '', '', '', '9731622442', '', 'Employee Referral', '', '0000-00-00', 'EDUCATION AND TRAINING', 0, '', 'Active', '', 0, '', '', '', 'Mysore', '', 0, '', '', '', 'New', '20', '', '', 'INACTIVE', 'LEAD', 0, '2022-09-27', '0000-00-00 00:00:00', 'ACONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3275, '193', 58, '', '193', 'K P Realtors', 'K P Realtors , (Balasubramanya B)', '', '', 'kprealtorsmysore@gmail.com', '', '', '', '', '9008333778', '', 'Employee Reference', 'Contact in future', '0000-00-00', 'OTHERS', 0, '', '', '', 0, '', '', '', '', '', 0, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2022-11-15', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3276, '193', 58, '', '193', 'Govt Employee Housing Loan Society', 'Vishalakshi', '', '', 'gehbcsimysore@gmail.com', '', '', '', '', '9945968936', '', 'Existing Client Reference', 'Contacted', '0000-00-00', 'REAL ESTATE', 15, '10,000,000', 'Active', 'NO', 0, '', '', 'Govt. Employee Housing Loan Society, Near Sahakara Bhavan', 'Mysore', 'Karnataka', 0, 'India', 'Vishalkshi', '9945968936', 'New', '80', '', '', 'ACTIVE', 'LEAD', 0, '2022-11-16', '0000-00-00 00:00:00', '', '[\"20000\"]', '[\"Website create and hosting\"]', '[\"\"]'), (3277, '193', 58, '', '193', 'J D A PROJECTS', 'JESUDAS', '', '', 'jdaprojects.js@gmail.com', '', '', '', '', '9886332304', '', 'External Referral', 'Contacted', '0000-00-00', '', 0, '', '', 'NO', 0, '', '', '580, CH 44/3A, VANI VILLAS DOUBLE ROAD', 'MYSORE', 'KARNATAKA', 0, 'INDIA', 'JESUDAS', '9886332304', 'New', '20', '', '', 'ACTIVE', 'LEAD', 0, '2022-11-18', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3278, '193', 58, '', '193', 'Sukruthi Charitable Trust', 'Nagaraj', '', '', 'bsnvmw@gmail.com', '', '9980832062', '', '', '9980832062', '', 'External Referral', 'Contacted', '0000-00-00', '', 0, '', '', '', 0, '', '', '503, Tushti, 1st Cross, 2nd Main, AGs Layout', 'Bangalore - 560061', 'Karnataka', 0, 'India', '', '', 'New', '60', '', '', 'ACTIVE', 'LEAD', 0, '2022-12-02', '0000-00-00 00:00:00', '', '[\"\"]', '[\"\"]', '[\"\"]'), (3279, '195', 61, 'PCONVERTED', '195', 'Bindu tours and Travels', 'Bharath', 'K', 'Proprietor', 'bindutravelz01@gmail.com', 'bharathgowda774@gmail.com', '6360184276', '', '', '6360184276', '', 'Public Relations', 'Self Generated', '2024-02-28', 'OTHERS', 0, '', '', 'NO', 0, '', '', '', '', '', 0, '', 'Bharath', '6360184276', 'New', '', '', '', 'INACTIVE', 'LEAD', 0, '2024-02-28', '0000-00-00 00:00:00', 'PCONVERT', '[\"\"]', '[\"\"]', '[\"\"]'), (3280, '195', 61, 'PCONVERTED', '195', 'Laxmi control system', 'Basavaraj', 'Maranabasari', 'CEO', 'laxmicontrols@yahoo.co.in', '', '9845333485', '', '', '9845333485', '', 'Public Relations', 'Contacted', '2024-02-28', 'OTHERS', 0, '', '', 'NO', 0, '', '', '428,opp Automotive Axies.LTD', 'Mysore', 'Karnataka', 570018, 'India', 'Basavaraj', '9845333485', 'New', '20', '', '', 'INACTIVE', 'LEAD', 0, '2024-02-28', '0000-00-00 00:00:00', 'PCONVERT', '[\"\"]', '[\"ERP\"]', '[\"\"]'), (3281, '20', 1, '', '20', 'Login', 'Eknath Rai', 'Rai', 'Owner', 'eknag@rediffmail.com', '', '9448054220', '', '', '9448054220', '', 'Employee Referral', 'Contacted', '0000-00-00', 'INFRASTRUCTURE', 0, '', '', '', 0, '', '', 'No.449, second floor, Sthira Building, New Kantharaj Urs Rd, TK Layout 4th Stage', 'Mysore', 'Karnataka', 570023, '', '', '', '', '', '', '', 'ACTIVE', 'LEAD', 0, '2024-08-01', '0000-00-00 00:00:00', '', '[\"30000\"]', '[\"\"]', '[\"\"]'); -- -------------------------------------------------------- -- -- Table structure for table `lead_account_attachments` -- CREATE TABLE `lead_account_attachments` ( `account_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `type` varchar(222) NOT NULL, `link_url` varchar(555) NOT NULL, `attach_file` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_account_linkurl` -- CREATE TABLE `lead_account_linkurl` ( `account_url_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `account_link_url` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_attachments` -- CREATE TABLE `lead_attachments` ( `attachment_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `type` varchar(350) NOT NULL, `link_url` varchar(500) NOT NULL, `attach_file` text NOT NULL, `activity` enum('FILE','URL') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` date NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_attachments` -- INSERT INTO `lead_attachments` (`attachment_id`, `lead_id`, `type`, `link_url`, `attach_file`, `activity`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 1, 'Attached File', '', '1521708560Chrysanthemum.jpg', 'FILE', '', '2018-03-22', '0000-00-00 00:00:00'), (2, 1, 'Link URL', 'yaskawa.com', '', 'FILE', '', '2018-03-22', '0000-00-00 00:00:00'), (3, 2, 'Attached File', '', '1521724076Desert.jpg', 'FILE', '', '2018-03-22', '0000-00-00 00:00:00'), (4, 2, 'Link URL', 'yaskawa.com', '', 'FILE', '', '2018-03-22', '0000-00-00 00:00:00'), (5, 4, 'Attached File', '', '1521802074507877515.jpg', 'FILE', '', '2018-03-23', '0000-00-00 00:00:00'), (6, 4, 'Link URL', 'www.google.com', '', 'FILE', '', '2018-03-23', '0000-00-00 00:00:00'), (7, 8, 'Attached File', '', '152189318310353558_385681188263898_4522478647757016905_n.jpg', 'FILE', '', '2018-03-24', '0000-00-00 00:00:00'), (8, 10, 'Attached File', '', '152189920311742810_494878607344155_8535980421790684090_n.jpg', 'FILE', '', '2018-03-24', '0000-00-00 00:00:00'), (9, 10, 'Link URL', 'www.google.com', '', 'FILE', '', '2018-03-24', '0000-00-00 00:00:00'), (10, 9, 'Link URL', 'www.gmail.com', '', 'FILE', '', '2018-03-26', '0000-00-00 00:00:00'), (11, 12, 'Attached File', '', '1522051786507877515.jpg', 'FILE', '', '2018-03-26', '0000-00-00 00:00:00'), (12, 12, 'Link URL', 'www.google.com', '', 'FILE', '', '2018-03-26', '0000-00-00 00:00:00'), (13, 14, 'Attached File', '', '1522088942nparrioo_yaskawa_crm.sql', 'FILE', '', '2018-03-26', '0000-00-00 00:00:00'), (14, 14, 'Link URL', 'nparrots.com/yaskawa_crm', '', 'FILE', '', '2018-03-26', '0000-00-00 00:00:00'), (15, 22, 'Link URL', 'www.google.com', '', 'FILE', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00'), (16, 22, 'Attached File', '', '1522089129yaskawa.sql', 'FILE', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00'), (17, 16, 'Attached File', '', '1522130371Domain.pdf', 'FILE', '', '2018-03-27', '0000-00-00 00:00:00'), (18, 16, 'Link URL', 'www.abc.com', '', 'FILE', '', '2018-03-27', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `lead_attach_notes` -- CREATE TABLE `lead_attach_notes` ( `notes_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `lead_notes` varchar(555) NOT NULL, `attach_file` text NOT NULL, `activity` text NOT NULL, `delete_status` enum('ACTIVE') NOT NULL, `created_by` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_attach_notes` -- INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (13, 16, 'Lead created on 27 march 2018, next followup to be made on 30 march 2018', '', '', '', 0, '2018-03-27 00:00:00', '0000-00-00'), (14, 16, 'Proposal of the application is attached', '1522130347GTRAC_Porposal.pdf', '', '', 0, '2018-03-27 00:00:00', '0000-00-00'), (15, 24, 'New requirement coming soon. followup needed', '', '', 'ACTIVE', 0, '2018-03-27 00:00:00', '0000-00-00'), (16, 21, 'test', '', '', 'ACTIVE', 0, '2018-03-27 00:00:00', '0000-00-00'), (17, 507, 'Logo designed but not charged. 4500. should be included in final invoice', '', '', 'ACTIVE', 0, '2018-09-24 00:00:00', '0000-00-00'), (18, 536, 'Payment will be done on 13th Dec 2018. Confirmation has been given for us for custom website development on 4 dec 2018. PO to be released on 6 dec 2018', '', '', 'ACTIVE', 0, '2018-12-05 00:00:00', '0000-00-00'), (19, 524, '12-05-2018 Changes: Modifications in Service Menu. Created 5 Mail id and sent them the Credentials. ', '', '', 'ACTIVE', 0, '2018-12-05 00:00:00', '0000-00-00'), (20, 527, '12-05-2018: Menu Bar Issue in Android is fixed and Sent SMS.', '', '', 'ACTIVE', 0, '2018-12-05 00:00:00', '0000-00-00'), (21, 247, '05-12-2018: Added CNAME (careersite.naukri.com) in Cpanel.', '', '', 'ACTIVE', 0, '2018-12-05 00:00:00', '0000-00-00'), (22, 535, '06-12-2018: Logo confirmed by client in Whatsapp.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (23, 247, '06-12-2018: Added Career menu pointing to careers.zepnur.com.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (24, 526, '05-12-2018: Changes said in Website reg Customized gauges, Featured Manufacturers. Also sent the mail reg Payment gateway documents.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (25, 524, '06-12-2018: Changes in Service Menu and sent 5 mail id credentials.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (26, 534, '05-12-2018: Client sent the photos to be uploaded.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (27, 534, '06-12-2018: Photos are uploaded and also logo is updated.', '', '', 'ACTIVE', 0, '2018-12-06 00:00:00', '0000-00-00'), (28, 537, '10-12-2018: Template design Approved. Use images that is sent by Client.', '', '', 'ACTIVE', 0, '2018-12-11 00:00:00', '0000-00-00'), (29, 404, 'client visited office. told him 25000 for e-commerce website, 4500 for returns module. plus gst he will return back in 2 days.', '', '', '', 0, '2018-12-13 00:00:00', '0000-00-00'), (30, 544, 'Dynamic Website - 5 email Id ', '', '', 'ACTIVE', 0, '2018-12-22 00:00:00', '0000-00-00'), (31, 544, 'Logo Design from Client Side', '', '', 'ACTIVE', 0, '2018-12-22 00:00:00', '0000-00-00'), (32, 545, 'Static Website - 5 pages including Logo Design', '', '', 'ACTIVE', 0, '2018-12-22 00:00:00', '0000-00-00'), (33, 542, 'Logo from Client Side', '', '', 'ACTIVE', 0, '2018-12-26 00:00:00', '0000-00-00'), (34, 540, '24/12/2018 : Template Approved', '', '', 'ACTIVE', 0, '2018-12-26 00:00:00', '0000-00-00'), (35, 545, '28-12-2018: Purchased Domain and credentials are given to Developers.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (36, 545, '9000 - Balance payment received.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (37, 546, '27-12-2018: Got approval from client for domain purchase in whatsapp.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (38, 547, '28-12-2018: Client had come to office and gave the requirements and those are shared to Developers. Approved the Domain name and purchased the domain.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (39, 547, '28-12-2018: 1 Template Shared to Client.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (40, 546, '28-12-2018: Domain Purchased. Contents are shared to Developers.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (41, 215, 'website not required (screenshot shared)', '1546003493screen shot(not required website).jpg', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (42, 210, '28-12-2018 website not required', '1546003579screen shot.jpg', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (43, 544, '28-12-2018: Contacted Client for Source file of Logo. Not yet received.', '', '', 'ACTIVE', 0, '2018-12-28 00:00:00', '0000-00-00'), (44, 219, '29/12/2018 - contacted regarding AMC through call and informed.account details shared through msg', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (45, 630, '29-12-2018 : CB after 12', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (46, 629, '29-12-2018 : NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (47, 626, '', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (48, 626, '29/12/2018 : NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (49, 623, '29/12/2018 : NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (50, 621, '29/12/2018: NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (51, 619, '29/12/2018 : NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (52, 619, '29/12/2018: CB after 1.30PM', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (53, 615, '29/12/2018: NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (54, 254, '29/12/2018: FOR AMC Renewal mail Sent', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (55, 265, '29/12/2018: AMC Renewal shared through mail', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (56, 82, '29/12/2018 : AMC Renewal shared through Email', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (57, 545, '29-12-2018: Shared the Email id Credentials to Client. ', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (58, 238, '29/12/2018: Domain and Hosting from Client side so we are not charging any amount for AMC in Further', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (59, 160, '29/12/2018: Ajay sir spoked regarding AMC Renewal ( 3K + GST) - email shared(AMC)', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (60, 630, '29/12/2018: NOT REQUIRED', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (61, 623, '29/12/2018: NS', '', '', '', 0, '2018-12-29 00:00:00', '0000-00-00'), (62, 538, '29/12/2018: Balance payment regarding website Rs.4720 will be done on 31/12/2018 - nitin has to collect', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (64, 519, '29/12/2018: 3 Email ID shared through mail', '', '', 'ACTIVE', 0, '2018-12-29 00:00:00', '0000-00-00'), (65, 544, '31-12-2018: Approved Vc. ', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (66, 656, 'CW', '', '', '', 36, '2018-12-31 10:36:44', '0000-00-00'), (67, 654, 'switch off', '', '', '', 36, '2018-12-31 10:39:48', '0000-00-00'), (68, 650, 'cw', '', '', '', 36, '2018-12-31 10:47:32', '0000-00-00'), (69, 656, 'NS', '', '', '', 36, '2018-12-31 10:48:22', '0000-00-00'), (70, 648, 'CB after 4PM', '', '', '', 36, '2018-12-31 10:54:34', '0000-00-00'), (71, 647, 'CB after 2PM', '', '', '', 36, '2018-12-31 10:57:25', '0000-00-00'), (72, 537, '31/12/2018: Contacted regarding the balance payment. he msged me that I m busy CB after sometime', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (73, 519, '31/12/2018: Quotation shared for SSL Certificate', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (74, 519, 'SSL Certificate Quotation PDF', '1546235297Quotation_ragavendra(SSL Certificate).pdf', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (75, 538, '31/12/2018: Contacted Regarding balance Payment and shared NUmber - tez', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (76, 646, 'NS', '', '', '', 36, '2018-12-31 11:24:21', '0000-00-00'), (77, 645, 'App - Wholesale distribution for chocolate business, Executive to meet in Mysore on 1/1/2019', '', '', '', 36, '2018-12-31 11:30:56', '0000-00-00'), (78, 643, 'Not Required', '', '', '', 36, '2018-12-31 11:31:47', '0000-00-00'), (79, 640, 'NS', '', '', '', 36, '2018-12-31 11:35:38', '0000-00-00'), (80, 642, 'Informed to contact on after 1/3/2019 (3 months)', '', '', '', 36, '2018-12-31 11:38:49', '0000-00-00'), (81, 657, 'The client will share the link he needs the same.\r\nBasic website - interior design(10K - 20K amount quote)\r\n', '', '', '', 36, '2018-12-31 11:51:17', '0000-00-00'), (82, 629, '31/12/2018: Contacted Regarding Quotation shared infomed to CB after 2.00PM', '', '', '', 36, '2018-12-31 11:59:00', '0000-00-00'), (83, 82, 'CW', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (84, 82, '31/12/2018: Contacted regarding AMC Renewal (Ajay Sir number shared)', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (85, 254, '31/12/2018: Contacted regarding AMC Renewal( ajay sir shared )', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (86, 40, '31/12/2018: NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (87, 40, '31/12/2018: Contacted Regarding AMC Renewal', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (88, 160, '31/12/2018: Contacted Regarding AMC Renewal but NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (89, 232, '31/12/2018: Contacted Regarding AMC Renewal but NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (90, 242, '31/12/2018: Contacted regarding AMC Renewal But NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (91, 82, '31/12/2018: NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (92, 265, '31/12/2018: Called regarding AMC Renewal but NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (93, 525, '31/12/2018: Regarding balance payment but NS', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (94, 219, '31/12/2018: contacted regarding AMC Renewal - website not required (received msg from this number - 9448721138)', '1546240611Scrren shot(website not required).jpg', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (95, 597, 'Contacted regarding Quotation shared but he said me the voice msg through watsapp - need some time', '1546240919Proposal for Applications Development rafi.pdf', '', '', 36, '2018-12-31 12:51:59', '0000-00-00'), (96, 623, 'Switch off', '', '', '', 36, '2018-12-31 12:53:00', '0000-00-00'), (97, 658, 'NS', '', '', '', 36, '2018-12-31 12:56:05', '0000-00-00'), (98, 621, 'E-commerce website( Basic) - informed to contact on 2/1/2019 - Quote - 25K', '', '', '', 36, '2018-12-31 12:58:23', '0000-00-00'), (99, 615, 'mobile service - Basic website (8K) - Executive to meet at 31/12/2018', '', '', '', 36, '2018-12-31 13:06:28', '0000-00-00'), (100, 525, '31/12/2018: Regarding balance payment but NS , msg through watsapp', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (101, 346, 'CF', '', '', '', 36, '2018-12-31 13:19:46', '0000-00-00'), (102, 346, 'Informed to contact on 7/1/2019', '', '', '', 36, '2018-12-31 13:27:20', '0000-00-00'), (103, 660, 'B', '', '', '', 36, '2018-12-31 13:33:12', '0000-00-00'), (104, 658, 'boutique - Static,(7K) dynamic(12K), payment gateway(3K) - client will CB ', '', '', '', 36, '2018-12-31 13:39:47', '0000-00-00'), (105, 657, 'regarding link reference but NS', '', '', '', 36, '2018-12-31 13:41:21', '0000-00-00'), (106, 656, 'NS', '', '', '', 36, '2018-12-31 13:43:27', '0000-00-00'), (107, 661, 'Only Email', '', '', '', 36, '2018-12-31 13:45:05', '0000-00-00'), (108, 654, 'Switch off', '', '', '', 36, '2018-12-31 13:50:57', '0000-00-00'), (109, 650, 'CW', '', '', '', 36, '2018-12-31 13:52:44', '0000-00-00'), (110, 660, 'Not Required\r\n\r\n', '', '', '', 36, '2018-12-31 16:00:06', '0000-00-00'), (111, 608, 'CB after 6PM ', '', '', '', 36, '2018-12-31 16:05:24', '0000-00-00'), (112, 664, 'NS', '', '', '', 36, '2018-12-31 16:10:51', '0000-00-00'), (113, 664, 'she will msg another number . ', '', '', '', 36, '2018-12-31 16:34:12', '0000-00-00'), (114, 544, '31-12-2018: Domain name is confirmed though whatsapp.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (115, 547, '31-12-2018: Template and Logo Approved. Contents and cpanel credentials are shared to Developers.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (116, 608, 'NS', '', '', '', 36, '2018-12-31 17:59:30', '0000-00-00'), (117, 545, '31-12-2018: Shared the images and contact details to Developers.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (118, 546, '31-12-2018: Shared the Cpanel Credentials to the Developers and the Website is Up. Sent the Mail id Credentials to the Client.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (119, 542, '31-12-2018: Domain name confirmed by client through Whatsapp.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (120, 536, '31-12-2018: Received the Contents from client and are shared to Developers.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (121, 507, '31-12-2018: Created SMS login and shared API. Shared the letterhead to client.', '', '', 'ACTIVE', 0, '2018-12-31 00:00:00', '0000-00-00'), (122, 669, 'NS', '', '', '', 36, '2019-01-02 10:14:14', '0000-00-00'), (123, 667, 'NS', '', '', '', 36, '2019-01-02 10:15:11', '0000-00-00'), (124, 666, 'B', '', '', '', 36, '2019-01-02 10:16:22', '0000-00-00'), (126, 671, 'Tours and travels - executive to meet on 2/1/2019 at 2.30PM', '', '', '', 36, '2019-01-02 10:24:38', '0000-00-00'), (127, 537, 'small changes to be updated on the website. (images). he will mail the requirements in 2nd half. once work done payment will be done today', '', '', 'ACTIVE', 0, '2019-01-02 00:00:00', '0000-00-00'), (128, 675, 'CW', '', '', '', 36, '2019-01-02 11:06:51', '0000-00-00'), (129, 676, 'NS', '', '', '', 36, '2019-01-02 11:08:46', '0000-00-00'), (130, 677, 'CW', '', '', '', 36, '2019-01-02 11:10:27', '0000-00-00'), (131, 678, 'NR', '', '', '', 36, '2019-01-02 11:13:47', '0000-00-00'), (132, 679, 'Not Required', '', '', '', 36, '2019-01-02 11:24:44', '2019-01-03'), (133, 677, 'The client will visit on 2/1/2019', '', '', '', 36, '2019-01-02 11:34:02', '0000-00-00'), (134, 678, 'CW', '', '', '', 36, '2019-01-02 11:34:35', '0000-00-00'), (135, 680, 'Not Required', '', '', '', 36, '2019-01-02 11:36:34', '0000-00-00'), (136, 681, 'B', '', '', '', 36, '2019-01-02 11:40:51', '0000-00-00'), (138, 682, 'switch off', '', '', '', 36, '2019-01-02 11:43:17', '0000-00-00'), (139, 160, '2/1/2019: AMC payment done 3K + GST (3540) for the year 2018-2019 in the date of 1/1/2019', '', '', 'ACTIVE', 0, '2019-01-02 00:00:00', '0000-00-00'), (140, 659, 'web proposal shared', '1546415283Web Design for srinivas.pdf', '', '', 36, '2019-01-02 13:18:03', '0000-00-00'), (141, 682, 'Client informed to contact at 3PM', '', '', '', 36, '2019-01-02 13:20:28', '0000-00-00'), (142, 455, 'B', '', '', '', 36, '2019-01-02 13:41:05', '0000-00-00'), (143, 681, 'Client will share the Email Id ( he need Company Profile )', '', '', '', 36, '2019-01-02 13:57:39', '0000-00-00'), (145, 683, 'NR', '', '', '', 36, '2019-01-02 16:39:13', '0000-00-00'), (146, 684, 'Not Required', '', '', '', 36, '2019-01-02 16:40:07', '0000-00-00'), (147, 689, 'NS', '', '', '', 36, '2019-01-02 18:20:53', '0000-00-00'), (149, 693, 'NR', '', '', '', 36, '2019-01-02 18:52:41', '0000-00-00'), (150, 692, 'He is the marketing Executive', '', '', '', 36, '2019-01-02 18:54:32', '0000-00-00'), (151, 691, 'E-commerce proposal shared', '1546492703Proposal for E-commerce for Rahul singh.pdf', '', '', 36, '2019-01-02 18:55:37', '2019-01-03'), (152, 694, 'Not Required', '', '', '', 36, '2019-01-02 18:57:50', '0000-00-00'), (153, 695, 'Only Email', '', '', '', 36, '2019-01-02 19:31:40', '0000-00-00'), (154, 687, 'Only Email', '', '', '', 36, '2019-01-02 19:32:04', '0000-00-00'), (155, 686, 'Only Email', '', '', '', 36, '2019-01-02 19:32:22', '0000-00-00'), (156, 690, 'Only Email', '', '', '', 36, '2019-01-02 19:32:57', '0000-00-00'), (157, 696, 'Construction company - Executive to meet on 3/1/2019 after 9.00AM', '', '', '', 36, '2019-01-02 19:37:18', '0000-00-00'), (158, 685, 'Only Email', '', '', '', 36, '2019-01-02 19:59:10', '0000-00-00'), (159, 698, 'Only email', '', '', '', 36, '2019-01-03 10:12:59', '0000-00-00'), (160, 699, 'Only email', '', '', '', 36, '2019-01-03 10:15:14', '0000-00-00'), (161, 703, 'Only email', '', '', '', 36, '2019-01-03 10:21:02', '0000-00-00'), (162, 702, 'he is a website developer', '', '', '', 36, '2019-01-03 10:24:51', '0000-00-00'), (163, 701, 'service - pan card, adharcard same as this website', '', '', '', 36, '2019-01-03 10:41:24', '0000-00-00'), (164, 700, 'Not Required', '', '', '', 36, '2019-01-03 10:42:24', '0000-00-00'), (165, 697, 'Not Required', '', '', '', 36, '2019-01-03 10:44:06', '0000-00-00'), (166, 691, 'B', '', '', '', 36, '2019-01-03 10:49:58', '0000-00-00'), (167, 691, 'he will inform subbu sir regarding this', '', '', '', 36, '2019-01-03 11:20:33', '0000-00-00'), (168, 693, 'Not Required - JOB', '', '', '', 36, '2019-01-03 11:38:34', '0000-00-00'), (169, 689, 'CW', '', '', '', 36, '2019-01-03 11:42:41', '0000-00-00'), (170, 683, 'Not Required\r\n', '', '', '', 36, '2019-01-03 11:43:53', '0000-00-00'), (171, 704, 'website not required', '', '', '', 36, '2019-01-03 11:50:05', '0000-00-00'), (172, 676, 'NS', '', '', '', 36, '2019-01-03 11:51:18', '0000-00-00'), (173, 675, 'number not in exist', '', '', '', 36, '2019-01-03 11:52:33', '0000-00-00'), (174, 705, 'Not Required\r\n', '', '', '', 36, '2019-01-03 12:12:59', '0000-00-00'), (175, 706, 'CF', '', '', '', 36, '2019-01-03 12:16:49', '0000-00-00'), (176, 674, 'It - backend work - nithin number shared', '', '', '', 36, '2019-01-03 12:17:42', '0000-00-00'), (177, 689, 'CW', '', '', '', 36, '2019-01-03 12:28:49', '0000-00-00'), (178, 707, 'EXecutive to meet at 3/1/2019 at 12.30PM', '', '', '', 36, '2019-01-03 12:32:34', '0000-00-00'), (179, 708, 'CW', '', '', '', 36, '2019-01-03 12:39:00', '0000-00-00'), (180, 709, 'Security and Manpower service - Executive to meet at 11 in ulsoor on 4/1/2019', '', '', '', 36, '2019-01-03 12:46:40', '0000-00-00'), (181, 712, 'Dynamic Website - Executive to meet on 3/1/2019 at 4PM ', '', '', '', 36, '2019-01-03 13:04:09', '0000-00-00'), (182, 710, 'Not Required', '', '', '', 36, '2019-01-03 13:06:18', '0000-00-00'), (183, 548, '3/1/2019: advance payment of Rs.13200 Received', '', '', 'ACTIVE', 24, '2019-01-03 00:00:00', '2019-02-04'), (185, 537, '3/1/2019: Payment of RS.10,000 Received Balance 2520', '', '', 'ACTIVE', 0, '2019-01-03 00:00:00', '0000-00-00'), (186, 713, 'Only Email', '', '', '', 36, '2019-01-03 13:27:09', '0000-00-00'), (187, 707, 'subbu sir visited proposal shared', '1546509409Web Design for Meghachandra.pdf', '', '', 36, '2019-01-03 15:26:49', '0000-00-00'), (188, 720, 'Only email', '', '', '', 36, '2019-01-03 15:45:35', '0000-00-00'), (189, 719, 'Not Required', '', '', '', 36, '2019-01-03 16:25:05', '0000-00-00'), (190, 718, 'Switch off', '', '', '', 36, '2019-01-03 16:26:36', '0000-00-00'), (191, 721, 'Not Required', '', '', '', 36, '2019-01-03 16:37:47', '0000-00-00'), (192, 725, 'Only email', '', '', '', 36, '2019-01-03 18:26:40', '0000-00-00'), (193, 724, 'NS', '', '', '', 36, '2019-01-03 18:28:39', '0000-00-00'), (194, 723, 'CW', '', '', '', 36, '2019-01-03 18:29:13', '0000-00-00'), (195, 722, 'he is a website designer', '', '', '', 36, '2019-01-03 18:30:31', '0000-00-00'), (196, 718, 'switch off', '', '', '', 36, '2019-01-03 18:31:08', '0000-00-00'), (197, 715, 'switch off', '', '', '', 36, '2019-01-03 18:31:39', '0000-00-00'), (198, 714, 'Not required', '', '', '', 36, '2019-01-03 18:33:17', '0000-00-00'), (199, 723, 'client will revert back', '', '', '', 36, '2019-01-03 18:34:11', '0000-00-00'), (200, 723, 'Reference website shared ', '', '', '', 36, '2019-01-03 18:39:50', '0000-00-00'), (201, 677, 'B', '', '', '', 36, '2019-01-03 18:44:13', '0000-00-00'), (202, 708, 'NS', '', '', '', 36, '2019-01-03 18:45:47', '0000-00-00'), (203, 706, 'Static Website- client will CB', '', '', '', 36, '2019-01-03 18:55:01', '0000-00-00'), (204, 708, 'Not Required', '', '', '', 36, '2019-01-03 18:56:17', '0000-00-00'), (205, 689, 'B', '', '', '', 36, '2019-01-03 18:58:49', '0000-00-00'), (206, 682, 'NR', '', '', '', 36, '2019-01-03 18:59:44', '0000-00-00'), (207, 678, 'Switch off', '', '', '', 36, '2019-01-03 19:02:31', '0000-00-00'), (208, 673, 'Cb on 4/1/2019', '', '', '', 36, '2019-01-03 19:03:59', '0000-00-00'), (209, 672, 'Not Required', '', '', '', 36, '2019-01-03 19:12:04', '0000-00-00'), (210, 670, 'Only email', '', '', '', 36, '2019-01-03 19:12:39', '0000-00-00'), (211, 669, 'Cb on 7/1/2019', '', '', '', 36, '2019-01-03 19:14:27', '0000-00-00'), (212, 665, 'Lost lead', '', '', '', 36, '2019-01-03 19:15:01', '0000-00-00'), (213, 663, 'Only email', '', '', '', 36, '2019-01-03 19:15:30', '0000-00-00'), (214, 662, 'Only email', '', '', '', 36, '2019-01-03 19:16:04', '0000-00-00'), (215, 652, 'Only email', '', '', '', 36, '2019-01-03 19:17:13', '0000-00-00'), (216, 731, 'Informed to visit mysore office on 8/1/2019 for Barcode Computer Software Dealers', '', '', '', 36, '2019-01-04 10:34:11', '0000-00-00'), (217, 182, 'Invoice shared for hosting', '1546580425Invoice_arjun Ventures.pdf', '', 'ACTIVE', 36, '2019-01-04 11:10:25', '0000-00-00'), (218, 546, 'mail sent regarding Balance payment', '', '', 'ACTIVE', 36, '2019-01-04 11:11:31', '0000-00-00'), (219, 732, 'CW', '', '', '', 36, '2019-01-04 11:15:27', '0000-00-00'), (220, 733, 'NOT Required (JOB)', '', '', '', 36, '2019-01-04 11:18:00', '0000-00-00'), (221, 730, 'matrimonial website - he wants the domain to be transferred from .com to .in - already website there', '', '', '', 36, '2019-01-04 11:20:54', '0000-00-00'), (222, 729, 'NS', '', '', '', 36, '2019-01-04 11:21:50', '0000-00-00'), (223, 728, 'Not Enquired', '', '', '', 36, '2019-01-04 11:23:22', '0000-00-00'), (224, 734, 'CW', '', '', '', 36, '2019-01-04 11:24:57', '0000-00-00'), (225, 735, 'Number temporarily out of service', '', '', '', 36, '2019-01-04 11:27:49', '0000-00-00'), (226, 727, 'Not Reachable', '', '', '', 36, '2019-01-04 11:28:24', '0000-00-00'), (227, 727, 'Not Reachable', '', '', '', 36, '2019-01-04 11:28:27', '0000-00-00'), (228, 736, 'he had 5 static website - he want that to be done in low cost - informed to subbu sir', '', '', '', 36, '2019-01-04 11:34:51', '0000-00-00'), (229, 734, 'CW', '', '', '', 36, '2019-01-04 11:52:30', '0000-00-00'), (230, 726, 'Not Required', '', '', '', 36, '2019-01-04 12:14:28', '0000-00-00'), (231, 707, 'CW', '', '', '', 36, '2019-01-04 12:15:26', '0000-00-00'), (232, 724, 'Not Required', '', '', '', 36, '2019-01-04 12:24:49', '0000-00-00'), (233, 691, 'he will contact subbu sir', '', '', '', 36, '2019-01-04 12:26:31', '0000-00-00'), (234, 689, 'NS', '', '', '', 36, '2019-01-04 12:30:34', '0000-00-00'), (235, 737, 'Not Required', '', '', '', 36, '2019-01-04 12:30:58', '0000-00-00'), (236, 677, 'NS', '', '', '', 36, '2019-01-04 12:35:22', '2019-01-04'), (237, 676, 'NS', '', '', '', 36, '2019-01-04 12:37:12', '0000-00-00'), (238, 668, 'Only email', '', '', '', 36, '2019-01-04 13:00:32', '0000-00-00'), (239, 701, 'CW', '', '', '', 36, '2019-01-04 13:17:47', '0000-00-00'), (240, 666, 'NS', '', '', '', 36, '2019-01-04 13:19:41', '0000-00-00'), (241, 673, 'Client will call back when he required', '', '', '', 36, '2019-01-04 13:21:03', '0000-00-00'), (242, 664, 'Not Required', '', '', '', 36, '2019-01-04 13:21:55', '0000-00-00'), (243, 741, 'Only Email', '', '', '', 36, '2019-01-04 15:21:25', '0000-00-00'), (244, 738, 'Not Required', '', '', '', 36, '2019-01-04 15:40:00', '0000-00-00'), (245, 666, 'Not Required', '', '', '', 36, '2019-01-04 15:52:01', '0000-00-00'), (246, 743, 'Not Required', '', '', '', 36, '2019-01-04 15:53:09', '0000-00-00'), (247, 740, 'security and man power service - Executive to meet on 5/1/2019\r\n', '', '', '', 36, '2019-01-04 16:09:39', '0000-00-00'), (248, 739, 'logo and website - Executive to meet at 4/1/2019', '', '', '', 36, '2019-01-04 16:10:49', '0000-00-00'), (249, 734, 'CF', '', '', '', 36, '2019-01-04 16:35:06', '0000-00-00'), (250, 732, 'NS', '', '', '', 36, '2019-01-04 16:36:19', '0000-00-00'), (251, 744, 'CW', '', '', '', 36, '2019-01-04 16:38:48', '0000-00-00'), (252, 649, 'Not Required', '', '', '', 36, '2019-01-04 16:41:28', '0000-00-00'), (253, 744, 'Company profile shared', '', '', '', 36, '2019-01-04 16:52:25', '0000-00-00'), (254, 706, 'B', '', '', '', 36, '2019-01-04 17:07:08', '0000-00-00'), (255, 706, 'Not Required', '', '', '', 36, '2019-01-04 17:07:48', '0000-00-00'), (256, 682, 'Not Required', '', '', '', 36, '2019-01-04 17:09:13', '0000-00-00'), (257, 655, 'Not Required', '', '', '', 36, '2019-01-04 17:10:11', '0000-00-00'), (258, 681, 'not required', '', '', '', 36, '2019-01-04 17:10:47', '0000-00-00'), (259, 651, 'NS', '', '', '', 36, '2019-01-04 17:11:53', '0000-00-00'), (260, 650, 'B', '', '', '', 36, '2019-01-04 17:12:48', '0000-00-00'), (261, 648, 'Switch off', '', '', '', 36, '2019-01-04 17:13:24', '0000-00-00'), (262, 647, 'informed to contact later', '', '', '', 36, '2019-01-04 17:14:43', '0000-00-00'), (263, 648, 'CB at 7 ', '', '', '', 36, '2019-01-04 17:16:32', '0000-00-00'), (264, 646, 'NS', '', '', '', 36, '2019-01-04 17:18:32', '0000-00-00'), (265, 644, 'Only email', '', '', '', 36, '2019-01-04 17:19:25', '0000-00-00'), (266, 641, 'Not Required', '', '', '', 36, '2019-01-04 17:20:12', '0000-00-00'), (267, 639, 'Only email', '', '', '', 36, '2019-01-04 17:21:19', '0000-00-00'), (268, 634, 'Only email', '', '', '', 36, '2019-01-04 17:22:53', '0000-00-00'), (269, 247, 'Called regarding SSl certificate but NS , inormed through txt msg', '', '', 'ACTIVE', 36, '2019-01-04 18:10:57', '0000-00-00'), (270, 747, 'Only email', '', '', '', 36, '2019-01-07 10:23:53', '0000-00-00'), (271, 748, 'CB after 11AM', '', '', '', 36, '2019-01-07 10:30:18', '0000-00-00'), (272, 749, 'Only email', '', '', '', 36, '2019-01-07 10:32:13', '0000-00-00'), (273, 750, 'CB after 12PM', '', '', '', 36, '2019-01-07 10:37:34', '0000-00-00'), (274, 751, 'Not Required ( He is a web Developer) ', '', '', '', 36, '2019-01-07 10:42:05', '0000-00-00'), (275, 752, 'Tours and Travels website and APP informed to CB at 1.00PM ', '', '', '', 36, '2019-01-07 10:50:19', '0000-00-00'), (276, 753, 'Consultancy service - basic Website - CB in Eve', '', '', '', 36, '2019-01-07 10:57:08', '0000-00-00'), (277, 754, 'Only email', '', '', '', 36, '2019-01-07 10:58:55', '0000-00-00'), (278, 755, 'number is out of service', '', '', '', 36, '2019-01-07 11:00:45', '0000-00-00'), (279, 756, 'CB after 11.30AM', '', '', '', 36, '2019-01-07 11:04:16', '0000-00-00'), (280, 757, 'NS', '', '', '', 36, '2019-01-07 11:10:12', '0000-00-00'), (281, 758, 'Client will CB', '', '', '', 36, '2019-01-07 11:12:34', '0000-00-00'), (282, 759, 'Only email', '', '', '', 36, '2019-01-07 11:15:57', '0000-00-00'), (283, 760, 'Only email', '', '', '', 36, '2019-01-07 11:17:23', '0000-00-00'), (284, 761, 'NS', '', '', '', 36, '2019-01-07 11:19:42', '0000-00-00'), (285, 691, 'Cutting my call', '', '', '', 36, '2019-01-07 11:22:46', '0000-00-00'), (286, 762, 'Not Required', '', '', '', 36, '2019-01-07 11:25:44', '0000-00-00'), (287, 763, 'Only email', '', '', '', 36, '2019-01-07 11:28:35', '0000-00-00'), (288, 765, 'Only Emial', '', '', '', 36, '2019-01-07 12:00:46', '0000-00-00'), (289, 766, 'E-commerce website - leather product - Nithin number shared', '', '', '', 36, '2019-01-07 12:04:41', '0000-00-00'), (290, 767, 'NS', '', '', '', 36, '2019-01-07 12:11:19', '0000-00-00'), (291, 756, 'Skin clinic - Basic Website - Executive to meet on 7/1/2019 at 5PM', '', '', '', 36, '2019-01-07 12:14:33', '0000-00-00'), (292, 768, 'NS', '', '', '', 36, '2019-01-07 12:18:31', '0000-00-00'), (293, 769, 'Internship in Bangalore', '', '', '', 36, '2019-01-07 12:21:30', '0000-00-00'), (294, 770, 'Only email', '', '', '', 36, '2019-01-07 12:23:04', '0000-00-00'), (295, 748, 'Tours and Travells Website Client will Visit the Office today', '', '', '', 36, '2019-01-07 12:27:47', '0000-00-00'), (296, 772, 'Not Required', '', '', '', 36, '2019-01-07 12:51:52', '0000-00-00'), (297, 773, 'Not Required - Searching for some items', '', '', '', 36, '2019-01-07 12:53:48', '0000-00-00'), (298, 774, 'Number not valid', '', '', '', 36, '2019-01-07 12:56:23', '0000-00-00'), (299, 182, 'Invoice shared to ganesha Venture', '1546846571Invoice _ganesha_venture.pdf', '', 'ACTIVE', 36, '2019-01-07 13:06:11', '0000-00-00'), (300, 775, 'Not Required', '', '', '', 36, '2019-01-07 13:10:17', '0000-00-00'), (301, 776, 'NS', '', '', '', 36, '2019-01-07 13:12:00', '0000-00-00'), (302, 777, 'CW', '', '', '', 36, '2019-01-07 13:14:25', '0000-00-00'), (303, 778, 'Number not valid', '', '', '', 36, '2019-01-07 13:17:46', '0000-00-00'), (304, 779, 'CB on 8/1/2019', '', '', '', 36, '2019-01-07 13:24:30', '0000-00-00'), (305, 781, 'Not Required', '', '', '', 36, '2019-01-07 13:36:26', '0000-00-00'), (306, 776, 'CW', '', '', '', 36, '2019-01-07 13:37:26', '0000-00-00'), (307, 776, 'Informed to CB at 6PM', '', '', '', 36, '2019-01-07 13:38:02', '0000-00-00'), (308, 780, 'NS', '', '', '', 36, '2019-01-07 13:38:53', '0000-00-00'), (309, 783, ' Not Required', '', '', '', 36, '2019-01-07 14:19:45', '0000-00-00'), (310, 780, 'Not Required', '', '', '', 36, '2019-01-07 15:07:59', '0000-00-00'), (311, 786, 'CF', '', '', '', 36, '2019-01-07 15:14:02', '0000-00-00'), (312, 346, 'Informed to contact on 16/1/2019', '', '', '', 36, '2019-01-07 15:42:48', '0000-00-00'), (313, 537, 'Cosmos changes will be given by client after 22nd of jan and balance payment of 2520 will be made later.\r\n', '', '', 'ACTIVE', 80, '2019-01-07 16:02:55', '0000-00-00'), (314, 787, 'Only email', '', '', '', 36, '2019-01-07 16:03:03', '0000-00-00'), (315, 791, 'Informed to share the company profile and links', '', '', '', 36, '2019-01-07 16:40:46', '0000-00-00'), (316, 792, 'CW', '', '', '', 36, '2019-01-07 16:45:31', '0000-00-00'), (317, 793, 'Dynamic Website - Executive to meet on 14/1/2019 at 5PM\r\n', '', '', '', 36, '2019-01-07 16:50:23', '2019-01-07'), (318, 801, 'Informed Executive to meet on 8/1/2019 ', '', '', '', 36, '2019-01-07 17:27:28', '0000-00-00'), (319, 800, 'Not Required - asking for something Querier', '', '', '', 36, '2019-01-07 17:42:48', '0000-00-00'), (320, 753, '5 - 7 pages - factory - informed to shared the Template Design and Package', '', '', '', 36, '2019-01-07 17:50:58', '0000-00-00'), (321, 799, 'Sales mail Sent - client will share the requirements', '', '', '', 36, '2019-01-07 18:22:22', '0000-00-00'), (322, 802, 'E-commerce website - Executive to meet on 8/1/2019 at 11.30AM', '', '', '', 36, '2019-01-07 19:01:40', '2019-01-07'), (323, 803, 'Only Email', '', '', '', 36, '2019-01-07 19:14:04', '0000-00-00'), (324, 799, 'He messaged me the reference link : www.bookarideworldwide.com', '', '', '', 36, '2019-01-07 19:24:27', '0000-00-00'), (325, 799, 'Contacted and shared the company profile and Reference link and inform to contact after 2.00PM\r\n', '', '', '', 36, '2019-01-08 10:06:58', '0000-00-00'), (326, 753, 'NS', '', '', '', 36, '2019-01-08 10:08:02', '0000-00-00'), (327, 807, 'Only email', '', '', '', 36, '2019-01-08 10:20:48', '0000-00-00'), (328, 808, 'Only email', '', '', '', 36, '2019-01-08 10:25:27', '0000-00-00'), (329, 810, 'Dynamic Website Executive to meet on 8/1/2019 at 2.00PM', '', '', '', 36, '2019-01-08 10:44:45', '0000-00-00'), (330, 811, 'Already design has been done in home page he need rest of the pages to be design per page 2000 has been chagred from another vendor. Executive to meet on 8/1/2019 at 2.30PM', '', '', '', 36, '2019-01-08 10:52:00', '0000-00-00'), (331, 232, 'Contacted regarding AMC Renewal and mailed him again', '', '', 'ACTIVE', 36, '2019-01-08 11:04:28', '0000-00-00'), (332, 812, 'Not Required', '', '', '', 36, '2019-01-08 11:11:37', '0000-00-00'), (333, 813, 'CB at 6PM', '', '', '', 36, '2019-01-08 11:15:27', '0000-00-00'), (334, 816, 'Only Email', '', '', '', 36, '2019-01-08 11:21:25', '0000-00-00'), (335, 818, 'Only email', '', '', '', 36, '2019-01-08 11:23:39', '0000-00-00'), (336, 748, 'He is not free today to come and meet in office Cb after 11/1/2019', '', '', '', 36, '2019-01-08 11:25:43', '0000-00-00'), (337, 819, 'CW', '', '', '', 36, '2019-01-08 11:48:32', '0000-00-00'), (338, 819, 'Dynamic Website - Executive to meet on 8/1/2019 at 5PM', '', '', '', 36, '2019-01-08 11:51:29', '0000-00-00'), (339, 753, 'Informed to Contact on 11/1/2019', '', '', '', 36, '2019-01-08 12:00:17', '0000-00-00'), (340, 799, 'Informed through the mail. Executive to meet on 8/1/2019 in afternoon', '', '', '', 36, '2019-01-08 12:06:59', '0000-00-00'), (341, 540, 'Domain transfer from client side to our account we had chared 1K + GST Extra on the total Amount', '', '', 'ACTIVE', 36, '2019-01-08 12:27:48', '0000-00-00'), (342, 820, 'NR', '', '', '', 36, '2019-01-08 12:55:50', '0000-00-00'), (343, 821, 'basic Website - Client will Visit office on 9/1/2019 in mysore', '', '', '', 36, '2019-01-08 13:14:30', '0000-00-00'), (344, 822, 'NR', '', '', '', 36, '2019-01-08 13:18:46', '0000-00-00'), (345, 507, 'Before it was testingcampusinfotech.org \r\nDomain - Renamed as https://pankajsiracademy.com/', '', '', 'ACTIVE', 36, '2019-01-08 13:33:53', '0000-00-00'), (346, 823, 'Client will CB', '', '', '', 36, '2019-01-08 13:36:39', '0000-00-00'), (347, 824, 'CW', '', '', '', 36, '2019-01-08 13:38:19', '0000-00-00'), (348, 825, '', '', '', '', 36, '2019-01-08 13:40:01', '0000-00-00'), (349, 817, 'Not Required', '', '', '', 36, '2019-01-08 13:41:05', '0000-00-00'), (350, 815, 'NS', '', '', '', 36, '2019-01-08 13:42:04', '0000-00-00'), (351, 550, 'shared 2 templates to client', '', '', 'ACTIVE', 80, '2019-01-08 14:01:37', '0000-00-00'), (352, 826, 'already website there he wants images and content to update. informed to collect credentials', '', '', '', 36, '2019-01-08 14:08:20', '0000-00-00'), (353, 546, 'Mailed regarding balance payment of RS.7000', '', '', 'ACTIVE', 36, '2019-01-08 15:14:39', '0000-00-00'), (354, 802, 'Reference theme mailed', '', '', '', 36, '2019-01-08 15:38:29', '0000-00-00'), (355, 825, 'Not Required', '', '', '', 36, '2019-01-08 16:24:01', '0000-00-00'), (356, 827, 'NS', '', '', '', 36, '2019-01-08 16:46:30', '0000-00-00'), (357, 814, 'NS', '', '', '', 36, '2019-01-08 16:49:33', '0000-00-00'), (358, 809, 'NS', '', '', '', 36, '2019-01-08 16:50:26', '0000-00-00'), (359, 814, 'Not Required', '', '', '', 36, '2019-01-08 17:32:41', '0000-00-00'), (360, 806, 'Not required', '', '', '', 36, '2019-01-08 17:54:28', '0000-00-00'), (361, 804, 'Not Required', '', '', '', 36, '2019-01-08 17:56:34', '0000-00-00'), (362, 798, 'Not Required', '', '', '', 36, '2019-01-08 17:58:20', '0000-00-00'), (363, 799, 'Web proposal shared', '1546951297Web Design for V.S. Bilgi.pdf', '', '', 36, '2019-01-08 18:11:37', '0000-00-00'), (364, 802, 'B', '', '', '', 36, '2019-01-08 18:13:52', '0000-00-00'), (365, 797, 'Client Will CB', '', '', '', 36, '2019-01-08 18:14:28', '0000-00-00'), (366, 796, 'Reference website shared .', '', '', '', 36, '2019-01-08 18:23:04', '0000-00-00'), (367, 796, 'The client will Come and Meet in Bangalore Office on 12/1/2019', '', '', '', 36, '2019-01-08 18:26:28', '0000-00-00'), (368, 813, 'Children play Home - Company profile and Link shared informed o contact on 9/1/2019', '', '', '', 36, '2019-01-08 18:31:48', '0000-00-00'), (369, 828, 'NS', '', '', '', 36, '2019-01-08 18:34:50', '0000-00-00'), (371, 828, 'Executive to meet on 9/1/2019 at 12.30', '', '', '', 36, '2019-01-08 18:48:00', '0000-00-00'), (372, 813, 'Client will CB today EVE', '', '', '', 36, '2019-01-09 10:05:27', '0000-00-00'), (373, 831, 'Only email', '', '', '', 36, '2019-01-09 10:15:46', '0000-00-00'), (374, 833, 'Only Email', '', '', '', 36, '2019-01-09 10:17:51', '0000-00-00'), (375, 834, 'Only Email', '', '', '', 36, '2019-01-09 10:19:21', '0000-00-00'), (376, 835, 'He is a website Developer', '', '', '', 36, '2019-01-09 10:29:27', '0000-00-00'), (377, 832, 'NS', '', '', '', 36, '2019-01-09 10:30:44', '0000-00-00'), (378, 830, 'Not Required', '', '', '', 36, '2019-01-09 10:35:38', '0000-00-00'), (379, 829, 'NR', '', '', '', 36, '2019-01-09 10:37:20', '0000-00-00'), (380, 790, 'B', '', '', '', 36, '2019-01-09 10:53:07', '0000-00-00'), (381, 789, 'he will mail the requirements.mail Id shared', '', '', '', 36, '2019-01-09 11:01:39', '0000-00-00'), (382, 795, 'Not Required', '', '', '', 36, '2019-01-09 11:03:26', '0000-00-00'), (383, 794, 'B', '', '', '', 36, '2019-01-09 11:04:25', '0000-00-00'), (384, 788, 'CW', '', '', '', 36, '2019-01-09 11:05:09', '0000-00-00'), (385, 785, 'Not Required', '', '', '', 36, '2019-01-09 11:10:30', '0000-00-00'), (386, 776, 'Informed to CB at 6PM', '', '', '', 36, '2019-01-09 11:11:43', '0000-00-00'), (387, 784, 'NS', '', '', '', 36, '2019-01-09 11:12:09', '0000-00-00'), (388, 794, 'Not Required', '', '', '', 36, '2019-01-09 11:16:39', '0000-00-00'), (389, 782, 'CB at 12.30PM', '', '', '', 36, '2019-01-09 11:17:56', '0000-00-00'), (390, 771, 'JOB', '', '', '', 36, '2019-01-09 11:19:25', '0000-00-00'), (391, 764, 'Not Required', '', '', '', 36, '2019-01-09 11:20:16', '0000-00-00'), (392, 745, 'Not Required', '', '', '', 36, '2019-01-09 11:21:30', '0000-00-00'), (393, 836, 'Only email', '', '', '', 36, '2019-01-09 11:27:11', '0000-00-00'), (394, 788, 'Client will CB', '', '', '', 36, '2019-01-09 12:02:30', '0000-00-00'), (395, 832, 'Informed to CB 1.30.', '', '', '', 36, '2019-01-09 12:13:54', '0000-00-00'), (396, 829, 'CF', '', '', '', 36, '2019-01-09 12:15:27', '0000-00-00'), (397, 827, 'Informed to share the company profile and reference link', '', '', '', 36, '2019-01-09 12:17:10', '0000-00-00'), (398, 827, 'shared', '', '', '', 36, '2019-01-09 12:21:06', '0000-00-00'), (399, 824, 'B', '', '', '', 36, '2019-01-09 12:22:07', '0000-00-00'), (400, 822, 'Not Required', '', '', '', 36, '2019-01-09 12:22:58', '0000-00-00'), (401, 821, 'B', '', '', '', 36, '2019-01-09 12:24:35', '0000-00-00'), (402, 837, 'He had a domain and hosting only Developing - informed to contact at 3PM', '', '', '', 36, '2019-01-09 12:39:56', '0000-00-00'), (403, 815, 'Not Required', '', '', '', 36, '2019-01-09 12:41:46', '0000-00-00'), (404, 809, 'Not Required', '', '', '', 36, '2019-01-09 12:43:21', '0000-00-00'), (405, 797, 'he needs an internship in Mysore address shared', '', '', '', 36, '2019-01-09 12:47:31', '0000-00-00'), (406, 731, 'Client visited mysore office - 50K', '', '', '', 36, '2019-01-09 12:49:46', '0000-00-00'), (407, 838, 'Only Email', '', '', '', 36, '2019-01-09 13:25:43', '0000-00-00'), (408, 841, 'Only Email', '', '', '', 36, '2019-01-09 13:38:30', '0000-00-00'), (409, 842, 'Not Required - he is a designer', '', '', '', 36, '2019-01-09 13:41:12', '0000-00-00'), (410, 840, 'dynamic Website - domain, hosting already there - he want Design part - Company Profile and Link shared', '', '', '', 36, '2019-01-09 13:44:19', '0000-00-00'), (411, 843, 'NR', '', '', '', 36, '2019-01-09 13:47:42', '0000-00-00'), (412, 839, 'NR', '', '', '', 36, '2019-01-09 13:48:29', '0000-00-00'), (413, 832, 'interior design - Dynamic Website(Quote ) and SEo package - Company profile ', '', '', '', 36, '2019-01-09 13:53:20', '0000-00-00'), (414, 844, 'Not Required', '', '', '', 36, '2019-01-09 14:13:55', '0000-00-00'), (415, 843, 'NR', '', '', '', 36, '2019-01-09 14:15:44', '0000-00-00'), (416, 846, 'Only Email', '', '', '', 36, '2019-01-09 16:07:36', '0000-00-00'), (417, 845, 'NS', '', '', '', 36, '2019-01-09 16:08:26', '0000-00-00'), (418, 847, 'CW', '', '', '', 36, '2019-01-09 16:21:23', '0000-00-00'), (419, 848, 'goshala- NGO - website Executive to meet on 12/1/2019', '', '', '', 36, '2019-01-09 16:29:03', '0000-00-00'), (420, 849, 'Executive to meet on 10/1/2019 at 11 AM', '', '', '', 36, '2019-01-09 16:54:26', '0000-00-00'), (421, 850, 'Only Email', '', '', '', 36, '2019-01-09 17:12:56', '0000-00-00'), (422, 858, 'Only Email', '', '', '', 36, '2019-01-10 10:00:53', '0000-00-00'), (423, 866, 'Only email', '', '', '', 36, '2019-01-10 10:09:21', '0000-00-00'), (424, 851, 'NS', '', '', '', 36, '2019-01-10 10:18:39', '0000-00-00'), (425, 852, 'Chair repair service - Basic Website - 5K - Client will CB\r\n', '', '', '', 36, '2019-01-10 10:35:20', '0000-00-00'), (426, 853, 'Not required', '', '', '', 36, '2019-01-10 10:36:47', '0000-00-00'), (427, 854, 'NS', '', '', '', 36, '2019-01-10 10:37:53', '0000-00-00'), (428, 854, 'civil contract - Basic Website (5K)', '', '', '', 36, '2019-01-10 10:42:54', '0000-00-00'), (429, 854, 'Executive to meet at 10/1/2019 at 4.30', '', '', '', 36, '2019-01-10 10:43:41', '0000-00-00'), (430, 551, '09-01-2019: Shared Logo With Client.', '', '', 'ACTIVE', 80, '2019-01-10 10:50:30', '0000-00-00'), (431, 612, 'Client will visit the office in 2 days', '', '', '', 36, '2019-01-10 10:59:03', '0000-00-00'), (432, 855, 'Only email', '', '', '', 36, '2019-01-10 11:04:09', '0000-00-00'), (433, 856, 'CB after 5.30', '', '', '', 36, '2019-01-10 11:07:17', '0000-00-00'), (435, 857, 'Consultancy Services - Executive to meet on10/1/2019 at 6000 + 2000 (logo and Website) at 6.30PM', '', '', '', 36, '2019-01-10 11:21:16', '0000-00-00'), (436, 837, 'Executive to meet at 10/1/2019 at 4PM', '', '', '', 36, '2019-01-10 12:07:23', '0000-00-00'), (437, 753, 'Executive to meet on 10/1/2019 \r\n', '', '', '', 36, '2019-01-10 12:18:45', '0000-00-00'), (438, 867, 'Not Required', '', '', '', 36, '2019-01-10 12:24:44', '0000-00-00'), (439, 868, 'Only Email', '', '', '', 36, '2019-01-10 12:33:32', '0000-00-00'), (440, 871, 'B,NR', '', '', '', 36, '2019-01-10 13:09:52', '0000-00-00'), (441, 872, 'Quotation for Dynamic Website with payment gateway shared', '', '', '', 36, '2019-01-10 15:03:51', '0000-00-00'), (442, 874, 'Job', '', '', '', 36, '2019-01-10 16:07:50', '0000-00-00'), (443, 873, 'JOB', '', '', '', 36, '2019-01-10 16:09:04', '0000-00-00'), (444, 872, 'CW', '', '', '', 36, '2019-01-10 16:09:43', '0000-00-00'), (445, 870, 'Not Required', '', '', '', 36, '2019-01-10 16:10:58', '0000-00-00'), (446, 869, 'NS', '', '', '', 36, '2019-01-10 16:12:14', '0000-00-00'), (447, 865, 'Not Required', '', '', '', 36, '2019-01-10 16:34:32', '0000-00-00'), (448, 875, 'Not Required ( Industrial Visit) ', '', '', '', 36, '2019-01-10 16:37:08', '0000-00-00'), (449, 864, 'NS', '', '', '', 36, '2019-01-10 16:41:57', '0000-00-00'), (450, 863, 'Number not valid', '', '', '', 36, '2019-01-10 16:44:11', '0000-00-00'), (451, 862, 'CB after 7 PM', '', '', '', 36, '2019-01-10 16:45:52', '0000-00-00'), (452, 861, 'NS', '', '', '', 36, '2019-01-10 16:47:20', '0000-00-00'), (453, 860, 'Link shared price to Quote', '', '', '', 36, '2019-01-10 17:09:21', '0000-00-00'), (454, 872, 'CW', '', '', '', 36, '2019-01-10 17:15:59', '0000-00-00'), (455, 876, 'Number not valid', '', '', '', 36, '2019-01-10 17:23:16', '2019-01-10'), (456, 859, 'NS', '', '', '', 36, '2019-01-10 17:25:36', '0000-00-00'), (457, 877, 'Not Required ( Enquired from Personal loan ) ', '', '', '', 36, '2019-01-10 17:27:47', '0000-00-00'), (458, 856, 'CB after 6.30PM', '', '', '', 36, '2019-01-10 17:28:59', '0000-00-00'), (459, 852, 'Contact on 18/1/2019', '', '', '', 36, '2019-01-10 17:31:13', '0000-00-00'), (460, 880, 'Complete Redesign of the Website - Executive to meet on 11/1/2019 at 9.30AM', '', '', '', 36, '2019-01-10 17:39:22', '0000-00-00'), (461, 881, 'JOB', '', '', '', 36, '2019-01-10 17:43:36', '0000-00-00'), (462, 553, 'advanced 3540 paid through check', '1547126236Advance check ( SBI).jpg', '', 'ACTIVE', 36, '2019-01-10 18:45:51', '2019-01-10'), (464, 883, 'dfgdfgdfgdfg', '', '', '', 1, '2019-01-10 19:01:37', '0000-00-00'), (465, 554, 'The advance of Rs.5500 Received - Cash ( Nithin )', '', '', 'ACTIVE', 36, '2019-01-11 11:42:43', '0000-00-00'), (466, 556, 'Advance - 3500 received - Cash (nithin)', '', '', 'ACTIVE', 36, '2019-01-11 13:11:09', '0000-00-00'), (467, 889, 'NS', '', '', '', 36, '2019-01-11 13:20:12', '0000-00-00'), (468, 891, 'Only Email', '', '', '', 36, '2019-01-11 13:21:13', '0000-00-00'), (469, 893, 'NS', '', '', '', 36, '2019-01-11 13:24:04', '0000-00-00'), (470, 892, 'NS', '', '', '', 36, '2019-01-11 13:25:34', '0000-00-00'), (471, 890, 'NS', '', '', '', 36, '2019-01-11 13:26:59', '0000-00-00'), (472, 888, 'NS', '', '', '', 36, '2019-01-11 13:28:03', '0000-00-00'), (473, 894, 'Only Email', '', '', '', 36, '2019-01-11 13:33:11', '0000-00-00'), (474, 887, 'NOT Required', '', '', '', 36, '2019-01-11 13:34:59', '0000-00-00'), (475, 886, 'NS', '', '', '', 36, '2019-01-11 13:35:48', '0000-00-00'), (476, 885, '2 website - basic and E-commerce website client will visit the office on 14/1/2019', '', '', '', 36, '2019-01-11 13:43:49', '0000-00-00'), (477, 890, 'CB on 12/1/2019', '', '', '', 36, '2019-01-11 13:46:41', '0000-00-00'), (478, 884, 'Not Required', '', '', '', 36, '2019-01-11 13:47:58', '0000-00-00'), (479, 888, 'Dynamic Website - Redesign , company profile shared. CB in EVE', '', '', '', 36, '2019-01-11 13:53:32', '0000-00-00'), (480, 872, 'Informed to contact on 14/1/2019 ', '', '', '', 36, '2019-01-11 13:58:30', '0000-00-00'), (481, 880, 'Informed to contact in eve', '', '', '', 36, '2019-01-11 13:59:13', '0000-00-00'), (482, 895, 'CB', '', '', '', 36, '2019-01-11 14:04:17', '0000-00-00'), (483, 791, 'B', '', '', '', 36, '2019-01-11 14:07:11', '0000-00-00'), (484, 896, 'Only Email', '', '', '', 36, '2019-01-11 15:40:22', '0000-00-00'), (485, 897, 'Only Email', '', '', '', 36, '2019-01-11 15:42:13', '0000-00-00'), (486, 892, 'E-commerce website - Executive to meet on 12/1/2019 at 10.00AM', '', '', '', 36, '2019-01-11 17:01:38', '0000-00-00'), (487, 899, 'Only Email', '', '', '', 36, '2019-01-11 17:20:46', '0000-00-00'), (488, 900, 'e-commerce website ', '', '', '', 36, '2019-01-11 17:37:42', '0000-00-00'), (489, 900, 'e-commerce website - informed to subbu sir', '', '', '', 36, '2019-01-11 17:43:44', '0000-00-00'), (490, 901, 'Consultancy Services - Executive to meet on 12/1/2019 at 11.00AM', '', '', '', 36, '2019-01-11 18:05:05', '0000-00-00'), (491, 848, 'NGO website - informed to contact on 18/1/2019', '', '', '', 36, '2019-01-11 18:34:14', '0000-00-00'), (492, 898, 'Not Required', '', '', '', 36, '2019-01-11 18:49:46', '0000-00-00'), (493, 895, 'Client will CB', '', '', '', 36, '2019-01-11 18:58:40', '0000-00-00'), (494, 902, 'waiting for the approval on 14/1/2019', '', '', '', 36, '2019-01-11 18:59:54', '0000-00-00'), (495, 893, 'NS', '', '', '', 36, '2019-01-11 19:01:13', '0000-00-00'), (496, 553, 'Template shared to client.', '', '', 'ACTIVE', 80, '2019-01-11 19:14:51', '0000-00-00'), (497, 903, 'B', '', '', '', 36, '2019-01-12 10:20:44', '0000-00-00'), (498, 904, 'NS', '', '', '', 36, '2019-01-12 10:22:59', '0000-00-00'), (499, 905, 'Only Email', '', '', '', 36, '2019-01-12 10:23:15', '0000-00-00'), (500, 906, 'Number not valid', '', '', '', 36, '2019-01-12 10:25:27', '0000-00-00'), (501, 909, 'NS', '', '', '', 36, '2019-01-12 10:44:18', '0000-00-00'), (502, 910, 'NS', '', '', '', 36, '2019-01-12 10:45:07', '0000-00-00'), (503, 908, 'Only Email', '', '', '', 36, '2019-01-12 11:08:51', '0000-00-00'), (504, 912, 'Informed to CB after 2PM', '', '', '', 36, '2019-01-12 11:13:13', '0000-00-00'), (505, 911, 'NS', '', '', '', 36, '2019-01-12 11:40:24', '0000-00-00'), (506, 893, 'Call cannot be connected', '', '', '', 36, '2019-01-12 11:47:08', '0000-00-00'), (507, 890, 'ERP application - Informed to Subbu sir\r\n', '', '', '', 36, '2019-01-12 11:58:43', '0000-00-00'), (508, 914, 'Only Email', '', '', '', 36, '2019-01-12 12:32:05', '0000-00-00'), (509, 553, 'Template approved.started with Development', '1547282681approved domain.jpg', '', 'ACTIVE', 80, '2019-01-12 12:45:45', '2019-01-12'), (510, 913, 'Cb after 3PM', '', '', '', 36, '2019-01-12 13:04:47', '0000-00-00'), (511, 915, 'Quote has to be shared', '', '', '', 36, '2019-01-12 13:29:22', '0000-00-00'), (512, 917, 'Not Required', '', '', '', 36, '2019-01-12 13:38:58', '0000-00-00'), (513, 918, 'NR', '', '', '', 36, '2019-01-12 15:41:28', '0000-00-00'), (514, 919, 'B', '', '', '', 36, '2019-01-12 15:42:15', '0000-00-00'), (515, 920, 'CB after 5.00', '', '', '', 36, '2019-01-12 15:44:23', '0000-00-00'), (516, 921, 'e-commerce website - Cb after 4.30PM', '', '', '', 36, '2019-01-12 15:57:57', '0000-00-00'), (517, 922, 'switch off', '', '', '', 36, '2019-01-12 16:03:55', '0000-00-00'), (518, 923, 'B', '', '', '', 36, '2019-01-12 16:07:04', '0000-00-00'), (519, 921, 'CB on 14/1/2019', '', '', '', 36, '2019-01-12 16:37:22', '0000-00-00'), (520, 558, 'advanced payment of RS. 10700 Received - through pay U money', '1547293051Screen shot(advance payment).jpg', '', 'ACTIVE', 36, '2019-01-12 17:07:31', '0000-00-00'), (521, 924, 'CW', '', '', '', 36, '2019-01-12 17:15:00', '0000-00-00'), (522, 925, 'NS', '', '', '', 36, '2019-01-12 17:16:03', '0000-00-00'), (523, 926, 'NS', '', '', '', 36, '2019-01-12 17:17:04', '0000-00-00'), (524, 927, 'CW', '', '', '', 36, '2019-01-12 17:17:42', '0000-00-00'), (525, 928, 'CB after 7PM\r\n', '', '', '', 36, '2019-01-12 17:19:05', '0000-00-00'), (526, 929, 'Not Required', '', '', '', 36, '2019-01-12 17:20:22', '0000-00-00'), (527, 927, 'E - commerce website - customer,service provider, admin login . he will watsapp the requirements', '', '', '', 36, '2019-01-12 18:02:41', '0000-00-00'), (528, 925, 'Not Required', '', '', '', 36, '2019-01-12 18:36:54', '0000-00-00'), (529, 932, 'Only Email', '', '', '', 36, '2019-01-14 10:03:50', '0000-00-00'), (530, 947, 'CW', '', '', '', 36, '2019-01-14 10:25:19', '0000-00-00'), (531, 946, 'Not Required', '', '', '', 36, '2019-01-14 10:26:14', '0000-00-00'), (532, 945, 'CB on 15/1/2019', '', '', '', 36, '2019-01-14 10:27:06', '0000-00-00'), (533, 944, 'CW', '', '', '', 36, '2019-01-14 10:28:43', '0000-00-00'), (534, 942, 'NS', '', '', '', 36, '2019-01-14 10:38:57', '0000-00-00'), (535, 941, 'Only Email', '', '', '', 36, '2019-01-14 10:39:20', '0000-00-00'), (536, 940, 'Only Email', '', '', '', 36, '2019-01-14 10:39:51', '0000-00-00'), (537, 939, 'B', '', '', '', 36, '2019-01-14 10:40:34', '0000-00-00'), (538, 938, 'Dynamic Website - Product - purchase directly integrate through the mail - Executive to meet on 16/1/2019', '', '', '', 36, '2019-01-14 11:03:09', '0000-00-00'), (539, 949, 'CF', '', '', '', 36, '2019-01-14 11:05:03', '0000-00-00'), (540, 872, 'Informed to contact on 14/1/2019, NS', '', '', '', 36, '2019-01-14 11:27:00', '0000-00-00'), (541, 948, 'Not Required', '', '', '', 36, '2019-01-14 11:30:35', '0000-00-00'), (542, 937, 'Not Required', '', '', '', 36, '2019-01-14 11:32:21', '0000-00-00'), (543, 936, 'NS', '', '', '', 36, '2019-01-14 11:33:48', '0000-00-00'), (544, 935, 'The client will mail the requirements through the mail. ', '', '', '', 36, '2019-01-14 11:37:40', '0000-00-00'), (545, 934, 'NS', '', '', '', 36, '2019-01-14 11:39:02', '0000-00-00'), (546, 933, 'JOB', '', '', '', 36, '2019-01-14 11:40:04', '0000-00-00'); INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (547, 931, 'CF', '', '', '', 36, '2019-01-14 11:41:03', '0000-00-00'), (548, 930, 'app - 50K Client will CB', '', '', '', 36, '2019-01-14 11:52:14', '0000-00-00'), (549, 950, 'CF', '', '', '', 36, '2019-01-14 11:54:32', '0000-00-00'), (550, 916, 'CW', '', '', '', 36, '2019-01-14 11:55:54', '0000-00-00'), (551, 916, 'Not Required', '', '', '', 36, '2019-01-14 11:57:15', '0000-00-00'), (552, 951, 'Not Required', '', '', '', 36, '2019-01-14 12:10:07', '0000-00-00'), (553, 949, 'Not Required', '', '', '', 36, '2019-01-14 12:29:28', '0000-00-00'), (554, 947, 'Event management - Cb after 2.00PM', '', '', '', 36, '2019-01-14 12:31:26', '0000-00-00'), (555, 944, 'Cb after 3.00PM', '', '', '', 36, '2019-01-14 12:33:11', '0000-00-00'), (557, 942, 'E-commerce website - Bakery - Client will Visit office before 25/1/2019', '', '', '', 36, '2019-01-14 12:39:22', '0000-00-00'), (558, 939, 'NS', '', '', '', 36, '2019-01-14 12:42:57', '0000-00-00'), (559, 952, 'Only email', '', '', '', 36, '2019-01-14 12:44:42', '0000-00-00'), (560, 558, 'Quotation shared for the Slider designs', '1547452406Quotation_syed hbr layout.pdf', '', 'ACTIVE', 36, '2019-01-14 13:23:26', '0000-00-00'), (561, 242, 'Client not picking the call , informed through watsapp regarding AMC payment', '', '', 'ACTIVE', 36, '2019-01-14 13:24:50', '0000-00-00'), (562, 953, 'website and SEO - informed to subbu sir\r\n', '', '', '', 36, '2019-01-14 13:35:44', '0000-00-00'), (563, 954, 'home appliance - Dynamic Website - domain and hosting from client side- Executive to meet on 14/1/2019 before 4PM', '', '', '', 36, '2019-01-14 13:44:14', '0000-00-00'), (564, 545, 'Executive to meet on 18/1/2019 at 4.00PM - regarding application', '', '', 'ACTIVE', 36, '2019-01-14 14:01:42', '0000-00-00'), (565, 959, 'Only email', '', '', '', 36, '2019-01-14 16:03:36', '0000-00-00'), (566, 872, 'Informed to contact on 14/1/2019, B', '', '', '', 36, '2019-01-14 16:11:58', '0000-00-00'), (567, 960, 'NS', '', '', '', 36, '2019-01-14 16:15:41', '0000-00-00'), (568, 960, 'Not Required', '', '', '', 36, '2019-01-14 16:16:16', '0000-00-00'), (569, 961, 'Bulk sms - 10,000 per month\r\n', '', '', '', 36, '2019-01-14 16:24:58', '0000-00-00'), (570, 958, 'Not Required', '', '', '', 36, '2019-01-14 16:38:35', '0000-00-00'), (571, 957, 'Not REquired', '', '', '', 36, '2019-01-14 16:45:41', '0000-00-00'), (572, 956, 'B', '', '', '', 36, '2019-01-14 16:47:18', '0000-00-00'), (573, 956, 'B', '', '', '', 36, '2019-01-14 16:47:18', '0000-00-00'), (574, 955, 'NS', '', '', '', 36, '2019-01-14 16:54:31', '0000-00-00'), (575, 962, 'Not Required', '', '', '', 36, '2019-01-14 17:17:57', '0000-00-00'), (576, 963, 'Not Required', '', '', '', 36, '2019-01-14 17:21:52', '0000-00-00'), (577, 965, 'Only email', '', '', '', 36, '2019-01-16 10:04:01', '0000-00-00'), (578, 967, 'Only email', '', '', '', 36, '2019-01-16 10:06:34', '0000-00-00'), (579, 921, 'NS', '', '', '', 36, '2019-01-16 10:11:45', '0000-00-00'), (580, 974, 'Not Required ( he is a developer )', '', '', '', 36, '2019-01-16 10:15:47', '0000-00-00'), (581, 971, 'CB after 12.30PM', '', '', '', 36, '2019-01-16 10:25:49', '0000-00-00'), (582, 972, 'Switch off', '', '', '', 36, '2019-01-16 10:27:38', '0000-00-00'), (583, 970, 'NS', '', '', '', 36, '2019-01-16 10:35:31', '0000-00-00'), (584, 969, 'Not Required', '', '', '', 36, '2019-01-16 10:37:00', '0000-00-00'), (585, 968, 'Not Required', '', '', '', 36, '2019-01-16 10:38:38', '0000-00-00'), (586, 966, 'switch off', '', '', '', 36, '2019-01-16 10:41:09', '0000-00-00'), (587, 964, 'B', '', '', '', 36, '2019-01-16 10:42:16', '0000-00-00'), (588, 989, 'CW', '', '', '', 36, '2019-01-16 11:23:23', '0000-00-00'), (589, 988, 'Not Required', '', '', '', 36, '2019-01-16 11:24:29', '0000-00-00'), (590, 987, 'Not Required', '', '', '', 36, '2019-01-16 11:26:07', '0000-00-00'), (591, 986, 'Not Required', '', '', '', 36, '2019-01-16 11:27:47', '0000-00-00'), (592, 985, 'Not Required', '', '', '', 36, '2019-01-16 11:28:49', '0000-00-00'), (593, 984, 'Only Email', '', '', '', 36, '2019-01-16 11:29:27', '0000-00-00'), (594, 983, 'B', '', '', '', 36, '2019-01-16 11:44:01', '0000-00-00'), (595, 990, 'Only email', '', '', '', 36, '2019-01-16 11:46:00', '0000-00-00'), (597, 982, 'Not required', '', '', '', 36, '2019-01-16 11:47:59', '0000-00-00'), (598, 981, 'Only Email', '', '', '', 36, '2019-01-16 11:48:46', '0000-00-00'), (599, 978, 'Not Required', '', '', '', 36, '2019-01-16 11:50:16', '0000-00-00'), (600, 980, 'Not Required', '', '', '', 36, '2019-01-16 11:52:31', '0000-00-00'), (601, 557, 'Template approved by client', '', '', 'ACTIVE', 80, '2019-01-16 12:08:26', '0000-00-00'), (602, 992, 'Informed to subbu sir', '', '', '', 36, '2019-01-16 12:16:50', '0000-00-00'), (603, 992, 'mail ID shared - Executive to meet on 18/1/2019 \r\n', '', '', '', 36, '2019-01-16 12:33:38', '0000-00-00'), (604, 993, 'Not Required', '', '', '', 36, '2019-01-16 13:42:56', '0000-00-00'), (605, 994, 'NS', '', '', '', 36, '2019-01-16 14:09:55', '0000-00-00'), (606, 556, 'Shared the Templates to client', '', '', 'ACTIVE', 80, '2019-01-16 15:29:57', '0000-00-00'), (607, 995, 'NS', '', '', '', 36, '2019-01-16 15:44:28', '0000-00-00'), (608, 996, 'website and logo- Executive to meet at 17/1/2019 at 10.00AM', '', '', '', 36, '2019-01-16 15:46:58', '0000-00-00'), (609, 182, 'Changes updated ', '', '', 'ACTIVE', 36, '2019-01-16 16:01:32', '0000-00-00'), (610, 182, 'SEO package shared', '', '', 'ACTIVE', 36, '2019-01-16 16:01:45', '0000-00-00'), (611, 991, 'NS', '', '', '', 36, '2019-01-16 16:23:12', '0000-00-00'), (612, 997, 'Not Required', '', '', '', 36, '2019-01-16 17:10:43', '0000-00-00'), (613, 921, 'NS', '', '', '', 36, '2019-01-16 17:12:04', '0000-00-00'), (614, 998, 'dynamic website - 10 pages - 5 email ID - Cb ', '', '', '', 36, '2019-01-16 17:51:03', '0000-00-00'), (615, 995, 'Ns', '', '', '', 36, '2019-01-16 17:55:52', '0000-00-00'), (616, 994, 'Not Required', '', '', '', 36, '2019-01-16 17:57:16', '0000-00-00'), (617, 991, 'Informed to contact on 17/1/2019', '', '', '', 36, '2019-01-16 17:59:48', '0000-00-00'), (618, 989, 'Not Required', '', '', '', 36, '2019-01-16 18:00:40', '0000-00-00'), (619, 983, 'Not required', '', '', '', 36, '2019-01-16 18:02:59', '0000-00-00'), (620, 977, 'Client will Cb when they need requirments', '', '', '', 36, '2019-01-16 18:06:01', '0000-00-00'), (621, 976, 'NS', '', '', '', 36, '2019-01-16 18:08:40', '0000-00-00'), (622, 975, 'startup company - basic Website - Executive to meet on 17/1/2019 at 12.00PM', '', '', '', 36, '2019-01-16 18:15:08', '0000-00-00'), (623, 972, 'NS', '', '', '', 36, '2019-01-16 18:17:58', '0000-00-00'), (624, 970, 'NS', '', '', '', 36, '2019-01-16 18:21:06', '0000-00-00'), (625, 966, 'switch off', '', '', '', 36, '2019-01-16 18:22:09', '0000-00-00'), (626, 964, 'NS', '', '', '', 36, '2019-01-16 18:25:50', '0000-00-00'), (627, 999, 'he is a website developer', '', '', '', 36, '2019-01-16 18:34:53', '0000-00-00'), (628, 1001, 'Executive to meet on 17/1/2019 at 4.00PM', '', '', '', 36, '2019-01-17 10:21:35', '0000-00-00'), (629, 1002, 'NS', '', '', '', 36, '2019-01-17 10:21:51', '0000-00-00'), (630, 1003, 'Only email', '', '', '', 36, '2019-01-17 10:23:59', '0000-00-00'), (631, 1005, 'Only email', '', '', '', 36, '2019-01-17 10:32:15', '0000-00-00'), (632, 1004, 'Only email', '', '', '', 36, '2019-01-17 10:32:44', '0000-00-00'), (633, 1002, 'Client will msg the mail ID . Company profile need to be shared', '', '', '', 36, '2019-01-17 10:36:51', '0000-00-00'), (634, 1007, 'Only email', '', '', '', 36, '2019-01-17 10:39:02', '0000-00-00'), (635, 1000, 'Only email', '', '', '', 36, '2019-01-17 10:48:30', '0000-00-00'), (636, 998, 'NS', '', '', '', 36, '2019-01-17 10:49:47', '0000-00-00'), (637, 995, 'NS', '', '', '', 36, '2019-01-17 10:51:10', '0000-00-00'), (638, 976, 'Not Required', '', '', '', 36, '2019-01-17 10:52:54', '0000-00-00'), (639, 972, 'NS', '', '', '', 36, '2019-01-17 10:54:17', '0000-00-00'), (640, 1008, 'Not Required', '', '', '', 36, '2019-01-17 10:58:52', '0000-00-00'), (641, 1010, 'CW', '', '', '', 36, '2019-01-17 11:30:20', '0000-00-00'), (642, 1009, '45K - informed to Subbu sir , Client will CB on 21/1/2019', '', '', '', 36, '2019-01-17 11:31:30', '0000-00-00'), (643, 1006, 'Only email', '', '', '', 36, '2019-01-17 11:32:03', '0000-00-00'), (644, 970, 'NS', '', '', '', 36, '2019-01-17 11:52:37', '0000-00-00'), (645, 971, 'NS', '', '', '', 36, '2019-01-17 11:56:41', '0000-00-00'), (646, 966, 'Switch off', '', '', '', 36, '2019-01-17 11:58:31', '0000-00-00'), (647, 964, 'NS', '', '', '', 36, '2019-01-17 12:01:04', '0000-00-00'), (648, 956, 'NS', '', '', '', 36, '2019-01-17 12:16:22', '0000-00-00'), (649, 1010, 'CB after 2.30PM', '', '', '', 36, '2019-01-17 12:25:39', '0000-00-00'), (650, 1011, 'Only Email', '', '', '', 36, '2019-01-17 13:29:09', '0000-00-00'), (651, 553, 'SEO package and SSL Certificate(3K + GST) mail shared', '1547714080SEO package for Ramu_ Branils Enterprise.pdf', '', 'ACTIVE', 36, '2019-01-17 14:04:40', '0000-00-00'), (652, 553, 'Balance amount of RS. 2360/- Received through pay u money', '1547714249Final Paymnet Recieved.jpg', '', 'ACTIVE', 36, '2019-01-17 14:07:29', '0000-00-00'), (653, 82, 'AMC Renewal shared through Email ', '', '', 'ACTIVE', 36, '2019-01-17 14:08:32', '0000-00-00'), (654, 265, ' AMC Renewal shared through watsapp', '', '', 'ACTIVE', 36, '2019-01-17 14:09:17', '0000-00-00'), (655, 1017, 'Single page static Website - Compnay profile and refernce link shared.\r\nExecutive to meet on 18/1/2019 at 11.00AM', '', '', '', 36, '2019-01-17 16:52:56', '0000-00-00'), (656, 1019, 'CW', '', '', '', 36, '2019-01-17 17:51:34', '0000-00-00'), (657, 1020, 'NS', '', '', '', 36, '2019-01-17 17:53:14', '0000-00-00'), (658, 1018, 'static Website - 7K - informed to contact on 18/1/2019', '', '', '', 36, '2019-01-17 18:00:13', '0000-00-00'), (659, 1015, 'Not Required', '', '', '', 36, '2019-01-17 18:05:38', '0000-00-00'), (660, 1021, 'Only Emial', '', '', '', 36, '2019-01-17 19:18:20', '0000-00-00'), (661, 1024, 'Only Email', '', '', '', 36, '2019-01-18 10:30:32', '0000-00-00'), (662, 1026, 'B', '', '', '', 36, '2019-01-18 11:26:16', '0000-00-00'), (663, 1027, 'Switch off', '', '', '', 36, '2019-01-18 11:29:41', '0000-00-00'), (664, 1028, 'Not Required', '', '', '', 36, '2019-01-18 11:32:22', '0000-00-00'), (665, 1029, 'NR', '', '', '', 36, '2019-01-18 11:34:35', '0000-00-00'), (666, 1031, 'Only Email', '', '', '', 36, '2019-01-18 11:42:07', '0000-00-00'), (667, 1032, 'E-commerce website and Logo - Executive to meet at 18/1/2019', '', '', '', 36, '2019-01-18 11:50:10', '0000-00-00'), (668, 1034, 'CF', '', '', '', 36, '2019-01-18 11:56:32', '0000-00-00'), (669, 1035, 'B', '', '', '', 36, '2019-01-18 12:04:44', '0000-00-00'), (670, 1030, 'He is a Developer', '', '', '', 36, '2019-01-18 12:08:51', '0000-00-00'), (671, 1025, 'Only Email', '', '', '', 36, '2019-01-18 12:09:45', '0000-00-00'), (672, 1023, 'Mobile app - Client will Visit the office on ', '', '', '', 36, '2019-01-18 12:17:43', '0000-00-00'), (673, 556, 'Template Approved', '', '', 'ACTIVE', 80, '2019-01-18 12:36:11', '0000-00-00'), (674, 1017, 'Quotation shared to client fro Dynamic Website - 15K', '', '', '', 36, '2019-01-18 12:54:39', '0000-00-00'), (675, 935, 'Client Enquired regarding E - comm website price informed (25K) . Client will CB when he need', '', '', '', 36, '2019-01-18 12:59:51', '0000-00-00'), (676, 1038, 'Only Email', '', '', '', 36, '2019-01-18 13:03:56', '0000-00-00'), (677, 1039, 'Only Email', '', '', '', 36, '2019-01-18 13:34:06', '0000-00-00'), (678, 1041, 'Not Required', '', '', '', 36, '2019-01-18 15:27:36', '0000-00-00'), (679, 1042, 'Client will visit the office on 19/1/2019', '', '', '', 36, '2019-01-18 15:29:42', '0000-00-00'), (680, 1043, 'Executive to meet on 18/1/2019 ', '', '', '', 36, '2019-01-18 15:31:41', '0000-00-00'), (681, 1040, 'Only Email', '', '', '', 36, '2019-01-18 15:33:57', '0000-00-00'), (682, 1037, 'Hospital management system - need software - He will Mail the Requirments', '', '', '', 36, '2019-01-18 15:38:20', '0000-00-00'), (683, 1036, 'Not Required', '', '', '', 36, '2019-01-18 15:45:16', '0000-00-00'), (684, 1022, 'CF', '', '', '', 36, '2019-01-18 15:46:17', '0000-00-00'), (685, 1014, 'App : profile shared ', '', '', '', 36, '2019-01-18 15:49:15', '0000-00-00'), (686, 1044, 'Quote fro static Website and SEO package shared', '', '', '', 36, '2019-01-18 16:03:48', '0000-00-00'), (687, 1044, 'Quote for static Website - 8K', '', '', '', 36, '2019-01-18 16:47:18', '0000-00-00'), (688, 1045, 'Company profile and Reference link shared', '', '', '', 36, '2019-01-18 17:28:12', '0000-00-00'), (689, 1046, 'CW', '', '', '', 36, '2019-01-18 18:11:27', '0000-00-00'), (690, 560, 'The advance of Rs. 4000 Cash Received from Nithin', '', '', 'ACTIVE', 36, '2019-01-18 19:00:18', '0000-00-00'), (691, 1049, 'Not Required', '', '', '', 36, '2019-01-21 10:24:51', '0000-00-00'), (692, 1050, 'SWitch off', '', '', '', 36, '2019-01-21 10:26:18', '0000-00-00'), (693, 1052, 'Only Email', '', '', '', 36, '2019-01-21 10:31:10', '0000-00-00'), (694, 1053, 'Not Required', '', '', '', 36, '2019-01-21 10:40:04', '0000-00-00'), (695, 1054, 'NR', '', '', '', 36, '2019-01-21 10:41:43', '0000-00-00'), (696, 1055, 'B', '', '', '', 36, '2019-01-21 10:44:26', '0000-00-00'), (697, 1056, 'CW', '', '', '', 36, '2019-01-21 10:45:44', '0000-00-00'), (698, 1057, 'buliding material - Executive to meet on 23/1/2019 static Website(8K)\r\n', '', '', '', 36, '2019-01-21 10:54:11', '2019-01-21'), (699, 1058, 'Not Required', '', '', '', 36, '2019-01-21 11:22:41', '0000-00-00'), (700, 1059, '5 pages - Static Website - 8K - Global Consultancy Service', '', '', '', 36, '2019-01-21 11:28:47', '0000-00-00'), (701, 1060, 'Cb after 12.00', '', '', '', 36, '2019-01-21 11:38:58', '0000-00-00'), (702, 561, 'The advance of RS. 6,000 paid', '', '', 'ACTIVE', 36, '2019-01-21 11:55:46', '2019-01-21'), (703, 1062, 'B', '', '', '', 36, '2019-01-21 11:58:41', '0000-00-00'), (704, 1064, 'CB After 1.00', '', '', '', 36, '2019-01-21 12:06:47', '0000-00-00'), (705, 1060, 'Client will share alternative number to meet Executive on 22/1/2019', '', '', '', 36, '2019-01-21 12:10:30', '0000-00-00'), (706, 1065, 'B', '', '', '', 36, '2019-01-21 12:12:17', '0000-00-00'), (707, 1066, 'Cb in eve', '', '', '', 36, '2019-01-21 12:14:21', '0000-00-00'), (708, 1067, 'Only email', '', '', '', 36, '2019-01-21 12:15:21', '0000-00-00'), (709, 1070, 'E- comm website \r\nExecutive to meet on 21/1/2019 b/w 3 - 5 PM', '', '', '', 36, '2019-01-21 12:30:08', '0000-00-00'), (710, 1071, 'CCtv, Solution - Dynamic Website - Executive to meet on 22/1/2019 ', '', '', '', 36, '2019-01-21 12:37:48', '0000-00-00'), (711, 493, 'New email id for Rs. 590. punithbadri2ecotravelsind.com', '', '', 'ACTIVE', 24, '2019-01-21 12:42:34', '2019-01-21'), (712, 1072, 'only Email', '', '', '', 36, '2019-01-21 12:58:22', '0000-00-00'), (713, 1076, 'ERP Software Developer - Executive to meet on 22/1/2019 at 11.00AM', '', '', '', 36, '2019-01-21 13:16:31', '0000-00-00'), (714, 1082, 'Only Email', '', '', '', 36, '2019-01-21 13:45:39', '0000-00-00'), (715, 1083, 'Not Required', '', '', '', 36, '2019-01-21 13:48:44', '0000-00-00'), (716, 1081, 'B', '', '', '', 36, '2019-01-21 13:50:52', '0000-00-00'), (717, 1080, 'NS', '', '', '', 36, '2019-01-21 13:52:00', '0000-00-00'), (718, 1079, 'NS', '', '', '', 36, '2019-01-21 13:53:17', '0000-00-00'), (719, 1078, 'NS', '', '', '', 36, '2019-01-21 13:54:49', '0000-00-00'), (720, 1077, 'service - pest control and - 5 to 10 (10K ) - Clinet will not pay any advance payment for the website', '', '', '', 36, '2019-01-21 14:02:02', '0000-00-00'), (721, 1075, 'Tour and travels - email ids - 1 ,Logo - Cb after 4PM', '', '', '', 36, '2019-01-21 14:12:30', '0000-00-00'), (722, 1074, 'Dynamic website design message parlor- 5 pages - Link to be shared', '', '', '', 36, '2019-01-21 14:18:50', '0000-00-00'), (723, 1085, 'Only Email', '', '', '', 36, '2019-01-21 15:58:44', '0000-00-00'), (724, 1086, 'The client will Visit the office on 22/1/2019 ', '', '', '', 36, '2019-01-21 16:14:04', '2019-01-21'), (725, 1074, 'massage parlor - Dynamic Website - Client will Visit the office on 22/1/2019 ', '', '', '', 36, '2019-01-21 16:19:02', '0000-00-00'), (726, 1075, 'CB after 4, NS', '', '', '', 36, '2019-01-21 16:30:54', '0000-00-00'), (727, 544, 'Sent the Source file of VC to Client', '', '', 'ACTIVE', 80, '2019-01-21 16:33:56', '0000-00-00'), (728, 1084, 'Not Required', '', '', '', 36, '2019-01-21 16:36:40', '0000-00-00'), (729, 540, 'Domain transferred to jayblues Godaddy.', '', '', 'ACTIVE', 80, '2019-01-21 16:36:57', '0000-00-00'), (730, 1075, 'EXecutive to meet on 22/1/2019 - already visited once for finalization', '', '', '', 36, '2019-01-21 16:42:46', '0000-00-00'), (731, 1075, 'Executive to meet on 22/1/2019 for finalization ', '', '', '', 36, '2019-01-21 16:43:17', '0000-00-00'), (732, 1073, 'NS', '', '', '', 36, '2019-01-21 16:48:10', '0000-00-00'), (733, 1013, 'Only Email', '', '', '', 36, '2019-01-21 17:01:23', '0000-00-00'), (734, 1047, 'B', '', '', '', 36, '2019-01-21 17:03:23', '0000-00-00'), (735, 1087, 'B', '', '', '', 36, '2019-01-21 17:29:29', '0000-00-00'), (736, 1088, 'Only email', '', '', '', 36, '2019-01-21 17:36:12', '0000-00-00'), (737, 1089, 'Not Required', '', '', '', 36, '2019-01-21 18:28:52', '0000-00-00'), (738, 1090, 'He is a Developer', '', '', '', 36, '2019-01-21 18:33:00', '0000-00-00'), (739, 1081, 'Not Required', '', '', '', 36, '2019-01-21 18:36:25', '0000-00-00'), (740, 1080, 'Video application - backend - and front end - Quote to be shared', '', '', '', 36, '2019-01-21 18:39:57', '0000-00-00'), (741, 1087, 'JOB', '', '', '', 36, '2019-01-21 18:40:20', '0000-00-00'), (742, 1080, 'Quote to be infomed', '', '', '', 36, '2019-01-21 18:40:51', '0000-00-00'), (743, 1063, 'Not Required', '', '', '', 36, '2019-01-21 18:41:37', '0000-00-00'), (744, 1061, 'Not Required', '', '', '', 36, '2019-01-21 18:42:02', '0000-00-00'), (745, 1051, 'Not Required', '', '', '', 36, '2019-01-21 18:43:42', '0000-00-00'), (746, 1045, 'CB on 24/1/2019', '', '', '', 36, '2019-01-21 18:48:32', '0000-00-00'), (747, 1045, 'CB on 24/1/2019', '', '', '', 36, '2019-01-21 18:48:35', '0000-00-00'), (748, 1044, 'Quote for static Website - 8K - CB on 22/1/2019', '', '', '', 36, '2019-01-21 18:49:51', '0000-00-00'), (749, 1018, 'not Required', '', '', '', 36, '2019-01-21 18:52:22', '0000-00-00'), (750, 1091, 'Not Required', '', '', '', 36, '2019-01-22 10:24:45', '0000-00-00'), (751, 1096, 'Only email', '', '', '', 36, '2019-01-22 10:37:19', '0000-00-00'), (752, 1098, 'Only email', '', '', '', 36, '2019-01-22 10:40:41', '0000-00-00'), (753, 1112, 'CW', '', '', '', 36, '2019-01-22 12:21:12', '0000-00-00'), (754, 1111, 'Address shared - Client will visit the office on 25/1/2019 - dynamic Website', '', '', '', 36, '2019-01-22 12:22:52', '0000-00-00'), (755, 1110, 'Contact on 25/1/2019', '', '', '', 36, '2019-01-22 12:24:29', '0000-00-00'), (756, 1109, 'Only emails', '', '', '', 36, '2019-01-22 12:25:28', '0000-00-00'), (757, 1108, 'Only Email', '', '', '', 36, '2019-01-22 12:26:36', '0000-00-00'), (758, 1107, 'Only Email', '', '', '', 36, '2019-01-22 12:27:42', '0000-00-00'), (759, 1106, 'Only Email', '', '', '', 36, '2019-01-22 12:28:51', '0000-00-00'), (760, 1105, 'Quote shared 65K + GST', '', '', '', 36, '2019-01-22 12:57:20', '0000-00-00'), (761, 1104, 'CB after 3.00PM', '', '', '', 36, '2019-01-22 12:58:21', '0000-00-00'), (762, 1113, 'Incoming calls banned', '', '', '', 36, '2019-01-22 13:03:03', '0000-00-00'), (763, 1112, 'Client will visit mysore office', '', '', '', 36, '2019-01-22 13:12:03', '0000-00-00'), (764, 1103, 'Not Required', '', '', '', 36, '2019-01-22 13:13:06', '0000-00-00'), (765, 1102, 'Cb after 25/1/2019', '', '', '', 36, '2019-01-22 13:14:26', '0000-00-00'), (766, 1114, 'Number not valid', '', '', '', 36, '2019-01-22 13:15:12', '0000-00-00'), (767, 1101, 'B', '', '', '', 36, '2019-01-22 13:16:04', '0000-00-00'), (768, 1100, 'Not Required', '', '', '', 36, '2019-01-22 13:17:25', '0000-00-00'), (769, 1097, 'CW', '', '', '', 36, '2019-01-22 13:18:14', '0000-00-00'), (770, 1099, 'Executive to meet on 22/1/2019 before 5PM', '', '', '', 36, '2019-01-22 13:24:45', '0000-00-00'), (771, 554, 'Balance payment - mail sent(5', '', '', 'ACTIVE', 36, '2019-01-22 14:08:55', '0000-00-00'), (772, 1121, 'Only Email', '', '', '', 36, '2019-01-22 15:55:34', '0000-00-00'), (773, 1119, 'Only email', '', '', '', 36, '2019-01-22 15:56:40', '0000-00-00'), (774, 1120, 'B', '', '', '', 36, '2019-01-22 16:25:14', '0000-00-00'), (775, 1118, 'B', '', '', '', 36, '2019-01-22 16:27:12', '0000-00-00'), (776, 1117, 'Online booking - payment - CB on 23/1/2019 ', '', '', '', 36, '2019-01-22 16:36:54', '0000-00-00'), (777, 1122, 'Advertising Company - Dynamic Website - Executive to meet on 23/1/2019 at 10AM', '', '', '', 36, '2019-01-22 17:04:22', '0000-00-00'), (778, 564, 'Advance paid to SBI rs 7000', '1548160259Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-01-22 17:58:31', '2019-01-22'), (779, 564, 'Client sheet from Nithin', '1548160157Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-01-22 17:59:17', '0000-00-00'), (780, 1127, 'Only Email', '', '', '', 36, '2019-01-23 10:19:22', '0000-00-00'), (781, 1123, 'Astrology website - Client will Visit the office on 23/1/2019 around 1PM', '', '', '', 36, '2019-01-23 10:20:41', '0000-00-00'), (782, 1126, 'NS', '', '', '', 36, '2019-01-23 10:58:24', '0000-00-00'), (783, 1125, 'Not Required', '', '', '', 36, '2019-01-23 11:08:14', '0000-00-00'), (784, 565, 'Advance paid: 5500 cash received from nithin', '1548224672Cash Slip (nithin).jpg', '', 'ACTIVE', 36, '2019-01-23 11:54:32', '0000-00-00'), (785, 565, 'Client sheet from nithin', '1548224693Clinet sheet (nithin).jpg', '', 'ACTIVE', 36, '2019-01-23 11:54:53', '0000-00-00'), (786, 1129, 'Only Email', '', '', '', 36, '2019-01-23 12:13:17', '0000-00-00'), (787, 1130, 'Event management- Client will CB on 23/1/2019 - Packages and profile shared', '', '', '', 36, '2019-01-23 12:18:23', '0000-00-00'), (788, 1131, 'Only email', '', '', '', 36, '2019-01-23 12:20:00', '0000-00-00'), (789, 1132, 'Landscaping services - Executive to meet on 23/1/2019 at 6.30PM', '', '', '', 36, '2019-01-23 12:32:18', '0000-00-00'), (790, 1128, 'Client will Visit office on 23/1/2019 ', '', '', '', 36, '2019-01-23 12:51:55', '0000-00-00'), (791, 1123, 'CB for astrology - 25/1/2019 ', '', '', '', 36, '2019-01-23 12:56:49', '0000-00-00'), (792, 1124, 'CB after 2.00PM', '', '', '', 36, '2019-01-23 13:00:01', '0000-00-00'), (793, 1116, 'Not Required', '', '', '', 36, '2019-01-23 13:03:58', '0000-00-00'), (794, 1133, 'Executive to meet at 23/1/2019 before 5 PM - Training institute', '', '', '', 36, '2019-01-23 13:26:29', '0000-00-00'), (795, 1135, 'Application - Subbu sir will Contact', '', '', '', 36, '2019-01-23 14:11:41', '0000-00-00'), (796, 1134, 'CW', '', '', '', 36, '2019-01-23 14:12:05', '0000-00-00'), (797, 1138, 'Only email', '', '', '', 36, '2019-01-23 14:24:38', '0000-00-00'), (798, 1137, 'Client will share the details to WhatsApp, Quote has to be shared', '', '', '', 36, '2019-01-23 14:28:19', '0000-00-00'), (799, 1143, 'Only Email', '', '', '', 36, '2019-01-23 16:38:34', '0000-00-00'), (800, 1144, 'Only Email\r\n', '', '', '', 36, '2019-01-23 16:43:55', '0000-00-00'), (802, 1057, 'Converted', '', '', '', 36, '2019-01-23 17:49:42', '0000-00-00'), (803, 1145, 'Not Required', '', '', '', 36, '2019-01-23 17:55:45', '0000-00-00'), (804, 1142, 'Startup company - Dynamic Website and Logo for Executive meet Cb on 24/1/2019', '', '', '', 36, '2019-01-23 18:00:19', '0000-00-00'), (805, 1146, 'Not Required', '', '', '', 36, '2019-01-23 18:01:05', '0000-00-00'), (806, 1141, 'NS', '', '', '', 36, '2019-01-23 18:02:24', '0000-00-00'), (807, 1140, 'NS', '', '', '', 36, '2019-01-23 18:03:25', '0000-00-00'), (808, 1139, 'NR', '', '', '', 36, '2019-01-23 18:04:15', '0000-00-00'), (809, 1115, 'CW', '', '', '', 36, '2019-01-23 18:05:19', '0000-00-00'), (810, 1115, 'Not Required', '', '', '', 36, '2019-01-23 18:06:02', '0000-00-00'), (811, 554, 'Final Payment received', '1548303504final Payment.jpg', '', 'ACTIVE', 36, '2019-01-24 09:48:24', '0000-00-00'), (812, 1152, 'Not Required', '', '', '', 36, '2019-01-24 09:54:16', '0000-00-00'), (813, 1151, 'B', '', '', '', 36, '2019-01-24 10:30:43', '0000-00-00'), (814, 1150, 'Only Email', '', '', '', 36, '2019-01-24 10:33:10', '0000-00-00'), (815, 1149, 'B', '', '', '', 36, '2019-01-24 10:34:27', '0000-00-00'), (816, 1148, 'Dynamic Website - Logo - Executive to meet at 24/1/2019 at 1.30PM', '', '', '', 36, '2019-01-24 10:40:50', '0000-00-00'), (817, 1147, 'Only email', '', '', '', 36, '2019-01-24 10:44:34', '0000-00-00'), (818, 1136, 'Only email', '', '', '', 36, '2019-01-24 10:45:02', '0000-00-00'), (819, 1156, 'Not Required', '', '', '', 36, '2019-01-24 11:23:10', '0000-00-00'), (820, 1155, 'CW', '', '', '', 36, '2019-01-24 11:31:34', '0000-00-00'), (821, 1159, 'Not Required', '', '', '', 36, '2019-01-24 11:37:09', '0000-00-00'), (822, 1160, 'Executive to meet on 25/1/2019 \r\n', '', '', '', 36, '2019-01-24 13:12:28', '2019-01-24'), (823, 1162, 'Only Email', '', '', '', 36, '2019-01-24 13:17:21', '0000-00-00'), (824, 546, 'Had Team Viewer session and shared the backend credentials to Client.', '', '', 'ACTIVE', 80, '2019-01-24 13:26:07', '0000-00-00'), (825, 1165, 'Redesign of the website - Executive to meet on 25/1/2019 at 5.00PM', '', '', '', 36, '2019-01-24 16:35:27', '0000-00-00'), (826, 1170, 'Not required', '', '', '', 36, '2019-01-24 16:38:58', '0000-00-00'), (827, 1171, 'Only Email', '', '', '', 36, '2019-01-24 16:40:44', '0000-00-00'), (828, 1172, 'JOB', '', '', '', 36, '2019-01-24 16:42:13', '0000-00-00'), (829, 1169, 'CW', '', '', '', 36, '2019-01-24 16:43:11', '0000-00-00'), (830, 1168, 'Only email', '', '', '', 36, '2019-01-24 16:51:15', '0000-00-00'), (831, 1167, 'NS', '', '', '', 36, '2019-01-24 16:51:54', '0000-00-00'), (832, 1166, 'Not Required', '', '', '', 36, '2019-01-24 16:53:02', '0000-00-00'), (833, 1164, 'insurance agent - Single page static Website(5K)', '', '', '', 36, '2019-01-24 17:02:05', '0000-00-00'), (834, 1163, 'Electronic installation -profile to be created', '', '', '', 36, '2019-01-24 17:05:37', '0000-00-00'), (836, 560, 'Final Payment of Rs.4000 Cash received from nithin', '', '', 'ACTIVE', 36, '2019-01-24 18:06:56', '0000-00-00'), (837, 1137, 'Client shared the details through watsapp - Quote for RS.80,000 - Informed to contact on 28/1/2019', '', '', '', 36, '2019-01-24 18:10:00', '0000-00-00'), (838, 1173, 'Not Required', '', '', '', 36, '2019-01-24 18:15:39', '0000-00-00'), (839, 1174, 'Not Required', '', '', '', 36, '2019-01-24 18:17:49', '0000-00-00'), (840, 1180, 'Switch off', '', '', '', 36, '2019-01-25 10:54:28', '0000-00-00'), (841, 1179, 'NS', '', '', '', 36, '2019-01-25 10:56:21', '0000-00-00'), (842, 1178, 'NS', '', '', '', 36, '2019-01-25 11:24:43', '0000-00-00'), (843, 1177, 'big basket like application - price Quoted around 85K ', '', '', '', 36, '2019-01-25 11:30:35', '0000-00-00'), (844, 1176, 'Not Required', '', '', '', 36, '2019-01-25 11:35:46', '0000-00-00'), (845, 1175, 'Only email', '', '', '', 36, '2019-01-25 11:36:19', '0000-00-00'), (846, 1181, 'B', '', '', '', 36, '2019-01-25 11:38:06', '0000-00-00'), (847, 1182, 'CW', '', '', '', 36, '2019-01-25 11:43:04', '0000-00-00'), (848, 1183, 'B', '', '', '', 36, '2019-01-25 11:46:44', '0000-00-00'), (849, 1184, 'basic - construction - single page website(6K) - logo - 3K\r\nExecutive to meet at 25/1/2019 at 4.00', '', '', '', 36, '2019-01-25 11:51:36', '0000-00-00'), (850, 1185, 'CB on 26/1/2019', '', '', '', 36, '2019-01-25 12:45:41', '0000-00-00'), (851, 1186, 'Only Email', '', '', '', 36, '2019-01-25 12:47:41', '0000-00-00'), (852, 1034, 'Not Required', '', '', '', 36, '2019-01-25 12:53:40', '0000-00-00'), (853, 1189, 'Not Required', '', '', '', 36, '2019-01-25 12:58:10', '0000-00-00'), (854, 1191, 'Construction company - logo(modification) - Executive to meet at 25/1/2019 ', '', '', '', 36, '2019-01-25 13:59:14', '0000-00-00'), (855, 1192, 'NS', '', '', '', 36, '2019-01-25 14:04:09', '0000-00-00'), (856, 1188, 'Only Email', '', '', '', 36, '2019-01-25 14:05:41', '0000-00-00'), (857, 1193, 'Dynamic Website - 6 pages - Executive to meet at 28/1/2019 ', '', '', '', 36, '2019-01-25 14:08:49', '0000-00-00'), (858, 1187, 'He is a developer', '', '', '', 36, '2019-01-25 14:10:14', '0000-00-00'), (859, 1197, 'NS', '', '', '', 36, '2019-01-25 14:14:25', '0000-00-00'), (860, 561, 'Shared the content for the website to Client. ', '', '', 'ACTIVE', 80, '2019-01-25 15:45:35', '0000-00-00'), (861, 564, 'Shared one template design to client.', '', '', 'ACTIVE', 80, '2019-01-25 15:52:39', '0000-00-00'), (862, 558, 'sent the mail regarding payment gateway documents', '', '', 'ACTIVE', 80, '2019-01-25 15:55:20', '0000-00-00'), (863, 1198, 'CW', '', '', '', 36, '2019-01-25 16:36:35', '0000-00-00'), (864, 1199, 'Not Required', '', '', '', 36, '2019-01-25 16:47:19', '0000-00-00'), (866, 1200, 'Only Email', '', '', '', 36, '2019-01-25 16:48:36', '0000-00-00'), (867, 1201, 'Switch off', '', '', '', 36, '2019-01-25 16:50:23', '0000-00-00'), (868, 1196, 'Not REquired', '', '', '', 36, '2019-01-25 16:51:15', '0000-00-00'), (869, 1195, 'Not Required', '', '', '', 36, '2019-01-25 16:52:24', '0000-00-00'), (870, 1194, 'Not Required', '', '', '', 36, '2019-01-25 16:53:30', '0000-00-00'), (871, 1178, 'NS', '', '', '', 36, '2019-01-25 16:54:45', '0000-00-00'), (872, 1179, 'NR', '', '', '', 36, '2019-01-25 16:56:22', '0000-00-00'), (873, 1180, 'NS', '', '', '', 36, '2019-01-25 16:57:12', '0000-00-00'), (874, 1181, 'Daily home need (flipkart, amazon) . he need application type - Executive to meet on 28/1/2019', '', '', '', 36, '2019-01-25 17:01:44', '0000-00-00'), (875, 1202, 'Only email', '', '', '', 36, '2019-01-25 17:07:54', '0000-00-00'), (876, 1182, 'Not Required', '', '', '', 36, '2019-01-25 17:09:01', '0000-00-00'), (877, 1197, 'NS', '', '', '', 36, '2019-01-25 17:10:52', '0000-00-00'), (878, 1183, 'NS', '', '', '', 36, '2019-01-25 17:32:45', '0000-00-00'), (879, 535, 'Initiated Razorpay and started with the Development', '', '', 'ACTIVE', 80, '2019-01-25 17:32:47', '0000-00-00'), (880, 1197, 'NS', '', '', '', 36, '2019-01-25 17:34:52', '2019-01-25'), (881, 1161, 'B', '', '', '', 36, '2019-01-25 17:42:10', '0000-00-00'), (882, 1158, 'CW', '', '', '', 36, '2019-01-25 17:42:56', '0000-00-00'), (883, 1158, 'SEO package shared', '', '', '', 36, '2019-01-25 18:06:18', '0000-00-00'), (884, 1203, 'Only email', '', '', '', 36, '2019-01-25 18:08:59', '0000-00-00'), (885, 1204, 'Single page static Webiste- Team viewer section tmm mng - 4166307630', '', '', '', 36, '2019-01-28 10:19:07', '0000-00-00'), (886, 1206, 'Only Email', '', '', '', 36, '2019-01-28 10:36:33', '0000-00-00'), (887, 1205, 'CW', '', '', '', 36, '2019-01-28 10:37:28', '0000-00-00'), (888, 1207, 'He is a website Developer', '', '', '', 36, '2019-01-28 10:44:42', '0000-00-00'), (889, 1210, 'Only Email', '', '', '', 36, '2019-01-28 10:53:42', '0000-00-00'), (890, 1211, 'Not Required', '', '', '', 36, '2019-01-28 10:54:54', '0000-00-00'), (891, 1212, 'NS', '', '', '', 36, '2019-01-28 10:56:34', '0000-00-00'), (892, 1209, 'NR', '', '', '', 36, '2019-01-28 10:57:33', '0000-00-00'), (893, 1208, 'CB after Some times', '', '', '', 36, '2019-01-28 11:09:30', '0000-00-00'), (894, 1213, 'JOB', '', '', '', 36, '2019-01-28 11:12:32', '0000-00-00'), (895, 1214, 'Only Email', '', '', '', 36, '2019-01-28 11:25:28', '0000-00-00'), (896, 1215, 'Only Email', '', '', '', 36, '2019-01-28 11:26:49', '0000-00-00'), (897, 1123, 'CW', '', '', '', 36, '2019-01-28 11:28:03', '0000-00-00'), (898, 1212, 'Instruction Service - Website - Client will Visit Mysore office on 29/1/2019 ', '', '', '', 36, '2019-01-28 11:31:20', '0000-00-00'), (899, 588, 'COnverted', '', '', '', 36, '2019-01-28 11:32:49', '0000-00-00'), (900, 1219, 'Only Email', '', '', '', 36, '2019-01-28 11:42:33', '0000-00-00'), (901, 1218, 'Only Email', '', '', '', 36, '2019-01-28 11:43:18', '0000-00-00'), (902, 1221, 'SEO package shared', '', '', '', 36, '2019-01-28 12:01:28', '0000-00-00'), (903, 1222, 'Client will share the Requirements through mail', '', '', '', 36, '2019-01-28 12:06:21', '0000-00-00'), (904, 1223, 'CW', '', '', '', 36, '2019-01-28 12:07:32', '0000-00-00'), (905, 1193, 'CB on EVE', '', '', '', 36, '2019-01-28 12:09:00', '0000-00-00'), (906, 1220, 'Astrology Website - Link shared through watsapp', '', '', '', 36, '2019-01-28 12:09:45', '0000-00-00'), (907, 1222, '45000 plus gst. custom website with PHP and code igniter - Quote shared', '', '', '', 36, '2019-01-28 12:21:05', '0000-00-00'), (908, 1209, 'JOB', '', '', '', 36, '2019-01-28 12:34:22', '0000-00-00'), (909, 1227, 'Only Email', '', '', '', 36, '2019-01-28 13:29:18', '0000-00-00'), (910, 542, 'Final Check Received ', '1548662613Check recieved(final Payment).jpg', '', 'ACTIVE', 36, '2019-01-28 13:33:33', '0000-00-00'), (911, 1228, 'Only Email', '', '', '', 36, '2019-01-28 13:35:46', '0000-00-00'), (912, 1226, 'Service - profile and link to be shared', '', '', '', 36, '2019-01-28 13:41:58', '0000-00-00'), (913, 1229, 'CW', '', '', '', 36, '2019-01-28 13:43:05', '0000-00-00'), (914, 1225, 'NR', '', '', '', 36, '2019-01-28 13:43:52', '0000-00-00'), (915, 1245, 'Only Email', '', '', '', 36, '2019-01-28 14:14:30', '0000-00-00'), (916, 1217, 'Only Email', '', '', '', 36, '2019-01-28 14:16:37', '0000-00-00'), (917, 1216, 'Only email', '', '', '', 36, '2019-01-28 14:17:05', '0000-00-00'), (918, 1231, 'Only Email', '', '', '', 36, '2019-01-28 14:17:47', '0000-00-00'), (919, 1235, 'Only Email', '', '', '', 36, '2019-01-28 14:18:18', '0000-00-00'), (920, 1224, 'B', '', '', '', 36, '2019-01-28 14:18:53', '0000-00-00'), (921, 1247, 'Only Email', '', '', '', 36, '2019-01-28 16:11:25', '0000-00-00'), (922, 1247, 'Only Email', '', '', '', 36, '2019-01-28 16:14:08', '0000-00-00'), (923, 1248, 'Only Email', '', '', '', 36, '2019-01-28 16:14:33', '0000-00-00'), (924, 1249, 'Only Email', '', '', '', 36, '2019-01-28 16:59:56', '0000-00-00'), (925, 1244, 'Not Required', '', '', '', 36, '2019-01-28 17:02:05', '0000-00-00'), (926, 1243, 'Client will CB', '', '', '', 36, '2019-01-28 17:03:19', '0000-00-00'), (927, 1242, 'NS', '', '', '', 36, '2019-01-28 17:04:13', '0000-00-00'), (928, 1241, 'B', '', '', '', 36, '2019-01-28 17:04:57', '0000-00-00'), (929, 1241, 'CW', '', '', '', 36, '2019-01-28 17:05:05', '0000-00-00'), (930, 1242, 'Not Required', '', '', '', 36, '2019-01-28 17:06:01', '0000-00-00'), (931, 1250, 'CW', '', '', '', 36, '2019-01-28 17:07:35', '0000-00-00'), (932, 1240, 'Not Required', '', '', '', 36, '2019-01-28 17:08:49', '0000-00-00'), (933, 1250, 'JOB', '', '', '', 36, '2019-01-28 17:09:38', '0000-00-00'), (934, 1239, 'CB at 6PM', '', '', '', 36, '2019-01-28 17:10:51', '0000-00-00'), (935, 1238, 'Not Required', '', '', '', 36, '2019-01-28 17:11:49', '0000-00-00'), (936, 1237, 'NR', '', '', '', 36, '2019-01-28 17:12:49', '0000-00-00'), (937, 1236, 'Online market - bidding, ', '', '', '', 36, '2019-01-28 17:16:22', '0000-00-00'), (938, 1251, 'B', '', '', '', 36, '2019-01-28 17:37:39', '0000-00-00'), (939, 1252, 'CW', '', '', '', 36, '2019-01-28 17:40:01', '0000-00-00'), (940, 1234, 'NS', '', '', '', 36, '2019-01-28 17:41:01', '0000-00-00'), (941, 1233, 'Not Required', '', '', '', 36, '2019-01-28 17:42:28', '0000-00-00'), (942, 1232, 'NS', '', '', '', 36, '2019-01-28 17:43:30', '0000-00-00'), (943, 1230, 'JOB', '', '', '', 36, '2019-01-28 17:45:02', '0000-00-00'), (944, 1205, 'Not Required', '', '', '', 36, '2019-01-28 17:45:49', '0000-00-00'), (945, 1208, 'B', '', '', '', 36, '2019-01-28 17:46:40', '0000-00-00'), (946, 1223, 'links shared waiting for meeting', '', '', '', 36, '2019-01-28 17:51:54', '0000-00-00'), (947, 1223, 'Executive to meet at 29/1/2019', '', '', '', 36, '2019-01-28 17:58:31', '0000-00-00'), (948, 1224, 'She will CB when she Required', '', '', '', 36, '2019-01-28 18:00:20', '0000-00-00'), (949, 1225, 'NR', '', '', '', 36, '2019-01-28 18:25:59', '0000-00-00'), (950, 1229, 'Not Required', '', '', '', 36, '2019-01-28 18:27:48', '0000-00-00'), (951, 1232, 'NS', '', '', '', 36, '2019-01-28 18:28:41', '0000-00-00'), (952, 1234, 'He just need a information', '', '', '', 36, '2019-01-28 18:32:35', '0000-00-00'), (953, 1241, 'Not required', '', '', '', 36, '2019-01-28 18:35:47', '0000-00-00'), (954, 1251, 'institute - art - Informed to Contact on 15/2/2019', '', '', '', 36, '2019-01-28 18:42:08', '2019-01-29'), (955, 1252, 'Cb on 30/1/2019 for Executive meet - Basic Website - 8K', '', '', '', 36, '2019-01-28 18:45:48', '0000-00-00'), (956, 1254, 'Pharmacy - Company profile and Link shared', '', '', '', 36, '2019-01-29 10:21:35', '0000-00-00'), (957, 1255, 'Only Email', '', '', '', 36, '2019-01-29 10:23:56', '0000-00-00'), (958, 1256, 'NS', '', '', '', 36, '2019-01-29 10:24:21', '0000-00-00'), (959, 1257, 'Not Required', '', '', '', 36, '2019-01-29 10:25:40', '0000-00-00'), (960, 1258, 'Not Required', '', '', '', 36, '2019-01-29 10:28:41', '0000-00-00'), (961, 1259, 'NS', '', '', '', 36, '2019-01-29 10:31:14', '0000-00-00'), (962, 1260, 'NS', '', '', '', 36, '2019-01-29 10:33:05', '0000-00-00'), (963, 1261, 'Executive to meet on 29/1/2019 at 11.30AM', '', '', '', 36, '2019-01-29 10:35:31', '0000-00-00'), (964, 1262, 'Only Email', '', '', '', 36, '2019-01-29 10:38:31', '0000-00-00'), (965, 1263, 'Only Email', '', '', '', 36, '2019-01-29 10:39:56', '0000-00-00'), (966, 1253, 'Only Email', '', '', '', 36, '2019-01-29 10:40:50', '0000-00-00'), (967, 1264, 'Not Required', '', '', '', 36, '2019-01-29 10:46:42', '0000-00-00'), (970, 1259, 'JOB\r\n', '', '', '', 36, '2019-01-29 10:49:07', '0000-00-00'), (971, 1265, 'Only Email', '', '', '', 36, '2019-01-29 11:11:15', '0000-00-00'), (972, 1260, 'swiggy -Client will CB when he need', '', '', '', 36, '2019-01-29 11:17:03', '0000-00-00'), (973, 1256, 'NS', '', '', '', 36, '2019-01-29 11:18:38', '0000-00-00'), (974, 1243, 'Clinet will Watsapp the requirments', '', '', '', 36, '2019-01-29 11:21:22', '0000-00-00'), (975, 1239, 'B', '', '', '', 36, '2019-01-29 11:22:50', '0000-00-00'), (976, 1237, 'NS', '', '', '', 36, '2019-01-29 11:25:20', '0000-00-00'), (977, 1237, 'Not Required', '', '', '', 36, '2019-01-29 11:26:59', '0000-00-00'), (978, 1254, 'Dynamic Website , SEO , addwords, - Executive to meet on 29/1/2019 at 3.30PM\r\n', '', '', '', 36, '2019-01-29 11:32:53', '0000-00-00'), (979, 1236, 'Not Required', '', '', '', 36, '2019-01-29 11:46:30', '0000-00-00'), (980, 1232, 'Not Required', '', '', '', 36, '2019-01-29 11:49:12', '0000-00-00'), (981, 1212, ' Instruction Service - Website - Client will Visit Mysore office on 29/1/2019 but NS', '', '', '', 36, '2019-01-29 11:52:45', '0000-00-00'), (982, 1208, 'NS', '', '', '', 36, '2019-01-29 11:53:51', '0000-00-00'), (983, 1201, 'Switch off', '', '', '', 36, '2019-01-29 11:55:50', '0000-00-00'), (984, 1266, 'Job', '', '', '', 36, '2019-01-29 12:24:33', '0000-00-00'), (985, 1198, 'CB on 30/1/2019', '', '', '', 36, '2019-01-29 12:29:23', '0000-00-00'), (986, 1197, 'Incoming call has been barded', '', '', '', 36, '2019-01-29 12:30:31', '0000-00-00'), (987, 1193, 'Executive to meet at 29/1/2019', '', '', '', 36, '2019-01-29 12:31:19', '0000-00-00'), (988, 1185, 'Cb in eve ', '', '', '', 36, '2019-01-29 12:42:39', '0000-00-00'), (989, 1183, 'B', '', '', '', 36, '2019-01-29 12:43:47', '0000-00-00'), (990, 1265, 'zNot Required', '', '', '', 36, '2019-01-29 12:45:25', '0000-00-00'), (991, 1267, 'Informed to subbu sir', '', '', '', 36, '2019-01-29 12:49:44', '0000-00-00'), (992, 1180, 'Switch off', '', '', '', 36, '2019-01-29 13:03:26', '0000-00-00'), (993, 1268, 'In watsapp link to be shared', '', '', '', 36, '2019-01-29 13:16:45', '0000-00-00'), (994, 1269, 'Not Required', '', '', '', 36, '2019-01-29 13:19:10', '0000-00-00'), (995, 1270, 'Not Required', '', '', '', 36, '2019-01-29 13:21:29', '0000-00-00'), (996, 1271, 'Not Required', '', '', '', 36, '2019-01-29 13:28:13', '0000-00-00'), (997, 1272, 'Watsapp the profile and link', '', '', '', 36, '2019-01-29 15:45:05', '0000-00-00'), (998, 1274, 'Not Required', '', '', '', 36, '2019-01-29 15:55:11', '0000-00-00'), (999, 1273, 'not Required', '', '', '', 36, '2019-01-29 16:00:32', '0000-00-00'), (1000, 1275, 'NGO _ static Website - Executive to meet on 30/1/2019 b/w - 2 to 7 PM', '', '', '', 36, '2019-01-29 16:03:19', '0000-00-00'), (1001, 1193, 'Quote sent for 11K', '1548759542Quotation_Rajashekar(shree sai tech).pdf', '', '', 36, '2019-01-29 16:29:02', '0000-00-00'), (1002, 1137, 'Client shared the details through watsapp - Quote for RS.80,000 - he will CB', '', '', '', 36, '2019-01-29 16:36:13', '0000-00-00'), (1003, 1278, 'Only Email', '', '', '', 36, '2019-01-29 17:04:51', '0000-00-00'), (1004, 1280, 'Construction company - Executive to meet at 30/1/2019 ', '', '', '', 36, '2019-01-29 17:22:46', '0000-00-00'), (1005, 1282, 'NR', '', '', '', 36, '2019-01-29 18:14:20', '0000-00-00'), (1006, 1283, 'Company profile and link shared - client will CB when he need requirements', '', '', '', 36, '2019-01-29 18:39:38', '0000-00-00'), (1007, 1284, 'Job', '', '', '', 36, '2019-01-30 10:05:28', '0000-00-00'), (1008, 1285, 'Not Required', '', '', '', 36, '2019-01-30 10:07:56', '0000-00-00'), (1009, 1286, 'she had a website development company', '', '', '', 36, '2019-01-30 10:10:41', '0000-00-00'), (1010, 1292, 'looking for training', '', '', '', 36, '2019-01-30 10:27:09', '0000-00-00'), (1011, 1291, 'CB ', '', '', '', 36, '2019-01-30 10:29:32', '0000-00-00'), (1012, 1290, 'NS', '', '', '', 36, '2019-01-30 10:32:23', '0000-00-00'), (1013, 1289, 'JOB', '', '', '', 36, '2019-01-30 10:33:33', '0000-00-00'), (1014, 1293, 'Informed to share profile and links through watsapp', '', '', '', 36, '2019-01-30 10:38:16', '0000-00-00'), (1015, 1294, 'NS', '', '', '', 36, '2019-01-30 11:18:22', '0000-00-00'), (1016, 1288, 'not Required', '', '', '', 36, '2019-01-30 11:19:54', '0000-00-00'), (1017, 1287, 'NS', '', '', '', 36, '2019-01-30 11:21:02', '0000-00-00'), (1018, 1287, 'CB after 12.30PM', '', '', '', 36, '2019-01-30 11:22:02', '0000-00-00'), (1019, 1277, 'Only Email', '', '', '', 36, '2019-01-30 11:22:47', '0000-00-00'), (1020, 1276, 'Not Required', '', '', '', 36, '2019-01-30 11:23:12', '0000-00-00'), (1021, 1279, 'NS', '', '', '', 36, '2019-01-30 11:28:04', '0000-00-00'), (1022, 1256, 'NS', '', '', '', 36, '2019-01-30 11:29:45', '0000-00-00'), (1023, 1295, 'Only Email', '', '', '', 36, '2019-01-30 11:30:50', '0000-00-00'), (1024, 1225, 'NR', '', '', '', 36, '2019-01-30 11:32:34', '0000-00-00'), (1025, 1295, 'JOB', '', '', '', 36, '2019-01-30 12:16:23', '0000-00-00'), (1026, 1296, 'Email ID - informed to subbu sir\r\n', '', '', '', 36, '2019-01-30 13:14:42', '0000-00-00'), (1027, 1297, 'JOB', '', '', '', 36, '2019-01-30 13:21:42', '0000-00-00'), (1028, 1298, 'Incoming call has been bared to this number', '', '', '', 36, '2019-01-30 13:23:42', '0000-00-00'), (1029, 1302, 'Not Required', '', '', '', 36, '2019-01-30 15:13:30', '0000-00-00'), (1030, 1299, 'He will inform the requirements', '', '', '', 36, '2019-01-30 15:26:01', '0000-00-00'), (1031, 1301, 'Not Required (for 4K - static Website from some other vendor)', '', '', '', 36, '2019-01-30 15:27:04', '0000-00-00'), (1032, 1303, 'Website and Application - Executive to meet at 31/1/2019 at 1.00PM ', '', '', '', 36, '2019-01-30 15:27:46', '0000-00-00'), (1033, 1304, 'Not Required', '', '', '', 36, '2019-01-30 15:34:45', '0000-00-00'), (1034, 1305, 'For appointment informed to contact on 31/1/2019 - website', '', '', '', 36, '2019-01-30 15:44:46', '0000-00-00'), (1035, 1308, 'Executive to meet on 31/1/2019 at 11.30AM', '', '', '', 36, '2019-01-30 16:00:35', '0000-00-00'), (1036, 1309, 'He will discuss with her sister and Will CB', '', '', '', 36, '2019-01-30 16:07:43', '0000-00-00'), (1037, 1307, 'Not Required', '', '', '', 36, '2019-01-30 16:08:30', '0000-00-00'), (1038, 1306, 'Not Required', '', '', '', 36, '2019-01-30 16:08:54', '0000-00-00'), (1039, 1300, 'profile and link shared', '', '', '', 36, '2019-01-30 16:11:17', '0000-00-00'), (1040, 1294, 'Company profile and link shared', '', '', '', 36, '2019-01-30 16:36:46', '0000-00-00'), (1041, 1310, 'B', '', '', '', 36, '2019-01-30 16:57:26', '0000-00-00'), (1042, 1311, 'CW', '', '', '', 36, '2019-01-30 16:57:48', '0000-00-00'), (1043, 1282, 'NR', '', '', '', 36, '2019-01-30 16:58:56', '0000-00-00'), (1044, 1305, 'Executive to meet on 31/1/2019 at 4.00PM', '', '', '', 36, '2019-01-30 17:09:05', '0000-00-00'), (1045, 1312, 'CW', '', '', '', 36, '2019-01-30 17:10:11', '0000-00-00'), (1046, 1311, 'CB after 5.45PM', '', '', '', 36, '2019-01-30 17:11:38', '0000-00-00'), (1048, 1314, 'Executive to meet at 30/1/2019 before 10PM', '', '', '', 36, '2019-01-30 18:05:45', '0000-00-00'), (1049, 1315, 'NS', '', '', '', 36, '2019-01-30 18:07:42', '0000-00-00'), (1050, 1313, 'Not Required', '', '', '', 36, '2019-01-30 18:08:10', '0000-00-00'), (1051, 561, 'shared 2 template designs', '', '', 'ACTIVE', 80, '2019-01-30 18:47:27', '0000-00-00'), (1052, 1316, 'Wikipedia - 6 pages - content will be given by client - video and images to be uploaded', '', '', '', 36, '2019-01-31 10:41:13', '0000-00-00'), (1053, 1319, 'Not Required', '', '', '', 36, '2019-01-31 10:42:23', '0000-00-00'), (1054, 1318, 'he is running sharada Education\r\nhe need app to be developed.\r\n1) for school and clg he provide trainning\r\n2) teaching\r\n3) ERP modules\r\n4)student can upload and to subscribe that vedio \r\nand others ', '', '', '', 36, '2019-01-31 10:43:45', '0000-00-00'), (1055, 1320, 'Incoming call are banned', '', '', '', 36, '2019-01-31 11:00:49', '0000-00-00'), (1056, 1321, 'NR', '', '', '', 36, '2019-01-31 11:01:19', '0000-00-00'), (1057, 1317, 'Not Required', '', '', '', 36, '2019-01-31 11:04:54', '0000-00-00'), (1058, 1322, 'He is looking for the training (in blore)', '', '', '', 36, '2019-01-31 11:12:55', '0000-00-00'), (1059, 1323, 'he is looking for the training institute(in blore)', '', '', '', 36, '2019-01-31 11:31:38', '0000-00-00'), (1060, 1324, 'Not Required', '', '', '', 36, '2019-01-31 11:34:20', '0000-00-00'), (1061, 1325, 'Not Required', '', '', '', 36, '2019-01-31 11:36:12', '0000-00-00'), (1062, 1326, 'JOB (.net)', '', '', '', 36, '2019-01-31 11:55:40', '0000-00-00'), (1063, 1328, 'Sports website - link shared', '', '', '', 36, '2019-01-31 12:04:13', '0000-00-00'), (1064, 1330, 'cricket website - Executive to meet on 1/2/2019 ', '', '', '', 36, '2019-01-31 12:42:09', '0000-00-00'), (1065, 1331, 'Only Email', '', '', '', 36, '2019-01-31 12:45:31', '0000-00-00'), (1066, 1332, 'NS', '', '', '', 36, '2019-01-31 12:55:18', '0000-00-00'), (1067, 1333, 'Not Required', '', '', '', 1, '2019-01-31 13:07:51', '0000-00-00'), (1068, 1332, 'Not Required', '', '', '', 1, '2019-01-31 13:23:12', '0000-00-00'), (1069, 1337, 'Dynamic Website - Executive to meet on 1/2/2019 at 12.00PM', '', '', '', 1, '2019-01-31 15:32:06', '0000-00-00'), (1070, 1338, 'CW', '', '', '', 1, '2019-01-31 15:35:35', '0000-00-00'), (1071, 1334, 'Company link and profile shared', '', '', '', 1, '2019-01-31 16:19:14', '0000-00-00'), (1072, 1339, 'NS', '', '', '', 1, '2019-01-31 16:23:39', '2019-01-31'), (1073, 1340, 'NS', '', '', '', 1, '2019-01-31 16:54:27', '0000-00-00'), (1074, 1339, 'NS', '', '', '', 1, '2019-01-31 16:56:56', '0000-00-00'), (1075, 1341, 'Not Required', '', '', '', 1, '2019-01-31 17:28:03', '0000-00-00'), (1076, 1342, 'Studio - Dynamic Website - Executive to meet on 2/2/2019 before 1.00PM - 13K', '', '', '', 1, '2019-01-31 18:16:03', '2019-01-31'), (1077, 1334, 'Company link and profile shared informed to contact on 4/2/2019', '', '', '', 1, '2019-01-31 18:28:56', '0000-00-00'), (1078, 1356, 'Executive to meet at 1/2/2019 at 9AM', '', '', '', 36, '2019-02-01 11:52:31', '0000-00-00'), (1079, 1355, 'Only Email', '', '', '', 36, '2019-02-01 11:52:53', '0000-00-00'), (1080, 1353, 'Tuition centre website - executive to meet on 1/2/2019 at 6pm', '', '', '', 36, '2019-02-01 11:53:46', '0000-00-00'), (1081, 1351, 'Executive to meet on 1/2/2019 at 11AM', '', '', '', 36, '2019-02-01 11:55:39', '0000-00-00'), (1082, 1344, 'CW', '', '', '', 36, '2019-02-01 11:57:54', '0000-00-00'), (1083, 1354, 'CB after 3.00PM', '', '', '', 36, '2019-02-01 11:59:21', '0000-00-00'), (1084, 1349, 'Informed to subbu sir', '', '', '', 36, '2019-02-01 12:01:02', '0000-00-00'), (1085, 1347, 'NS', '', '', '', 36, '2019-02-01 12:02:47', '0000-00-00'), (1086, 1345, 'Not Required', '', '', '', 36, '2019-02-01 12:06:23', '0000-00-00'), (1087, 1350, 'Blore address shared', '', '', '', 36, '2019-02-01 12:07:13', '2019-02-01'), (1088, 1348, 'Not Required', '', '', '', 36, '2019-02-01 12:07:59', '0000-00-00'), (1089, 1352, 'Only Email', '', '', '', 36, '2019-02-01 12:12:17', '0000-00-00'), (1090, 1346, 'NS', '', '', '', 36, '2019-02-01 12:23:38', '0000-00-00'), (1091, 1357, 'Millanioners digital company - Manufacture- Dynamic Website - 12K - informed to contact at 3.00PM', '', '', '', 36, '2019-02-01 12:54:04', '0000-00-00'), (1092, 1358, 'Blore address shared client will visit on 4/1/2019', '', '', '', 36, '2019-02-01 13:16:36', '0000-00-00'), (1093, 559, 'Advance paid: 3000\r\nDomain: 1200\r\nFinal payment: 2000 + 1200(Domain) \r\nTotal : 6200 (recieved)\r\n', '', '', 'ACTIVE', 36, '2019-02-01 13:22:42', '2019-02-01'), (1094, 1360, 'Tours and travels Website - Executive to meet on 1/2/2019 at 3.30PM', '', '', '', 36, '2019-02-01 13:52:14', '0000-00-00'), (1095, 1361, 'Blore address shared. client will visit the office on 2/2/2019', '', '', '', 36, '2019-02-01 14:10:15', '0000-00-00'), (1096, 567, 'Cash slip ', '1549014963cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-01 15:26:03', '0000-00-00'), (1097, 567, 'Client sheet (nithin)', '1549014986Client sheet (nithin).jpg', '', 'ACTIVE', 36, '2019-02-01 15:26:26', '0000-00-00'), (1098, 567, 'Advance check(SBI)', '1549015004advanc Check.jpg', '', 'ACTIVE', 36, '2019-02-01 15:26:44', '0000-00-00'), (1099, 1357, 'Executive to meet on 2/1/2019 at 12.00 to 12.30PM', '', '', '', 36, '2019-02-01 16:37:16', '0000-00-00'), (1100, 1362, 'Address shared', '', '', '', 36, '2019-02-01 18:41:38', '0000-00-00'), (1101, 1363, 'address shared', '', '', '', 36, '2019-02-01 18:42:55', '0000-00-00'), (1102, 1364, 'NS', '', '', '', 36, '2019-02-04 10:27:55', '0000-00-00'), (1103, 1365, 'not required', '', '', '', 36, '2019-02-04 10:30:31', '0000-00-00'), (1104, 1364, 'Not Required', '', '', '', 36, '2019-02-04 10:33:04', '0000-00-00'), (1105, 1366, 'CB at 11.00AM', '', '', '', 36, '2019-02-04 10:42:26', '0000-00-00'); INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (1106, 1368, 'Only Email', '', '', '', 36, '2019-02-04 10:48:20', '0000-00-00'), (1107, 1369, 'Only Email', '', '', '', 36, '2019-02-04 10:49:47', '0000-00-00'), (1108, 1373, 'Only Email', '', '', '', 36, '2019-02-04 10:54:04', '0000-00-00'), (1109, 1383, 'Job consultancy Website - Single page static Website - Executive to meet on 4/2/2019 at 3.30PM for finalization', '', '', '', 36, '2019-02-04 11:29:00', '0000-00-00'), (1110, 1384, 'Single page static Website - Informed to Contact around 3', '', '', '', 36, '2019-02-04 11:43:41', '0000-00-00'), (1111, 1385, 'Only Email', '', '', '', 36, '2019-02-04 11:45:08', '0000-00-00'), (1112, 1391, 'they are in to website development company', '', '', '', 36, '2019-02-04 12:02:59', '0000-00-00'), (1113, 1400, 'Only Email', '', '', '', 36, '2019-02-04 12:15:23', '0000-00-00'), (1114, 1399, 'Informed to subbu sir', '', '', '', 36, '2019-02-04 12:18:41', '0000-00-00'), (1115, 1398, 'video making, 5 pages - dynamic website - 13K - Quote to be shared', '1549264502Quotation_guru.pdf', '', '', 36, '2019-02-04 12:21:59', '2019-02-04'), (1116, 1397, 'Cb', '', '', '', 36, '2019-02-04 12:23:15', '0000-00-00'), (1117, 1396, 'CW', '', '', '', 36, '2019-02-04 12:24:22', '0000-00-00'), (1118, 1401, 'Not Required', '', '', '', 36, '2019-02-04 12:32:05', '0000-00-00'), (1119, 1402, 'they are in to a website development company', '', '', '', 36, '2019-02-04 12:36:03', '0000-00-00'), (1120, 1395, 'Not Required', '', '', '', 36, '2019-02-04 12:38:05', '0000-00-00'), (1122, 1388, 'NS', '', '', '', 36, '2019-02-04 12:49:55', '0000-00-00'), (1123, 1387, 'He is looking for freelancer', '', '', '', 36, '2019-02-04 12:51:51', '0000-00-00'), (1124, 1386, 'NS', '', '', '', 36, '2019-02-04 12:53:06', '0000-00-00'), (1125, 1381, 'B', '', '', '', 36, '2019-02-04 12:54:14', '0000-00-00'), (1126, 1381, 'they are in to a website development', '', '', '', 36, '2019-02-04 12:55:31', '0000-00-00'), (1127, 1380, 'Not Required', '', '', '', 36, '2019-02-04 12:56:44', '0000-00-00'), (1128, 1379, 'Dynamic Website - 12K - Informed to contact after 3', '', '', '', 36, '2019-02-04 13:03:34', '0000-00-00'), (1129, 1403, 'Cb', '', '', '', 36, '2019-02-04 13:05:38', '0000-00-00'), (1130, 1404, 'looking for the training in blore', '', '', '', 36, '2019-02-04 13:07:59', '0000-00-00'), (1131, 1378, 'start up - information technologies - ', '', '', '', 36, '2019-02-04 13:11:13', '0000-00-00'), (1132, 1378, 'mail sent regarding company profile and Quote for single page static Website - 6K', '', '', '', 36, '2019-02-04 13:23:56', '0000-00-00'), (1133, 1405, 'Dynamic Website - Client will Visit the office', '', '', '', 36, '2019-02-04 13:25:20', '0000-00-00'), (1134, 568, 'advance payment - 10K ', '1549268713Intail payment(screen shot).jpg', '', 'ACTIVE', 36, '2019-02-04 13:55:13', '0000-00-00'), (1135, 311, 'Additional Requirments', '1549268903additional requirements(4-2-2019).jpg', '', 'ACTIVE', 36, '2019-02-04 13:58:23', '0000-00-00'), (1136, 1388, 'Not Required', '', '', '', 36, '2019-02-04 13:59:49', '0000-00-00'), (1137, 569, 'Rs, 20,000 Cash received( Nithin) ', '1549269585Cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-04 14:09:45', '0000-00-00'), (1138, 569, 'Client sheet(nithin)\r\n', '1549269608Client sheet (nithin).jpg', '', 'ACTIVE', 36, '2019-02-04 14:10:08', '0000-00-00'), (1139, 570, 'Cash slip(nithin)\r\n', '1549269977Cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-04 14:16:17', '0000-00-00'), (1140, 570, 'Client sheet (nithin)\r\n', '1549270000client sheet(ithin).jpg', '', 'ACTIVE', 36, '2019-02-04 14:16:40', '0000-00-00'), (1141, 568, 'Total Amount: 63000 + GST =Rs. 74340/-\r\n\r\nPayment terms:\r\n\r\n1. Initially: 10000/-\r\n\r\n2. After design finalization: 25000/-\r\n\r\n3. After demo: 39340/-\r\n', '', '', 'ACTIVE', 36, '2019-02-04 15:40:48', '0000-00-00'), (1142, 571, 'Advanced - 15K received', '1549275532Advanced paid(screen shot).jpg', '', 'ACTIVE', 36, '2019-02-04 15:48:52', '0000-00-00'), (1143, 1406, 'tours and travels - Executive to meet on 4/2/2019 at 5.30PM', '', '', '', 36, '2019-02-04 16:09:37', '0000-00-00'), (1144, 1407, 'NS', '', '', '', 36, '2019-02-04 16:15:42', '0000-00-00'), (1145, 1408, 'Not Required', '', '', '', 36, '2019-02-04 16:17:37', '0000-00-00'), (1146, 1376, 'Not Required', '', '', '', 36, '2019-02-04 16:20:52', '0000-00-00'), (1147, 1409, 'Company profile and link to be shared', '', '', '', 36, '2019-02-04 16:40:05', '0000-00-00'), (1148, 1375, 'B', '', '', '', 36, '2019-02-04 16:45:17', '0000-00-00'), (1149, 1374, 'Not Required', '', '', '', 36, '2019-02-04 16:46:37', '0000-00-00'), (1150, 1372, 'Job', '', '', '', 36, '2019-02-04 16:48:01', '0000-00-00'), (1151, 1371, 'NS', '', '', '', 36, '2019-02-04 16:48:58', '0000-00-00'), (1152, 1370, 'NS', '', '', '', 36, '2019-02-04 16:51:23', '0000-00-00'), (1153, 1367, 'CW', '', '', '', 36, '2019-02-04 16:52:15', '0000-00-00'), (1154, 1394, 'Only email', '', '', '', 36, '2019-02-04 16:52:45', '0000-00-00'), (1155, 1393, 'Only Email', '', '', '', 36, '2019-02-04 16:53:11', '0000-00-00'), (1156, 1392, 'Only Email', '', '', '', 36, '2019-02-04 16:53:38', '0000-00-00'), (1157, 1382, 'Only Email', '', '', '', 36, '2019-02-04 16:54:21', '0000-00-00'), (1158, 1410, 'JOB', '', '', '', 36, '2019-02-04 16:57:51', '0000-00-00'), (1159, 1371, 'CB', '', '', '', 36, '2019-02-04 17:19:03', '0000-00-00'), (1160, 1412, 'JOB', '', '', '', 36, '2019-02-05 10:24:42', '0000-00-00'), (1161, 1413, 'Only Email', '', '', '', 36, '2019-02-05 10:25:29', '0000-00-00'), (1162, 1414, 'Basic Website (7K) - Executive to meet on 6/2/2019\r\n', '', '', '', 36, '2019-02-05 10:26:53', '0000-00-00'), (1163, 1415, 'B', '', '', '', 36, '2019-02-05 10:28:15', '0000-00-00'), (1164, 572, 'Cash slip - Nithin', '1549343851Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-05 10:47:31', '0000-00-00'), (1165, 572, 'Client sheet(nithin)', '1549343898Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-05 10:48:18', '0000-00-00'), (1166, 548, 'Final payment Check - RS.14,530', '1549344500Final paymnet check.jpg', '', 'ACTIVE', 36, '2019-02-05 10:58:20', '0000-00-00'), (1167, 1417, 'Construction Company - 5/2/2019 at 10.00AM', '', '', '', 36, '2019-02-05 11:04:21', '0000-00-00'), (1168, 1418, 'basic Website - 7K - Executive to meet at 6/2/2019 ', '', '', '', 36, '2019-02-05 11:24:26', '0000-00-00'), (1169, 1411, 'CB after 12.00PM\r\n', '', '', '', 36, '2019-02-05 11:25:45', '0000-00-00'), (1170, 1419, 'B', '', '', '', 36, '2019-02-05 11:34:56', '0000-00-00'), (1171, 1413, 'Not Required', '', '', '', 36, '2019-02-05 11:40:00', '0000-00-00'), (1172, 1384, 'Single page static Website - NS', '', '', '', 36, '2019-02-05 11:45:04', '0000-00-00'), (1173, 1420, 'CB - Requirments not shared', '', '', '', 36, '2019-02-05 12:14:22', '0000-00-00'), (1174, 1421, 'CW', '', '', '', 36, '2019-02-05 12:25:20', '0000-00-00'), (1175, 1422, 'Complete marriage materials - basic Website - Executive to meet on 6/2/2019 ', '', '', '', 36, '2019-02-05 12:34:16', '0000-00-00'), (1176, 1423, 'Boutique - link to be shared', '', '', '', 36, '2019-02-05 13:13:17', '0000-00-00'), (1177, 1425, 'NS', '', '', '', 36, '2019-02-05 14:02:14', '0000-00-00'), (1178, 574, 'Cash Slip(Nithin)', '1549362350cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-05 15:55:50', '0000-00-00'), (1179, 574, 'Client sheet(nithin)', '1549362389Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-05 15:56:29', '0000-00-00'), (1180, 1420, 'Static Website(8K) - Executive to meet on 9/2/2019 ', '', '', '', 36, '2019-02-05 16:00:27', '0000-00-00'), (1181, 1420, 'Not Required', '', '', '', 36, '2019-02-05 16:07:34', '0000-00-00'), (1182, 574, 'Screen shot of domain approval', '1549364931domain approval (Screen shot).jpg', '', 'ACTIVE', 36, '2019-02-05 16:38:51', '0000-00-00'), (1183, 558, 'Sent the mail regarding website link.', '', '', 'ACTIVE', 80, '2019-02-05 17:03:48', '0000-00-00'), (1184, 561, 'got the content from client and shared to developers', '', '', 'ACTIVE', 80, '2019-02-05 17:04:25', '0000-00-00'), (1185, 564, 'Got the approval for template design.', '', '', 'ACTIVE', 80, '2019-02-05 17:05:21', '0000-00-00'), (1186, 569, 'Shared the template design to client and domain is purchased.', '', '', 'ACTIVE', 80, '2019-02-05 17:10:05', '0000-00-00'), (1187, 560, 'Domain Purchased and website is made live.', '', '', 'ACTIVE', 80, '2019-02-05 17:11:05', '0000-00-00'), (1188, 1432, 'Car washing - Basic Website - Executive to meet on 11/2/2019', '', '', '', 36, '2019-02-05 17:17:50', '0000-00-00'), (1189, 1431, 'Not Required', '', '', '', 36, '2019-02-05 17:22:17', '0000-00-00'), (1191, 559, 'Activated SSL For this domain', '', '', 'ACTIVE', 80, '2019-02-05 17:26:28', '0000-00-00'), (1192, 1430, 'e - comm furniture - Links shared', '', '', '', 36, '2019-02-05 17:26:39', '0000-00-00'), (1193, 1429, 'Electrical website - (8K - basic website) - CB', '', '', '', 36, '2019-02-05 17:30:20', '0000-00-00'), (1194, 1433, 'NS', '', '', '', 36, '2019-02-05 17:37:39', '0000-00-00'), (1195, 1434, 'NS', '', '', '', 36, '2019-02-05 17:41:50', '0000-00-00'), (1196, 1427, 'Client will share the details\r\n', '', '', '', 36, '2019-02-05 17:46:19', '0000-00-00'), (1197, 1435, 'E - comm - online store (5 Products) - 25K - Executive to meet on 6/2/2019 at 11.00AM ', '', '', '', 36, '2019-02-05 18:00:54', '0000-00-00'), (1198, 1428, 'Not Required', '', '', '', 36, '2019-02-05 18:06:40', '0000-00-00'), (1199, 1422, 'Complete marriage materials -CB tmm', '', '', '', 36, '2019-02-05 18:12:23', '0000-00-00'), (1200, 1427, '45K + GST Quote shared - for java script - 75K + GST', '', '', '', 36, '2019-02-05 18:32:41', '0000-00-00'), (1201, 1436, 'NS', '', '', '', 36, '2019-02-06 12:17:23', '0000-00-00'), (1202, 1437, 'NS', '', '', '', 36, '2019-02-06 12:22:27', '0000-00-00'), (1203, 1438, 'NS', '', '', '', 36, '2019-02-06 12:23:42', '0000-00-00'), (1204, 1440, 'Not Required', '', '', '', 36, '2019-02-06 12:26:00', '0000-00-00'), (1205, 1443, 'CB', '', '', '', 36, '2019-02-06 12:31:06', '0000-00-00'), (1206, 1444, 'Not Required', '', '', '', 36, '2019-02-06 12:34:43', '0000-00-00'), (1207, 1445, 'CB', '', '', '', 36, '2019-02-06 12:35:49', '0000-00-00'), (1208, 1446, 'basic website - 8K', '', '', '', 36, '2019-02-06 13:02:02', '0000-00-00'), (1209, 1447, 'not Required', '', '', '', 36, '2019-02-06 13:34:40', '0000-00-00'), (1210, 328, 'for payment gateway - 4K received(another website)', '', '', 'ACTIVE', 36, '2019-02-06 13:37:01', '0000-00-00'), (1211, 1439, 'Not Required', '', '', '', 36, '2019-02-06 13:58:21', '0000-00-00'), (1212, 1448, 'E - Comm Website - Executive to meet on 6/2/2019 at 4.30PM', '', '', '', 36, '2019-02-06 14:02:54', '0000-00-00'), (1213, 1449, 'SEO Package and Company profile shared', '', '', '', 36, '2019-02-06 15:22:45', '0000-00-00'), (1214, 1451, 'CW', '', '', '', 36, '2019-02-06 15:26:06', '0000-00-00'), (1215, 1450, 'Dynamic Website - Quote to be shared 12K', '', '', '', 36, '2019-02-06 15:28:53', '0000-00-00'), (1216, 1452, 'CW', '', '', '', 36, '2019-02-06 15:42:21', '0000-00-00'), (1217, 1453, 'CW', '', '', '', 36, '2019-02-06 15:54:39', '0000-00-00'), (1218, 1454, 'Not Required', '', '', '', 36, '2019-02-06 15:58:14', '0000-00-00'), (1219, 575, 'Cash slip(nithin)\r\n', '1549452090Cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-06 16:51:30', '0000-00-00'), (1220, 575, 'Client sheet(nithin)\r\n', '1549452122Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-06 16:52:02', '0000-00-00'), (1221, 1453, 'travels website - Executive to meet on 7/2/2019 at 10.00AM', '', '', '', 36, '2019-02-06 17:17:48', '0000-00-00'), (1222, 1456, 'Dynamic Website - 5 pages - Executive to meet on 7/2/2019 at 1.00PM', '', '', '', 36, '2019-02-06 17:47:44', '0000-00-00'), (1223, 1457, 'Not Required', '', '', '', 36, '2019-02-06 18:04:13', '0000-00-00'), (1224, 1458, 'Client will share the requirements through mail( its like MLM application)', '', '', '', 36, '2019-02-06 18:18:30', '0000-00-00'), (1225, 1452, 'NS', '', '', '', 36, '2019-02-06 18:24:01', '0000-00-00'), (1226, 1451, 'Switch off', '', '', '', 36, '2019-02-06 18:25:31', '0000-00-00'), (1227, 1442, 'Not Required', '', '', '', 36, '2019-02-06 18:30:31', '0000-00-00'), (1228, 561, 'Shared the link to client.', '', '', 'ACTIVE', 80, '2019-02-06 19:11:58', '0000-00-00'), (1229, 564, 'Shared the link to the client.', '', '', 'ACTIVE', 80, '2019-02-06 19:14:00', '0000-00-00'), (1230, 1459, 'Executive to meet on 7/2/2019 at 12.00PM', '', '', '', 36, '2019-02-07 10:39:40', '0000-00-00'), (1231, 1460, 'NS', '', '', '', 36, '2019-02-07 11:10:26', '0000-00-00'), (1232, 1461, 'NS', '', '', '', 36, '2019-02-07 11:13:46', '0000-00-00'), (1233, 1462, 'CW', '', '', '', 36, '2019-02-07 11:16:15', '0000-00-00'), (1234, 1462, 'Not Required', '', '', '', 36, '2019-02-07 11:31:49', '0000-00-00'), (1235, 1463, 'Client will msg the requirements', '', '', '', 36, '2019-02-07 11:51:00', '0000-00-00'), (1236, 1463, 'package list shared in watsapp for sale and services', '', '', '', 36, '2019-02-07 12:00:00', '0000-00-00'), (1237, 1464, 'NS', '', '', '', 36, '2019-02-07 12:01:11', '0000-00-00'), (1238, 1466, 'Construction Company - Cb after 2.00PM', '', '', '', 36, '2019-02-07 12:11:41', '0000-00-00'), (1239, 1465, 'CW', '', '', '', 36, '2019-02-07 12:15:53', '0000-00-00'), (1240, 1445, 'Not Required', '', '', '', 36, '2019-02-07 12:48:08', '0000-00-00'), (1241, 1452, 'Not Required', '', '', '', 36, '2019-02-07 12:50:09', '0000-00-00'), (1242, 1451, 'Dynamic Website - Construction Company - Quote to share', '', '', '', 36, '2019-02-07 12:55:15', '2019-02-07'), (1243, 267, 'AMC payment', '1549525513AMC Screen shot(2019).jpg', '', 'ACTIVE', 36, '2019-02-07 13:15:13', '0000-00-00'), (1244, 1467, 'Tours and Travells Website - Executive to meet on 7/2/2019 zt 3.00PM', '', '', '', 36, '2019-02-07 13:33:55', '0000-00-00'), (1245, 1472, 'JOB', '', '', '', 36, '2019-02-07 15:35:49', '0000-00-00'), (1246, 1475, 'Not Required', '', '', '', 36, '2019-02-07 15:50:11', '0000-00-00'), (1247, 1474, 'Not Required', '', '', '', 36, '2019-02-07 15:52:24', '0000-00-00'), (1248, 1473, 'NS', '', '', '', 36, '2019-02-07 15:53:12', '0000-00-00'), (1249, 1471, 'JOB', '', '', '', 36, '2019-02-07 15:54:04', '0000-00-00'), (1250, 1469, 'Only Email', '', '', '', 36, '2019-02-07 15:54:47', '0000-00-00'), (1251, 1468, 'Not Required', '', '', '', 36, '2019-02-07 15:55:34', '0000-00-00'), (1252, 1476, 'Banking sector - Dynamic Website - 6Pages -10K (D + H) client side , informed to Contact on 11/2/2019', '', '', '', 36, '2019-02-07 16:03:43', '2019-02-07'), (1253, 1463, 'B', '', '', '', 36, '2019-02-07 16:06:08', '0000-00-00'), (1254, 1465, 'Not Required', '', '', '', 36, '2019-02-07 16:07:22', '0000-00-00'), (1255, 1477, 'Single page static Website - 5K - Executive to meet on 9/2/2019', '', '', '', 36, '2019-02-07 16:50:12', '0000-00-00'), (1256, 1478, 'Executive to meet on 8/2/2019 at 10.00AM', '', '', '', 36, '2019-02-07 17:10:01', '0000-00-00'), (1257, 1165, 'Informed to Contact on 11/2/2019 - subbu sir', '', '', '', 36, '2019-02-07 18:12:50', '0000-00-00'), (1258, 1479, 'Startup company -Company address shared', '', '', '', 36, '2019-02-07 18:15:55', '0000-00-00'), (1259, 1293, 'he will be coming to the office on 11/2/2019', '', '', '', 36, '2019-02-07 18:36:18', '0000-00-00'), (1260, 1480, 'JOB', '', '', '', 36, '2019-02-07 18:44:42', '0000-00-00'), (1261, 1485, 'Consultancy Website - 5K (single page static Website) Executive to meet on 8/2/2019. ', '', '', '', 36, '2019-02-08 10:59:07', '0000-00-00'), (1262, 1482, 'NS', '', '', '', 36, '2019-02-08 11:20:10', '0000-00-00'), (1263, 1484, 'Temporary out of service', '', '', '', 36, '2019-02-08 11:24:07', '0000-00-00'), (1264, 1487, 'Not Required', '', '', '', 36, '2019-02-08 11:50:31', '0000-00-00'), (1265, 1481, 'Construction company - 5K - Executive to meet on 8/2/2019 at b/w 11 to 2 PM', '', '', '', 36, '2019-02-08 11:51:41', '0000-00-00'), (1266, 1483, 'Not required', '', '', '', 36, '2019-02-08 11:53:01', '0000-00-00'), (1267, 1489, 'Dynamic Website with unlimited bandwidth and unlimited pages- Informed to contact on 11/2/2019', '', '', '', 36, '2019-02-08 12:25:51', '0000-00-00'), (1268, 1490, 'NGO Website - CB after 1.00PM', '', '', '', 36, '2019-02-08 12:42:26', '0000-00-00'), (1269, 1491, 'Land developer company - single page static Website - informed to cb on 2', '', '', '', 36, '2019-02-08 12:44:12', '0000-00-00'), (1270, 1490, 'NGO Website - Executive to meet on 8/2/2019 at 1.30PM', '', '', '', 36, '2019-02-08 13:22:51', '0000-00-00'), (1271, 1493, 'Not Required', '', '', '', 36, '2019-02-08 13:51:01', '0000-00-00'), (1272, 1494, 'SEO Package shared', '', '', '', 36, '2019-02-08 13:52:10', '0000-00-00'), (1273, 1495, 'Base modular system - interior design - Cb for appointment', '', '', '', 36, '2019-02-08 13:59:26', '0000-00-00'), (1274, 1496, 'Tours and travels website informed to Cb ', '', '', '', 36, '2019-02-08 14:02:34', '0000-00-00'), (1275, 1497, 'Event management Company - dynamic Website 12K - round off 10K informed to Contact on 9/2/2019', '', '', '', 36, '2019-02-08 14:08:26', '0000-00-00'), (1276, 1492, 'NS', '', '', '', 36, '2019-02-08 14:08:55', '0000-00-00'), (1277, 1498, 'Not Required( he is a developer )', '', '', '', 36, '2019-02-08 15:13:23', '0000-00-00'), (1278, 1495, 'Executive to meet on 8/2/2019 b/w 6 to 8.30PM', '', '', '', 36, '2019-02-08 15:14:47', '0000-00-00'), (1279, 1499, 'JOB', '', '', '', 36, '2019-02-08 15:56:49', '0000-00-00'), (1280, 576, 'Client sheet (nithin)', '1549627380cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-08 17:33:00', '0000-00-00'), (1281, 576, 'Client sheet(nithin)', '1549627401Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-08 17:33:21', '0000-00-00'), (1282, 1500, 'Interior design - single page static Website -6K', '', '', '', 36, '2019-02-08 18:09:02', '0000-00-00'), (1283, 537, 'Final payment of rs.2520 received', '1549629794Final payment(screenshot).jpg', '', 'ACTIVE', 36, '2019-02-08 18:13:14', '0000-00-00'), (1284, 1501, 'Not Required', '', '', '', 36, '2019-02-08 18:19:38', '0000-00-00'), (1285, 1502, 'Not Required', '', '', '', 36, '2019-02-08 18:40:13', '0000-00-00'), (1286, 1505, 'Only Email', '', '', '', 36, '2019-02-09 10:31:45', '0000-00-00'), (1287, 1509, 'Swimming pool - Single page static Website- Executive to meet on 9/2/2019', '', '', '', 36, '2019-02-09 10:42:49', '0000-00-00'), (1288, 1486, 'Only Email', '', '', '', 36, '2019-02-09 10:53:20', '0000-00-00'), (1289, 1488, 'Only Email', '', '', '', 36, '2019-02-09 10:53:56', '0000-00-00'), (1290, 1503, 'Switch off', '', '', '', 36, '2019-02-09 11:12:25', '0000-00-00'), (1291, 1504, 'he wants freelancer', '', '', '', 36, '2019-02-09 11:15:00', '0000-00-00'), (1292, 1506, 'Not Required', '', '', '', 36, '2019-02-09 11:17:45', '0000-00-00'), (1293, 1507, 'NS', '', '', '', 36, '2019-02-09 11:21:00', '0000-00-00'), (1294, 1508, 'NS', '', '', '', 36, '2019-02-09 11:23:46', '0000-00-00'), (1295, 1510, 'Not Required ( he is web developer)', '', '', '', 36, '2019-02-09 12:04:56', '0000-00-00'), (1296, 1511, 'he will share the requirements through mail', '', '', '', 36, '2019-02-09 12:07:16', '0000-00-00'), (1297, 1512, 'JOB', '', '', '', 36, '2019-02-09 12:11:02', '0000-00-00'), (1298, 1513, 'Single page static Website - 3 email Id (4K) - Not Required', '', '', '', 36, '2019-02-09 12:59:57', '2019-02-09'), (1299, 1514, 'static Website - 7K (client will CB - 11/2/2019)', '', '', '', 36, '2019-02-09 13:03:08', '0000-00-00'), (1300, 1515, 'Not Required', '', '', '', 36, '2019-02-09 13:36:24', '0000-00-00'), (1301, 577, 'cash slip(nithin)\r\n', '1549700758cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-09 13:55:58', '0000-00-00'), (1302, 577, 'Client sheet(nithin)', '1549700776Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-09 13:56:16', '0000-00-00'), (1303, 1516, 'Tours and travels Website - application - link will be shared by client', '', '', '', 36, '2019-02-09 14:08:23', '0000-00-00'), (1304, 1517, 'E- comm - (20K) - glosarry shop - 11/2/2019 contact him', '', '', '', 36, '2019-02-09 14:12:55', '0000-00-00'), (1305, 1519, 'Boutique - Dynamic Website - 12K - Executive to meet on 11/2/2019 at 11.00AM', '', '', '', 36, '2019-02-09 16:37:47', '0000-00-00'), (1306, 1520, 'Executive to meet on 11/2/2019 before 9AM', '', '', '', 36, '2019-02-09 16:55:35', '0000-00-00'), (1307, 1521, 'Not Required (He is a web developer)', '', '', '', 36, '2019-02-11 10:19:48', '0000-00-00'), (1308, 1522, 'Single page static Website - 6 section - Domain and content client side- Client will visit office on 11/2/2019 - address shared - CB on 12/2/2019', '', '', '', 36, '2019-02-11 10:32:12', '2019-02-11'), (1309, 1523, 'Switch off', '', '', '', 36, '2019-02-11 10:42:48', '0000-00-00'), (1310, 1524, 'Not Required', '', '', '', 36, '2019-02-11 10:44:38', '0000-00-00'), (1311, 1525, 'CB', '', '', '', 36, '2019-02-11 10:47:19', '0000-00-00'), (1312, 1526, 'CB after 2.00PM', '', '', '', 36, '2019-02-11 11:07:55', '0000-00-00'), (1313, 1527, 'NS', '', '', '', 36, '2019-02-11 11:09:40', '0000-00-00'), (1314, 1529, 'NS', '', '', '', 36, '2019-02-11 11:14:26', '0000-00-00'), (1315, 1530, 'CB', '', '', '', 36, '2019-02-11 11:20:26', '0000-00-00'), (1316, 1531, 'CW', '', '', '', 36, '2019-02-11 11:26:24', '0000-00-00'), (1317, 1531, 'CB at 12.00PM', '', '', '', 36, '2019-02-11 11:29:00', '0000-00-00'), (1318, 1532, 'Not Required', '', '', '', 36, '2019-02-11 11:38:32', '0000-00-00'), (1319, 1535, 'Single page static Website - Executive to meet on 11/2/2019', '', '', '', 36, '2019-02-11 12:07:21', '0000-00-00'), (1320, 1536, 'Company profile shared - Client will CB', '', '', '', 36, '2019-02-11 12:11:39', '0000-00-00'), (1321, 1531, 'B', '', '', '', 36, '2019-02-11 12:12:19', '0000-00-00'), (1322, 1537, 'Not Required', '', '', '', 36, '2019-02-11 12:32:16', '0000-00-00'), (1323, 1534, 'CB at 4PM', '', '', '', 36, '2019-02-11 12:42:32', '0000-00-00'), (1324, 1533, 'B', '', '', '', 36, '2019-02-11 12:43:12', '0000-00-00'), (1325, 1528, 'Not Required', '', '', '', 36, '2019-02-11 12:49:59', '0000-00-00'), (1326, 1529, 'NS', '', '', '', 36, '2019-02-11 12:51:14', '0000-00-00'), (1327, 1538, 'Not required', '', '', '', 36, '2019-02-11 13:07:59', '0000-00-00'), (1328, 578, 'Advance payment of Rs.5K (paytm)', '', '', 'ACTIVE', 36, '2019-02-11 13:24:37', '0000-00-00'), (1329, 1540, 'not required', '', '', '', 36, '2019-02-11 13:37:24', '0000-00-00'), (1330, 1539, 'Real estate - Executive to meet on 11/2/2019', '', '', '', 36, '2019-02-11 13:40:35', '0000-00-00'), (1331, 1541, 'Dynamic Website - Executive to meet on 11/2/2019', '', '', '', 36, '2019-02-11 13:54:57', '0000-00-00'), (1332, 1542, 'Client will mail the Requirements ', '', '', '', 36, '2019-02-11 14:05:32', '0000-00-00'), (1333, 579, 'Cash slip(nithin)', '1549886563cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-11 17:32:43', '0000-00-00'), (1334, 579, 'Client sheet(nithin)', '1549886863Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-11 17:37:43', '0000-00-00'), (1335, 579, 'Advance Check(11/2/2019)', '1549886888advance check(ICICI).jpg', '', 'ACTIVE', 36, '2019-02-11 17:38:08', '0000-00-00'), (1336, 1543, 'Not Required', '', '', '', 36, '2019-02-11 17:44:53', '0000-00-00'), (1337, 1545, 'Temporarily out of service ', '', '', '', 36, '2019-02-11 17:47:07', '0000-00-00'), (1338, 1546, 'JOB', '', '', '', 36, '2019-02-11 17:48:24', '0000-00-00'), (1339, 1546, 'JOB', '', '', '', 36, '2019-02-11 17:48:24', '0000-00-00'), (1340, 1546, 'JOB', '', '', '', 36, '2019-02-11 17:48:24', '0000-00-00'), (1341, 1547, 'software related to accounts - Design part to be done', '', '', '', 36, '2019-02-11 18:13:42', '0000-00-00'), (1342, 1536, 'Executive to meet on 13/2/2019 at 11.00AM', '', '', '', 36, '2019-02-11 18:14:55', '0000-00-00'), (1343, 1549, 'JOB', '', '', '', 36, '2019-02-11 18:20:55', '0000-00-00'), (1344, 1548, 'Not Required ( he is a developer)', '', '', '', 36, '2019-02-11 18:21:24', '0000-00-00'), (1345, 1550, 'B', '', '', '', 36, '2019-02-12 10:16:38', '0000-00-00'), (1346, 1551, 'Company profile shared', '', '', '', 36, '2019-02-12 10:19:35', '0000-00-00'), (1347, 1553, 'JoB', '', '', '', 36, '2019-02-12 10:22:17', '0000-00-00'), (1348, 1552, 'NS', '', '', '', 36, '2019-02-12 10:24:15', '0000-00-00'), (1349, 1554, 'Only Email', '', '', '', 36, '2019-02-12 10:30:10', '0000-00-00'), (1350, 1556, 'Only Email', '', '', '', 36, '2019-02-12 10:57:26', '0000-00-00'), (1351, 1555, 'NS', '', '', '', 36, '2019-02-12 10:57:54', '0000-00-00'), (1352, 1557, 'Client will CB', '', '', '', 36, '2019-02-12 11:11:09', '0000-00-00'), (1353, 1558, 'Not Required', '', '', '', 36, '2019-02-12 11:18:26', '0000-00-00'), (1354, 1561, 'Not Required(builder developer)', '', '', '', 36, '2019-02-12 12:44:52', '0000-00-00'), (1355, 1560, 'MLM Application - Informed to subbu sir', '', '', '', 36, '2019-02-12 12:46:04', '0000-00-00'), (1356, 1562, 'Only Email', '', '', '', 36, '2019-02-12 12:48:13', '0000-00-00'), (1357, 263, 'AMC Renewal - informed to call and Watsapp ', '', '', 'ACTIVE', 36, '2019-02-12 12:49:12', '0000-00-00'), (1358, 1563, 'Only Email', '', '', '', 36, '2019-02-12 12:50:55', '0000-00-00'), (1359, 1564, 'College - Dynamic Website - Executive to meet on 12/2/2019 at 5PM', '', '', '', 36, '2019-02-12 13:18:49', '0000-00-00'), (1360, 1565, 'Not Required', '', '', '', 36, '2019-02-12 13:21:11', '0000-00-00'), (1361, 1566, 'Not Required', '', '', '', 36, '2019-02-12 13:30:00', '0000-00-00'), (1362, 1567, 'Only email', '', '', '', 36, '2019-02-12 14:05:43', '0000-00-00'), (1363, 1568, '2 website - (training institute, Recuirtment ) and changes in the existing website - (izeebschool.com) - mail the profile and package', '', '', '', 36, '2019-02-13 10:26:19', '0000-00-00'), (1364, 1569, 'Not Required', '', '', '', 36, '2019-02-13 10:27:39', '0000-00-00'), (1365, 1570, 'Not Required', '', '', '', 36, '2019-02-13 10:30:05', '0000-00-00'), (1366, 1571, 'Details shared through msg', '', '', '', 36, '2019-02-13 10:31:54', '0000-00-00'), (1367, 1572, 'Only Email', '', '', '', 36, '2019-02-13 10:33:54', '0000-00-00'), (1368, 1573, 'Only Email', '', '', '', 36, '2019-02-13 10:35:04', '0000-00-00'), (1369, 1574, 'Not Required ( he need Template top be shared b4 payment )', '', '', '', 36, '2019-02-13 10:43:07', '0000-00-00'), (1370, 1575, 'Not Required (they are the developer )', '', '', '', 36, '2019-02-13 10:44:48', '0000-00-00'), (1371, 1557, 'Details to be shared through watsapp - single page static Website - 5K ', '', '', '', 36, '2019-02-13 11:10:34', '0000-00-00'), (1372, 1576, 'Single page static Website - 5K with letterhead and visiting card - Executive to meet on 14/2/2019 ', '', '', '', 36, '2019-02-13 11:39:51', '0000-00-00'), (1373, 1577, 'Only Email', '', '', '', 36, '2019-02-13 11:42:12', '0000-00-00'), (1374, 1578, 'Only Email', '', '', '', 36, '2019-02-13 11:50:26', '0000-00-00'), (1375, 1579, 'JOB', '', '', '', 36, '2019-02-13 12:04:59', '0000-00-00'), (1376, 1580, 'Only Email', '', '', '', 36, '2019-02-13 12:16:50', '0000-00-00'), (1377, 1581, 'Not Required', '', '', '', 36, '2019-02-13 12:44:48', '0000-00-00'), (1378, 1582, 'NR', '', '', '', 36, '2019-02-13 12:45:59', '0000-00-00'), (1379, 1583, 'Company profile and Link to be shared', '', '', '', 36, '2019-02-13 13:13:54', '0000-00-00'), (1380, 1585, 'Not potential - Small changes to be done in the Existing website', '', '', '', 36, '2019-02-13 13:26:07', '0000-00-00'), (1381, 1584, 'Education center - dynamic Website - 12K , single page static Website - 5K\r\nExecutive to meet on 14/2/2019 at 11.00AM', '', '', '', 36, '2019-02-13 13:27:35', '0000-00-00'), (1382, 1587, 'Only Email', '', '', '', 36, '2019-02-13 13:29:52', '0000-00-00'), (1383, 1588, 'Only Email', '', '', '', 36, '2019-02-13 13:50:45', '0000-00-00'), (1384, 1586, 'Dynamic Website - artificial jewelry - 11K -Company profile and Links shared', '', '', '', 36, '2019-02-13 14:17:43', '0000-00-00'), (1385, 1571, 'Executive to meet on 13/2/2019 at 3.30PM', '', '', '', 36, '2019-02-13 15:27:04', '0000-00-00'), (1386, 1589, 'Single page static Website - 5K informed to CB on 4.30PM', '', '', '', 36, '2019-02-13 15:52:14', '0000-00-00'), (1387, 1590, 'Not Required', '', '', '', 36, '2019-02-13 17:05:35', '0000-00-00'), (1388, 1591, 'Number not Valid', '', '', '', 36, '2019-02-13 17:06:36', '0000-00-00'), (1389, 1592, 'NS', '', '', '', 36, '2019-02-13 17:07:44', '0000-00-00'), (1390, 1593, 'JOB', '', '', '', 36, '2019-02-13 17:08:47', '0000-00-00'), (1391, 1595, 'Switch off', '', '', '', 36, '2019-02-13 17:13:31', '0000-00-00'), (1392, 1596, 'Only Email', '', '', '', 36, '2019-02-13 17:15:27', '0000-00-00'), (1393, 1597, 'Only Email', '', '', '', 36, '2019-02-13 17:19:20', '0000-00-00'), (1394, 580, 'Cash Slip(nithin)', '1550059826Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-13 17:40:26', '0000-00-00'), (1395, 580, 'Client Sheet(Nithin)', '1550059845Clinet sheet(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-13 17:40:45', '0000-00-00'), (1396, 580, 'Advance Check of Rs. 4000 ', '1550059901Advance Check(nithin).jpg', '', 'ACTIVE', 36, '2019-02-13 17:41:41', '0000-00-00'), (1397, 1598, 'reference Website share informed to subbu sir', '', '', '', 36, '2019-02-13 18:05:37', '0000-00-00'), (1398, 1598, 'Web proposal shared for 55K + GST', '', '', '', 36, '2019-02-13 19:00:13', '0000-00-00'), (1399, 1599, 'Not Required (She required in the surrounding area)', '', '', '', 36, '2019-02-14 10:30:36', '0000-00-00'), (1400, 1600, 'Not Required', '', '', '', 36, '2019-02-14 10:32:40', '0000-00-00'), (1401, 1601, 'Not Required', '', '', '', 36, '2019-02-14 10:34:39', '0000-00-00'), (1402, 1603, 'Client will CB', '', '', '', 36, '2019-02-14 10:39:14', '0000-00-00'), (1403, 1603, 'Client will CB', '', '', '', 36, '2019-02-14 10:39:14', '0000-00-00'), (1404, 1603, 'Client will CB', '', '', '', 36, '2019-02-14 10:39:14', '0000-00-00'), (1405, 1604, 'NR', '', '', '', 36, '2019-02-14 10:40:34', '0000-00-00'), (1406, 1605, 'Not Required', '', '', '', 36, '2019-02-14 10:41:44', '0000-00-00'), (1407, 1606, 'Only Email', '', '', '', 36, '2019-02-14 10:43:37', '0000-00-00'), (1408, 1608, 'Client will CB when she Required - beauty parlor', '', '', '', 36, '2019-02-14 11:24:15', '0000-00-00'), (1409, 1607, 'Not REquired', '', '', '', 36, '2019-02-14 11:34:31', '0000-00-00'), (1410, 1609, 'NR', '', '', '', 36, '2019-02-14 11:34:51', '0000-00-00'), (1411, 1602, 'NR', '', '', '', 36, '2019-02-14 12:33:39', '0000-00-00'), (1412, 1611, 'Not Required', '', '', '', 36, '2019-02-14 12:35:41', '0000-00-00'), (1413, 1610, 'Dynamic Website - Executive to meet on 15/2/2019 at 11.00AM', '', '', '', 36, '2019-02-14 12:40:18', '0000-00-00'), (1414, 1612, 'App - informed subbu sir', '', '', '', 36, '2019-02-14 12:44:33', '0000-00-00'), (1415, 1614, 'JOB', '', '', '', 36, '2019-02-14 13:20:40', '0000-00-00'), (1416, 1613, 'Not Required', '', '', '', 36, '2019-02-14 13:21:13', '0000-00-00'), (1417, 1615, 'NS', '', '', '', 36, '2019-02-14 14:07:49', '0000-00-00'), (1418, 1615, 'Single page static Website - 5K informed to Contact on 16/2/2019', '', '', '', 36, '2019-02-14 14:11:44', '0000-00-00'), (1419, 1621, 'single page static Website - Executive to meet on 15/2/2019 at 1.00PM', '', '', '', 36, '2019-02-14 17:11:55', '2019-02-14'), (1420, 1620, 'NS', '', '', '', 36, '2019-02-14 17:14:41', '0000-00-00'), (1421, 1619, 'NS', '', '', '', 36, '2019-02-14 17:16:48', '0000-00-00'), (1422, 1617, 'Cb after 6.30PM', '', '', '', 36, '2019-02-14 17:18:32', '0000-00-00'), (1423, 1618, 'Cb on 15/2/2019', '', '', '', 36, '2019-02-14 17:20:31', '0000-00-00'), (1424, 1616, 'Not Required', '', '', '', 36, '2019-02-14 17:21:29', '0000-00-00'), (1425, 1622, 'Static Website -7K - Executive to meet on 15/2/2019 at 10.00AM', '', '', '', 36, '2019-02-14 18:50:09', '0000-00-00'), (1426, 1622, 'Static Website -7K - Executive to meet on 15/2/2019 at 10.00AM', '', '', '', 36, '2019-02-14 18:50:09', '0000-00-00'), (1427, 1623, 'EXecutive to meet on 15/2/2019 at 12.00PM', '', '', '', 36, '2019-02-15 11:29:33', '0000-00-00'), (1428, 1624, 'Not Required', '', '', '', 36, '2019-02-15 11:32:16', '0000-00-00'), (1429, 1625, 'NR', '', '', '', 36, '2019-02-15 11:35:27', '0000-00-00'), (1430, 1627, 'Redesign of the website - Executive to meet on 15/2/2019 at 4PM', '', '', '', 36, '2019-02-15 11:41:40', '0000-00-00'), (1431, 1629, 'Dynamic Website - Executive to meet on 18/2/2019 at 10.30AM - Contact sahana - 9845231667', '', '', '', 36, '2019-02-15 12:37:37', '0000-00-00'), (1432, 1628, 'Dynamic Website - 11K - Client will CB', '', '', '', 36, '2019-02-15 12:39:07', '0000-00-00'), (1433, 1626, 'Not Required', '', '', '', 36, '2019-02-15 12:54:18', '0000-00-00'), (1434, 1630, 'Only Email', '', '', '', 36, '2019-02-15 15:45:42', '0000-00-00'), (1435, 1632, 'Temploraliy out of service', '', '', '', 36, '2019-02-15 16:19:43', '0000-00-00'), (1436, 1631, 'Only Email', '', '', '', 36, '2019-02-15 16:27:34', '0000-00-00'), (1437, 1633, 'Only Email', '', '', '', 36, '2019-02-15 16:37:02', '0000-00-00'), (1438, 1634, 'Clinet will CB', '', '', '', 36, '2019-02-15 17:07:28', '0000-00-00'), (1439, 1635, 'application like Zomato - client will Visit office', '', '', '', 36, '2019-02-15 17:21:10', '0000-00-00'), (1440, 1637, 'E - comm website - ajay sir informed', '', '', '', 36, '2019-02-15 18:07:07', '2019-02-15'), (1441, 1636, 'Temporary out of service ', '', '', '', 36, '2019-02-15 18:09:31', '0000-00-00'), (1442, 1638, 'Cb after 7.30', '', '', '', 36, '2019-02-15 18:59:18', '0000-00-00'), (1443, 1639, 'Basic Website - Client informed to Contact on 18/2/2019 - profile and link shared', '', '', '', 36, '2019-02-15 19:18:49', '0000-00-00'), (1444, 1642, 'Executive to meet on 18/2/2019 at 10.30AM', '', '', '', 36, '2019-02-18 10:05:11', '0000-00-00'), (1445, 1643, 'NS', '', '', '', 36, '2019-02-18 10:11:35', '0000-00-00'), (1446, 1652, 'E- comm Website - Cloth selling - Executive to meet on 18/2/2019', '', '', '', 36, '2019-02-18 10:33:15', '0000-00-00'), (1447, 1671, 'Dynamic Website - Logo - Broucher - Broucher - 15K - Informed to Contact on 5.00PM', '', '', '', 36, '2019-02-18 11:05:04', '0000-00-00'), (1448, 1672, 'Informed to CB at 12.30', '', '', '', 36, '2019-02-18 11:39:07', '0000-00-00'), (1449, 1670, 'Dynamic Website - 10 pages , - Only Designing part - Executive to meet on 18/2/2019 ', '', '', '', 36, '2019-02-18 11:45:06', '2019-02-18'), (1450, 1669, 'Switch off', '', '', '', 36, '2019-02-18 11:47:22', '0000-00-00'), (1451, 1673, 'Not Required( Searching for Something in website)', '', '', '', 36, '2019-02-18 11:50:31', '0000-00-00'), (1452, 1668, 'Not Required', '', '', '', 36, '2019-02-18 11:52:14', '0000-00-00'), (1453, 1667, 'Cb at 1.00PM', '', '', '', 36, '2019-02-18 11:54:19', '0000-00-00'), (1454, 1665, 'NS', '', '', '', 36, '2019-02-18 11:56:29', '0000-00-00'), (1455, 1666, 'NS', '', '', '', 36, '2019-02-18 11:57:33', '0000-00-00'), (1456, 1664, 'NS', '', '', '', 36, '2019-02-18 12:00:04', '0000-00-00'), (1457, 1663, 'Not required', '', '', '', 36, '2019-02-18 12:03:17', '0000-00-00'), (1458, 1664, 'Dynamic website - properties - Contact on 23/2/2019 ', '', '', '', 36, '2019-02-18 12:05:46', '2019-02-18'), (1459, 1641, 'Existing Client', '', '', '', 36, '2019-02-18 12:09:47', '0000-00-00'), (1460, 1643, 'Client will Cb when concered person comes', '', '', '', 36, '2019-02-18 12:13:36', '0000-00-00'), (1461, 1674, 'Executive to meet on 18/2/2019 at 2.30PM', '', '', '', 36, '2019-02-18 12:32:39', '0000-00-00'), (1462, 1646, 'CB at 4 - NGO Website ', '', '', '', 36, '2019-02-18 12:37:20', '0000-00-00'), (1463, 1675, 'NS', '', '', '', 36, '2019-02-18 12:38:54', '0000-00-00'), (1464, 1672, 'Cb at 5.00PM', '', '', '', 36, '2019-02-18 12:42:33', '0000-00-00'), (1465, 1677, 'Not Required', '', '', '', 36, '2019-02-18 13:20:31', '0000-00-00'), (1466, 1678, 'Client will mail the requirments', '', '', '', 36, '2019-02-18 13:40:41', '0000-00-00'), (1467, 1685, 'Not Required', '', '', '', 36, '2019-02-18 13:57:54', '0000-00-00'), (1468, 1679, 'B', '', '', '', 36, '2019-02-18 14:00:53', '0000-00-00'), (1469, 1675, 'Not Required', '', '', '', 36, '2019-02-18 14:31:23', '0000-00-00'), (1470, 1686, 'Only Email', '', '', '', 36, '2019-02-18 14:32:06', '0000-00-00'), (1471, 1662, 'psychologist - Dynamic Website - Company profile shared - Informed to Contact on 19/2/2019 for Executive meeting', '', '', '', 36, '2019-02-18 16:00:07', '2019-02-18'), (1472, 581, 'Cash Slip(nithin)\r\n', '1550487428Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-18 16:27:09', '0000-00-00'), (1473, 581, 'Client sheet(nithin)', '1550487452Clinet Sheet(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-18 16:27:32', '0000-00-00'), (1474, 1661, 'Only Email', '', '', '', 36, '2019-02-18 17:08:23', '0000-00-00'), (1475, 1660, 'B', '', '', '', 36, '2019-02-18 17:09:45', '0000-00-00'), (1476, 1659, 'Not Required', '', '', '', 36, '2019-02-18 17:11:30', '0000-00-00'), (1477, 1658, 'NS', '', '', '', 36, '2019-02-18 17:12:29', '0000-00-00'), (1478, 1657, 'JOB', '', '', '', 36, '2019-02-18 17:13:59', '0000-00-00'), (1479, 1656, 'Only Email', '', '', '', 36, '2019-02-18 17:14:28', '0000-00-00'), (1480, 1655, 'Not Required', '', '', '', 36, '2019-02-18 17:15:38', '0000-00-00'), (1481, 1653, 'Not Required( He searching something in google)', '', '', '', 36, '2019-02-18 17:22:20', '0000-00-00'), (1482, 1688, 'CW', '', '', '', 36, '2019-02-18 17:57:44', '0000-00-00'), (1483, 1689, 'Only Email', '', '', '', 36, '2019-02-18 18:02:03', '0000-00-00'), (1484, 1687, 'Construction - Single page static Website - 5K - Client will CB when they Required', '', '', '', 36, '2019-02-18 18:04:56', '0000-00-00'), (1485, 1650, 'CB', '', '', '', 36, '2019-02-18 18:08:14', '0000-00-00'), (1486, 1649, 'NS', '', '', '', 36, '2019-02-18 18:09:33', '0000-00-00'), (1487, 1648, 'Not Required', '', '', '', 36, '2019-02-18 18:11:01', '0000-00-00'), (1488, 1649, 'informed to contact on 20/2/2019', '', '', '', 36, '2019-02-18 18:13:04', '0000-00-00'), (1489, 1647, 'interior - Company profile shared informed to Contact on 19/2/2019 for meeting ', '', '', '', 36, '2019-02-18 18:16:58', '0000-00-00'), (1490, 1691, 'JOB', '', '', '', 36, '2019-02-18 18:28:28', '0000-00-00'), (1491, 1645, 'NS', '', '', '', 36, '2019-02-18 18:29:34', '0000-00-00'), (1492, 1644, 'Only Email', '', '', '', 36, '2019-02-18 18:30:43', '0000-00-00'), (1493, 1640, 'Existing Client', '', '', '', 36, '2019-02-18 18:32:26', '0000-00-00'), (1494, 1651, 'Only Email', '', '', '', 36, '2019-02-18 18:33:20', '0000-00-00'), (1495, 1692, 'NS', '', '', '', 36, '2019-02-18 18:48:40', '0000-00-00'), (1496, 1693, 'Cb on 19/2/2019', '', '', '', 36, '2019-02-18 19:15:15', '0000-00-00'), (1497, 1688, 'NS', '', '', '', 36, '2019-02-18 19:16:50', '0000-00-00'), (1498, 1697, 'Dynamic Website - Executive to meet on 19/2/2019 at 12.00PM', '', '', '', 36, '2019-02-19 10:32:27', '0000-00-00'), (1499, 1698, 'JOB', '', '', '', 36, '2019-02-19 10:39:10', '0000-00-00'), (1500, 1699, 'He will Search in the website regarding our company and he will CB', '', '', '', 36, '2019-02-19 10:43:44', '0000-00-00'), (1501, 1695, 'NS', '', '', '', 36, '2019-02-19 10:45:19', '0000-00-00'), (1502, 1700, 'Only Email', '', '', '', 36, '2019-02-19 10:47:31', '0000-00-00'), (1503, 1704, 'CB in eve', '', '', '', 36, '2019-02-19 11:29:42', '0000-00-00'), (1504, 1705, 'Not Required', '', '', '', 36, '2019-02-19 11:50:19', '0000-00-00'), (1505, 1703, 'NS', '', '', '', 36, '2019-02-19 11:51:33', '0000-00-00'), (1506, 1702, 'Not Required', '', '', '', 36, '2019-02-19 11:53:13', '0000-00-00'), (1507, 1662, 'Contact on 19/2/2019 for Executive meeting but NS', '', '', '', 36, '2019-02-19 11:54:59', '0000-00-00'), (1508, 1701, 'Not Required', '', '', '', 36, '2019-02-19 11:56:04', '0000-00-00'), (1509, 1706, 'Not Required', '', '', '', 36, '2019-02-19 12:19:19', '0000-00-00'), (1510, 1707, 'Informed to msg the interior design links , after the Client will CB', '', '', '', 36, '2019-02-19 12:29:59', '0000-00-00'), (1511, 577, 'Mail and watsapp sent regarding balance payment', '', '', 'ACTIVE', 36, '2019-02-19 12:44:06', '0000-00-00'), (1512, 561, 'Mail and msg through watsapp regarding the balance payment\r\n', '', '', 'ACTIVE', 36, '2019-02-19 12:52:39', '0000-00-00'), (1513, 1709, 'Not Required ( searching some company in website) ', '', '', '', 36, '2019-02-19 13:19:05', '0000-00-00'), (1514, 1708, 'Requirements mailed - Client will Cb at 19/2/2019 at 5.00PM', '', '', '', 36, '2019-02-19 13:21:35', '0000-00-00'), (1515, 1710, 'He will Collect all requirements and visit the office by eve - on 19/2/2019 at 6.00PM', '', '', '', 36, '2019-02-19 14:08:20', '0000-00-00'), (1516, 1711, 'Not Required', '', '', '', 36, '2019-02-19 14:11:42', '0000-00-00'), (1517, 1703, 'Switch off', '', '', '', 36, '2019-02-19 14:12:47', '0000-00-00'), (1518, 1692, 'Not required(they are into website)', '', '', '', 36, '2019-02-19 14:16:50', '0000-00-00'), (1519, 1712, 'Not Required', '', '', '', 36, '2019-02-19 14:19:02', '0000-00-00'), (1520, 1713, 'JOB', '', '', '', 36, '2019-02-19 14:19:46', '0000-00-00'), (1521, 1699, 'He will Search in the website regarding our company and he will CB but NS', '', '', '', 36, '2019-02-19 14:22:02', '0000-00-00'), (1522, 1679, 'Not Required', '', '', '', 36, '2019-02-19 14:24:29', '0000-00-00'), (1523, 1671, 'Dynamic Website - Logo - Broucher - Broucher - 15K - Client is busy he will only CB', '', '', '', 36, '2019-02-19 14:26:21', '0000-00-00'), (1524, 1714, 'Client will Cb when he free', '', '', '', 36, '2019-02-19 16:02:34', '0000-00-00'), (1525, 1715, 'Not Required ( She is a content writer)', '', '', '', 36, '2019-02-19 16:50:55', '0000-00-00'), (1526, 1717, 'E - Comm Website - 35K + GST - shared', '', '', '', 36, '2019-02-19 18:19:04', '2019-02-19'), (1527, 1719, 'Switch off', '', '', '', 36, '2019-02-20 10:23:07', '0000-00-00'), (1528, 1720, 'Only Email', '', '', '', 36, '2019-02-20 10:24:40', '0000-00-00'), (1529, 1721, 'Not Required', '', '', '', 36, '2019-02-20 10:26:02', '0000-00-00'), (1530, 1722, 'Only Email', '', '', '', 36, '2019-02-20 10:29:20', '0000-00-00'), (1531, 1723, 'Interior design - PPT - Profile , Dynamic Website - Executive to meet on 20/20/2019 at 4PM', '', '', '', 36, '2019-02-20 11:26:35', '0000-00-00'), (1532, 1724, 'Construction Company - Executive to meet on 20/2/2019 at 4PM', '', '', '', 36, '2019-02-20 11:33:40', '0000-00-00'), (1533, 1725, 'CA - Dynamic Website - 12K - Static Website - 8K Client will CB before 4 regarding meeting', '', '', '', 36, '2019-02-20 11:36:29', '2019-02-20'), (1534, 1728, 'swimming pool website - 6K - Executive to meet on 20/2/2019 at 4.00PM', '', '', '', 36, '2019-02-20 15:42:03', '0000-00-00'), (1535, 1738, 'E - comm website - 22K informed to call on 21/2/2019\r\nHe told not to call again, he is not interested ', '', '', '', 158, '2019-02-20 17:29:11', '2019-05-11'), (1536, 582, 'Client sheet(Nithin)', '1550666632Cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-20 18:13:52', '0000-00-00'), (1537, 582, 'Clinet sheet (nithin)', '1550666788Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-20 18:16:28', '0000-00-00'), (1538, 582, 'Advance Check(5000) - 21/2/2019', '1550666822Advance Check.jpg', '', 'ACTIVE', 36, '2019-02-20 18:17:02', '0000-00-00'), (1539, 1741, 'Existing Client', '', '', '', 36, '2019-02-20 18:34:44', '0000-00-00'), (1540, 1740, 'B', '', '', '', 36, '2019-02-20 18:49:41', '0000-00-00'), (1541, 1739, 'Not Required', '', '', '', 36, '2019-02-20 18:50:19', '0000-00-00'), (1542, 1737, 'NS', '', '', '', 36, '2019-02-20 18:51:51', '0000-00-00'), (1543, 1737, 'tours and travels - Link shared - informed to contact on 21/2/2019', '', '', '', 36, '2019-02-20 19:35:53', '0000-00-00'), (1544, 1736, 'NS', '', '', '', 36, '2019-02-20 19:37:23', '0000-00-00'), (1545, 1735, 'Switch off', '', '', '', 36, '2019-02-20 19:38:04', '0000-00-00'), (1546, 1742, 'Not Required', '', '', '', 36, '2019-02-21 10:24:14', '2019-02-21'), (1547, 1746, 'Static Website - only 5 pages and hosting charges 7K', '', '', '', 36, '2019-02-21 11:29:46', '0000-00-00'), (1548, 1745, 'NS', '', '', '', 36, '2019-02-21 11:30:33', '0000-00-00'), (1549, 578, 'Final payment 6K (21/2/2019)', '1550730309Final Paymnet screen shot.jpg', '', 'ACTIVE', 36, '2019-02-21 11:55:09', '0000-00-00'), (1550, 583, 'Cash Slip (Nithin)', '1550731053Cash slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-21 12:07:33', '0000-00-00'), (1551, 583, 'Client sheet (Nithin)', '1550731071Client sheet(nithin).jpg', '', 'ACTIVE', 36, '2019-02-21 12:07:51', '0000-00-00'), (1552, 1747, 'Not Required', '', '', '', 36, '2019-02-21 12:11:02', '0000-00-00'), (1553, 1748, 'NS', '', '', '', 36, '2019-02-21 12:35:49', '0000-00-00'), (1554, 584, 'Cash Slip(nithin)', '1550733875Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-21 12:54:35', '0000-00-00'), (1555, 584, 'Visiting card', '1550733891Visiting card.jpg', '', 'ACTIVE', 36, '2019-02-21 12:54:51', '0000-00-00'), (1556, 1751, 'number not valid', '', '', '', 36, '2019-02-21 13:05:26', '0000-00-00'), (1557, 1750, 'Not Required', '', '', '', 36, '2019-02-21 13:07:43', '0000-00-00'), (1558, 1749, 'NS', '', '', '', 36, '2019-02-21 13:08:47', '0000-00-00'), (1559, 1748, 'Cb lot of noise', '', '', '', 36, '2019-02-21 13:12:05', '0000-00-00'), (1560, 1745, 'E - comm website 5GB space. I informed for 1 GB it will be 35K + GST', '', '', '', 36, '2019-02-21 13:16:29', '0000-00-00'), (1561, 1744, 'Not Required', '', '', '', 36, '2019-02-21 13:19:35', '0000-00-00'), (1562, 1743, 'Not Required', '', '', '', 36, '2019-02-21 13:20:45', '0000-00-00'), (1563, 1734, 'NS', '', '', '', 36, '2019-02-21 13:22:02', '0000-00-00'), (1564, 1733, 'Not Required ( he is an developer) ', '', '', '', 36, '2019-02-21 13:23:46', '0000-00-00'), (1565, 1732, 'Only Email', '', '', '', 36, '2019-02-21 13:24:25', '0000-00-00'), (1566, 1731, 'Not Required', '', '', '', 36, '2019-02-21 13:25:46', '0000-00-00'), (1567, 1730, 'Not Required', '', '', '', 36, '2019-02-21 13:27:05', '0000-00-00'), (1568, 1752, 'Not Required', '', '', '', 36, '2019-02-21 13:34:07', '0000-00-00'), (1569, 1729, 'Ajay sir spoked - single page -7K additional page - 12K , add words configuration once - 5000 - informed through watsapp', '', '', '', 36, '2019-02-21 13:35:38', '0000-00-00'), (1570, 1753, 'NR', '', '', '', 36, '2019-02-21 15:57:56', '0000-00-00'), (1571, 1758, 'Not Required ( he is a justdail Employee - checking the reviews over there )', '', '', '', 36, '2019-02-21 16:40:04', '0000-00-00'), (1572, 1757, 'Home product - application like zomato - not potential', '', '', '', 36, '2019-02-21 16:57:04', '0000-00-00'), (1573, 1748, 'JOB', '', '', '', 36, '2019-02-21 17:32:04', '0000-00-00'), (1574, 1759, 'Informed to Cb at 6.30', '', '', '', 36, '2019-02-21 17:36:14', '0000-00-00'), (1575, 1756, 'JOB', '', '', '', 36, '2019-02-21 17:37:36', '0000-00-00'), (1576, 1755, 'Single page static Website - 5K - real estate - informed to contact on 22/2/2019', '', '', '', 36, '2019-02-21 18:02:32', '0000-00-00'), (1577, 1754, 'CW', '', '', '', 36, '2019-02-21 18:04:43', '0000-00-00'), (1578, 1761, 'Single page static Website(5K) - Executive to meet on 22/2/2019 around 11', '', '', '', 36, '2019-02-21 18:09:11', '0000-00-00'), (1579, 1762, 'Number not vaild', '', '', '', 36, '2019-02-21 18:11:13', '0000-00-00'), (1580, 1754, 'Security and man power services(5K) - single page static Website - he will come to office on 22/2/2019 at 2PM', '', '', '', 36, '2019-02-21 18:16:46', '0000-00-00'), (1581, 1753, 'NR', '', '', '', 36, '2019-02-21 18:17:58', '0000-00-00'), (1582, 1749, 'NS', '', '', '', 36, '2019-02-21 18:19:45', '0000-00-00'), (1583, 1763, 'B', '', '', '', 36, '2019-02-22 10:44:16', '0000-00-00'), (1584, 1769, 'JOB', '', '', '', 36, '2019-02-22 12:12:37', '0000-00-00'), (1585, 1770, 'Not Required', '', '', '', 36, '2019-02-22 12:47:21', '0000-00-00'), (1586, 1765, 'His friend enquired - he will inform to contact him', '', '', '', 36, '2019-02-22 12:48:24', '0000-00-00'), (1587, 1050, 'Switch off', '', '', '', 36, '2019-02-22 12:54:16', '0000-00-00'), (1588, 1774, 'NS', '', '', '', 36, '2019-02-22 13:00:42', '0000-00-00'), (1589, 1775, 'Only Email', '', '', '', 36, '2019-02-22 13:46:06', '0000-00-00'), (1590, 1776, 'Not Required', '', '', '', 36, '2019-02-22 15:51:24', '0000-00-00'), (1591, 585, 'Cash Slip(Nithin)', '1550832285Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-02-22 16:14:45', '0000-00-00'), (1592, 585, 'Client sheet(Nithin)', '1550832303Client Sheet(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-22 16:15:03', '0000-00-00'), (1593, 1778, 'Executive to meet on 23/2/2019 at 9.00AM\r\npls call him once before living', '', '', '', 36, '2019-02-22 16:26:20', '0000-00-00'), (1594, 1779, 'Not Required ( Searching for some mobile repair) ', '', '', '', 36, '2019-02-22 17:39:00', '0000-00-00'), (1595, 1780, 'Not Required ( He is a developer )', '', '', '', 36, '2019-02-22 19:07:02', '0000-00-00'), (1596, 1781, 'Not Required ( He is a developer )', '', '', '', 36, '2019-02-23 10:32:13', '0000-00-00'), (1597, 1782, 'Only Email', '', '', '', 36, '2019-02-23 10:33:22', '0000-00-00'), (1599, 1783, 'Dynamic Website, logo, Blog - Client will mail the requirements.', '', '', '', 36, '2019-02-23 10:47:42', '0000-00-00'), (1600, 1784, 'Client will CB 12.00', '', '', '', 36, '2019-02-23 10:57:23', '0000-00-00'), (1601, 1785, 'B', '', '', '', 36, '2019-02-23 11:31:33', '0000-00-00'), (1602, 1786, 'The client will visit the office on 25/2/2019', '', '', '', 36, '2019-02-23 11:53:34', '0000-00-00'), (1603, 1787, 'Not Required ( Looking for lead generator service)', '', '', '', 36, '2019-02-23 12:23:30', '0000-00-00'), (1604, 1789, 'Only Email', '', '', '', 36, '2019-02-23 12:38:17', '0000-00-00'), (1605, 1792, 'E - comm website - Executive to meet on 23/2/2019 before 3.30PM', '', '', '', 36, '2019-02-23 13:19:35', '0000-00-00'), (1606, 1793, 'event management company - Dynamic Website -11K for meeting contact on 25/2/2019', '', '', '', 36, '2019-02-23 13:39:02', '0000-00-00'), (1607, 1794, 'Not Required', '', '', '', 36, '2019-02-23 13:45:47', '0000-00-00'), (1608, 1797, 'Only Email', '', '', '', 36, '2019-02-23 16:18:03', '0000-00-00'), (1609, 1798, 'Not Required', '', '', '', 36, '2019-02-23 16:34:11', '0000-00-00'), (1610, 588, 'Cash Slip(Nithin)', '1550920371Cash Slip(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-23 16:42:51', '0000-00-00'), (1611, 588, 'Client Sheet(Nithin)', '1550920406Client Sheet(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-23 16:43:26', '0000-00-00'), (1612, 588, 'Full Payment check received(23/2/2019)', '1550920527Full Payment Check (Nithin).jpg', '', 'ACTIVE', 36, '2019-02-23 16:45:27', '0000-00-00'); INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (1613, 589, '1,000 payment received - Cash( Nithin)', '', '', 'ACTIVE', 36, '2019-02-23 16:47:14', '0000-00-00'), (1614, 589, 'Invoice sent for 1K ', '1550920702Invoice_Sai Charan.pdf', '', 'ACTIVE', 36, '2019-02-23 16:47:14', '2019-02-23'), (1615, 587, 'Advance Check of Rs. 10K Received(Nithin)', '1550920797Advance check(nithin).jpg', '', 'ACTIVE', 36, '2019-02-23 16:49:57', '0000-00-00'), (1616, 1799, 'CB after 5/3/2019', '', '', '', 36, '2019-02-23 17:19:50', '0000-00-00'), (1617, 1800, 'Informed to Ajay sir - Quote shared to client of Rs,4L + GST', '', '', '', 36, '2019-02-23 18:56:54', '0000-00-00'), (1618, 1802, 'NS', '', '', '', 36, '2019-02-23 18:57:24', '0000-00-00'), (1619, 1801, 'B', '', '', '', 36, '2019-02-23 18:57:49', '0000-00-00'), (1620, 1803, 'Not Required ( they are the developer )', '', '', '', 36, '2019-02-25 10:11:30', '0000-00-00'), (1621, 1812, 'School Website - Executive to meet on 25/2/2019 before 3.30PM', '', '', '', 36, '2019-02-25 10:59:51', '0000-00-00'), (1622, 1814, 'Informed to subbu sir', '', '', '', 36, '2019-02-25 11:29:13', '0000-00-00'), (1623, 1813, 'Not Required', '', '', '', 36, '2019-02-25 11:31:07', '0000-00-00'), (1624, 1816, 'Client will share the link - redesign of the website ', '', '', '', 36, '2019-02-25 11:50:37', '0000-00-00'), (1625, 1786, 'Executive to meet on 25/2/2019 ', '', '', '', 36, '2019-02-25 12:33:11', '0000-00-00'), (1626, 1811, 'Not Required', '', '', '', 36, '2019-02-25 12:34:43', '0000-00-00'), (1627, 1810, 'CW', '', '', '', 36, '2019-02-25 12:35:23', '0000-00-00'), (1628, 1809, 'google add words and static Website - Executive to meet on 25/2/2019 at 4.00PM', '', '', '', 36, '2019-02-25 12:41:04', '0000-00-00'), (1629, 1808, 'NS', '', '', '', 36, '2019-02-25 12:43:54', '0000-00-00'), (1630, 1807, 'Voice not audible cb', '', '', '', 36, '2019-02-25 12:46:22', '0000-00-00'), (1631, 1810, 'Informed to subbu sir\r\n', '', '', '', 36, '2019-02-25 12:54:09', '0000-00-00'), (1632, 1819, 'NS', '', '', '', 36, '2019-02-25 12:54:58', '0000-00-00'), (1633, 1818, 'B', '', '', '', 36, '2019-02-25 13:02:04', '0000-00-00'), (1634, 1817, 'NS', '', '', '', 36, '2019-02-25 13:04:39', '0000-00-00'), (1635, 1820, 'CW', '', '', '', 36, '2019-02-25 13:19:13', '0000-00-00'), (1636, 1808, 'Not Required ( Searching for Something in the website)', '', '', '', 36, '2019-02-25 13:27:29', '0000-00-00'), (1637, 1821, 'Not Required', '', '', '', 36, '2019-02-25 13:55:10', '0000-00-00'), (1638, 1823, 'NS', '', '', '', 36, '2019-02-25 14:27:30', '0000-00-00'), (1639, 1819, 'matrimony website - informed subbu sir', '', '', '', 36, '2019-02-25 14:32:36', '0000-00-00'), (1640, 1822, 'Quote shared - informed by ajay sir', '', '', '', 36, '2019-02-25 15:29:35', '0000-00-00'), (1641, 1824, 'Only Email', '', '', '', 36, '2019-02-25 15:30:51', '0000-00-00'), (1642, 1825, 'Not Required', '', '', '', 36, '2019-02-25 16:33:41', '0000-00-00'), (1643, 1826, 'Number does not valid', '', '', '', 36, '2019-02-25 17:09:57', '0000-00-00'), (1644, 1827, 'CW', '', '', '', 36, '2019-02-25 17:11:00', '0000-00-00'), (1645, 591, 'Cash Slip(Nithin)', '1551095057Cash Slip(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-25 17:14:18', '0000-00-00'), (1646, 591, 'Client sheet(Nithin)', '1551095079Client Sheet(Nithin).jpg', '', 'ACTIVE', 36, '2019-02-25 17:14:39', '0000-00-00'), (1647, 1806, ' NR', '', '', '', 36, '2019-02-25 19:08:36', '0000-00-00'), (1648, 1805, 'Company profile and reference link shared', '', '', '', 36, '2019-02-25 19:11:17', '0000-00-00'), (1649, 1791, 'NR', '', '', '', 36, '2019-02-25 19:15:23', '0000-00-00'), (1650, 1828, 'clg website - informed to contact at 11.30 for meeting', '', '', '', 36, '2019-02-26 10:43:49', '0000-00-00'), (1651, 1829, 'Not Required ( looking for the content writer)', '', '', '', 36, '2019-02-26 10:54:52', '0000-00-00'), (1652, 1830, 'Only Email', '', '', '', 36, '2019-02-26 10:58:34', '0000-00-00'), (1653, 1831, 'presently he don\'t have any Requirments. Client will CB when he need', '', '', '', 36, '2019-02-26 11:41:16', '0000-00-00'), (1654, 1832, 'B', '', '', '', 36, '2019-02-26 11:59:54', '0000-00-00'), (1655, 1827, 'NS', '', '', '', 36, '2019-02-26 12:02:17', '0000-00-00'), (1656, 1827, 'NS', '', '', '', 36, '2019-02-26 12:02:17', '0000-00-00'), (1657, 1823, 'Not Required', '', '', '', 36, '2019-02-26 12:03:40', '0000-00-00'), (1658, 1820, 'NS', '', '', '', 36, '2019-02-26 12:04:51', '0000-00-00'), (1659, 1827, 'App required - she will mail the requirments', '', '', '', 36, '2019-02-26 12:08:15', '0000-00-00'), (1660, 1805, 'The client will CB on 27/2/2019 for executive meet - Company profile and link shared', '', '', '', 36, '2019-02-26 12:09:55', '0000-00-00'), (1661, 1818, 'Not Required', '', '', '', 36, '2019-02-26 12:11:20', '0000-00-00'), (1662, 1830, 'Information shared through watsapp - Dynamic Website ', '', '', '', 36, '2019-02-26 12:15:14', '0000-00-00'), (1663, 1833, 'NGO website - single page static Website - (5K) - Client will CB', '', '', '', 36, '2019-02-26 12:22:50', '0000-00-00'), (1664, 1835, 'NS', '', '', '', 36, '2019-02-26 12:36:39', '0000-00-00'), (1665, 1834, 'Not Required', '', '', '', 36, '2019-02-26 12:37:39', '0000-00-00'), (1666, 1836, 'School website - with SMS Sending to parents ,per sms 15paise, Total price - 17K + GST - ajay sir spoked\r\nExecutive to meet on 26/2/2019 at 4PM', '', '', '', 36, '2019-02-26 13:21:44', '0000-00-00'), (1668, 1837, 'Informed to Executive to meet', '', '', '', 36, '2019-02-26 14:02:41', '0000-00-00'), (1669, 1837, 'Informed to Executive to meet', '', '', '', 36, '2019-02-26 14:02:42', '0000-00-00'), (1670, 1838, 'Executive to meet on 26/2/2019 ', '', '', '', 36, '2019-02-26 15:36:08', '0000-00-00'), (1671, 1840, 'Cb on 27/2/2019', '', '', '', 36, '2019-02-26 17:23:24', '0000-00-00'), (1672, 1844, 'Not Required', '', '', '', 36, '2019-02-26 17:42:55', '0000-00-00'), (1673, 1846, 'only Email', '', '', '', 36, '2019-02-27 10:48:36', '0000-00-00'), (1674, 1849, 'E- comm website - Quote to be shared', '', '', '', 36, '2019-02-27 10:59:09', '0000-00-00'), (1675, 1845, 'Not Required', '', '', '', 36, '2019-02-27 10:59:41', '0000-00-00'), (1676, 1848, 'NS', '', '', '', 36, '2019-02-27 11:17:28', '0000-00-00'), (1677, 1847, '50,000 Email Ids - subbu sir\r\n', '', '', '', 36, '2019-02-27 11:20:13', '0000-00-00'), (1678, 1855, 'CW', '', '', '', 36, '2019-02-27 12:35:44', '0000-00-00'), (1679, 1854, 'B', '', '', '', 36, '2019-02-27 12:36:17', '0000-00-00'), (1680, 1856, 'NS', '', '', '', 36, '2019-02-27 12:56:43', '0000-00-00'), (1681, 1852, 'CW', '', '', '', 36, '2019-02-27 12:57:14', '0000-00-00'), (1682, 1853, 'Only Email', '', '', '', 36, '2019-02-27 12:59:19', '0000-00-00'), (1683, 1851, 'Informed regarding the package - he will Call when he required', '', '', '', 36, '2019-02-27 13:01:49', '0000-00-00'), (1684, 1857, 'Only Email', '', '', '', 36, '2019-02-27 13:03:11', '0000-00-00'), (1685, 1858, 'Not Required', '', '', '', 36, '2019-02-27 13:06:14', '0000-00-00'), (1686, 1850, 'B', '', '', '', 36, '2019-02-27 13:08:29', '0000-00-00'), (1687, 1843, 'Not Required', '', '', '', 36, '2019-02-27 13:09:31', '0000-00-00'), (1688, 1842, 'Not Required', '', '', '', 36, '2019-02-27 13:11:00', '0000-00-00'), (1689, 1859, 'NS', '', '', '', 36, '2019-02-27 13:57:16', '0000-00-00'), (1690, 1860, 'E - comm website - 30K Quote shared', '', '', '', 36, '2019-02-27 14:12:25', '0000-00-00'), (1691, 491, 'Client will CB when they need', '', '', '', 36, '2019-02-28 10:46:22', '0000-00-00'), (1692, 1861, 'NS', '', '', '', 36, '2019-02-28 11:02:37', '0000-00-00'), (1693, 1862, 'Not Required', '', '', '', 36, '2019-02-28 11:04:46', '0000-00-00'), (1694, 1863, 'JOB', '', '', '', 36, '2019-02-28 11:07:01', '0000-00-00'), (1695, 1865, 'Executive to meet on 28/2/2019 at 4.00PM', '', '', '', 36, '2019-02-28 11:15:30', '0000-00-00'), (1696, 1866, 'pets website - client will CB when he need', '', '', '', 36, '2019-02-28 11:21:15', '0000-00-00'), (1697, 1864, 'Only Email', '', '', '', 36, '2019-02-28 11:22:33', '0000-00-00'), (1698, 1867, 'CW', '', '', '', 36, '2019-02-28 11:23:05', '0000-00-00'), (1699, 1867, 'Not Required', '', '', '', 36, '2019-02-28 11:24:05', '0000-00-00'), (1700, 1868, 'NR', '', '', '', 36, '2019-02-28 11:25:45', '0000-00-00'), (1701, 1869, 'NS', '', '', '', 36, '2019-02-28 11:38:37', '0000-00-00'), (1702, 1870, 'Executive to meet on 28/2/2019 at 12.00PM', '', '', '', 36, '2019-02-28 11:42:23', '0000-00-00'), (1703, 1871, 'Temporally out of service', '', '', '', 36, '2019-02-28 11:50:10', '0000-00-00'), (1704, 1872, 'aviation and training institute - domain from the Client side - 5 to 10 pages - 9,000(static Website) ', '', '', '', 36, '2019-02-28 11:52:53', '2019-02-28'), (1705, 1873, 'NS', '', '', '', 36, '2019-02-28 11:56:24', '0000-00-00'), (1706, 1874, 'NS', '', '', '', 36, '2019-02-28 11:58:03', '0000-00-00'), (1707, 1869, 'E- comm website(medicine) -Executive to meet on 1/3/2019 at 10.00AM', '', '', '', 36, '2019-02-28 12:04:42', '0000-00-00'), (1708, 1875, 'Client will Visit office', '', '', '', 36, '2019-02-28 12:29:35', '2019-02-28'), (1709, 1876, 'Not Required ( Looking for the Freelancer)', '', '', '', 36, '2019-02-28 12:37:05', '0000-00-00'), (1710, 1877, 'NS', '', '', '', 36, '2019-02-28 13:31:40', '0000-00-00'), (1711, 1879, 'Restaurant - Executive to meet on 1/3/2019 ', '', '', '', 36, '2019-02-28 17:06:46', '0000-00-00'), (1712, 1881, 'Client will CB', '', '', '', 36, '2019-02-28 17:10:09', '0000-00-00'), (1713, 1882, 'Not Required ( they are into developing)', '', '', '', 36, '2019-02-28 17:12:35', '0000-00-00'), (1714, 1886, 'Company profile and link shared - Executive to meet on 1/3/2019 before 9.30AM', '', '', '', 36, '2019-02-28 18:29:35', '0000-00-00'), (1715, 1888, 'Link shared to client', '', '', '', 36, '2019-03-01 10:56:36', '0000-00-00'), (1716, 1890, 'NR', '', '', '', 36, '2019-03-01 11:00:44', '0000-00-00'), (1717, 1891, 'Not Required', '', '', '', 36, '2019-03-01 11:02:55', '0000-00-00'), (1718, 1892, 'Only Email', '', '', '', 36, '2019-03-01 11:04:19', '0000-00-00'), (1719, 1896, 'Only Email', '', '', '', 36, '2019-03-01 11:10:37', '0000-00-00'), (1720, 1899, 'Only Email', '', '', '', 36, '2019-03-01 11:14:17', '0000-00-00'), (1721, 1900, 'Not Required', '', '', '', 36, '2019-03-01 11:21:47', '0000-00-00'), (1722, 1898, 'CW', '', '', '', 36, '2019-03-01 11:28:22', '0000-00-00'), (1723, 1897, 'Only Email', '', '', '', 36, '2019-03-01 11:28:53', '0000-00-00'), (1724, 1895, 'Not Required', '', '', '', 36, '2019-03-01 11:38:00', '0000-00-00'), (1725, 1894, 'Cb at 8PM', '', '', '', 36, '2019-03-01 11:40:55', '0000-00-00'), (1726, 1893, 'NR', '', '', '', 36, '2019-03-01 11:44:14', '0000-00-00'), (1727, 1903, 'SMS per month - 2000 ', '', '', '', 36, '2019-03-01 12:36:09', '0000-00-00'), (1728, 1901, 'Client will Visit office', '', '', '', 36, '2019-03-01 12:38:02', '0000-00-00'), (1729, 580, 'Final Check of Rs.5440', '', '', 'ACTIVE', 36, '2019-03-01 12:49:01', '2019-03-01'), (1730, 1904, 'NS', '', '', '', 36, '2019-03-01 14:16:34', '0000-00-00'), (1731, 1904, 'Basic Website or e - comm - Executive to meet on 2/2/2019 at 10.30AM', '', '', '', 36, '2019-03-01 16:21:42', '0000-00-00'), (1732, 1908, 'NS', '', '', '', 36, '2019-03-01 16:36:05', '0000-00-00'), (1733, 1910, 'not Required ( games app)', '', '', '', 36, '2019-03-01 17:19:01', '0000-00-00'), (1734, 536, '16K 2nd installment payment received', '15514479482nd installment payment(16K).jpg', '', 'ACTIVE', 36, '2019-03-01 19:15:48', '0000-00-00'), (1735, 595, 'Approved Logo', '1551448152logo approved.jpg', '', 'ACTIVE', 36, '2019-03-01 19:19:12', '0000-00-00'), (1736, 1914, 'NS', '', '', '', 36, '2019-03-05 10:17:18', '0000-00-00'), (1737, 1915, 'Informed to subbu sir', '', '', '', 36, '2019-03-05 10:24:06', '0000-00-00'), (1738, 1916, 'NS', '', '', '', 36, '2019-03-05 10:28:23', '0000-00-00'), (1739, 1917, 'Executive to meet on 5/3/2019 ', '', '', '', 36, '2019-03-05 10:32:32', '0000-00-00'), (1740, 1913, 'NS', '', '', '', 36, '2019-03-05 10:35:24', '0000-00-00'), (1741, 1918, 'NS', '', '', '', 36, '2019-03-05 10:39:58', '0000-00-00'), (1742, 1919, 'B', '', '', '', 36, '2019-03-05 10:45:11', '0000-00-00'), (1743, 1920, 'CB at 11.30', '', '', '', 36, '2019-03-05 10:45:58', '0000-00-00'), (1744, 1921, 'CW', '', '', '', 36, '2019-03-05 10:47:54', '0000-00-00'), (1745, 1922, 'informed through msg', '', '', '', 36, '2019-03-05 10:50:06', '0000-00-00'), (1746, 1923, 'Not Required ( service provider)', '', '', '', 36, '2019-03-05 10:51:56', '0000-00-00'), (1747, 1924, 'Only Email', '', '', '', 36, '2019-03-05 10:53:38', '0000-00-00'), (1748, 1925, 'CW', '', '', '', 36, '2019-03-05 10:55:01', '0000-00-00'), (1749, 1926, 'CB at 11.30', '', '', '', 36, '2019-03-05 10:56:27', '0000-00-00'), (1750, 1927, 'NS', '', '', '', 36, '2019-03-05 11:02:32', '0000-00-00'), (1751, 1927, 'Not Required', '', '', '', 36, '2019-03-05 11:02:59', '0000-00-00'), (1752, 1928, 'Not Required', '', '', '', 36, '2019-03-05 11:05:10', '0000-00-00'), (1753, 1929, 'JOB (Not required', '', '', '', 36, '2019-03-05 11:06:46', '0000-00-00'), (1754, 1930, 'Not Required', '', '', '', 36, '2019-03-05 11:16:58', '0000-00-00'), (1755, 1931, 'Not Required', '', '', '', 36, '2019-03-05 11:24:34', '0000-00-00'), (1756, 1932, 'Static Website - 15 pages - 13K ( reference link shared)', '', '', '', 36, '2019-03-05 11:28:11', '0000-00-00'), (1757, 1933, 'Not Required (Domain has to transfer no need for website )', '', '', '', 36, '2019-03-05 11:34:12', '0000-00-00'), (1758, 1926, 'Executive to meet on 5/3/2019 at 12.00PM', '', '', '', 36, '2019-03-05 11:41:41', '0000-00-00'), (1759, 1920, 'NS', '', '', '', 36, '2019-03-05 11:44:50', '0000-00-00'), (1760, 1935, 'NS', '', '', '', 36, '2019-03-05 11:46:23', '0000-00-00'), (1761, 1936, 'NS', '', '', '', 36, '2019-03-05 11:51:30', '0000-00-00'), (1762, 1937, 'Ony Email', '', '', '', 36, '2019-03-05 11:53:20', '0000-00-00'), (1763, 1934, 'CW', '', '', '', 36, '2019-03-05 11:55:25', '0000-00-00'), (1764, 1939, 'B', '', '', '', 36, '2019-03-05 11:56:46', '0000-00-00'), (1765, 1940, 'chilloutenglish.com - redesign - Executive to meet on 5/2/2019 at 5.30 to 6.30PM', '', '', '', 36, '2019-03-05 12:04:54', '0000-00-00'), (1766, 1941, 'Incoming call bared', '', '', '', 36, '2019-03-05 12:08:17', '0000-00-00'), (1767, 1942, 'Not Required', '', '', '', 36, '2019-03-05 12:10:55', '0000-00-00'), (1768, 1943, 'Client will mail the requirements', '', '', '', 36, '2019-03-05 12:26:54', '0000-00-00'), (1769, 1944, 'Not Required', '', '', '', 36, '2019-03-05 12:28:28', '0000-00-00'), (1770, 1945, 'Only Email', '', '', '', 36, '2019-03-05 12:29:55', '0000-00-00'), (1771, 1946, 'Not Required', '', '', '', 36, '2019-03-05 12:34:06', '0000-00-00'), (1772, 1947, 'NS', '', '', '', 36, '2019-03-05 12:37:50', '0000-00-00'), (1773, 1948, 'Only Email', '', '', '', 36, '2019-03-05 12:39:00', '0000-00-00'), (1774, 1949, 'Switch off', '', '', '', 36, '2019-03-05 12:40:28', '0000-00-00'), (1775, 1950, 'CW', '', '', '', 36, '2019-03-05 12:42:03', '0000-00-00'), (1776, 1952, 'Existing client', '', '', '', 36, '2019-03-05 13:05:01', '0000-00-00'), (1777, 339, 'Additional Requirments ( Quotation shared on 5/3/2019)', '1551771873Quotation_ A&M.pdf', '', 'ACTIVE', 36, '2019-03-05 13:14:33', '0000-00-00'), (1778, 1926, 'Quotation for Static Website( shared on 5/3/2019)', '1551774459Quotation_Vijaykumar(mysore Road).pdf', '', '', 36, '2019-03-05 13:57:39', '0000-00-00'), (1779, 1953, 'Informed to subbu sir', '', '', '', 36, '2019-03-05 14:05:16', '0000-00-00'), (1780, 1953, 'Subbu sir contact num shared', '', '', '', 36, '2019-03-05 14:10:42', '0000-00-00'), (1781, 1961, 'Existing client', '', '', '', 36, '2019-03-05 15:49:38', '0000-00-00'), (1782, 318, 'Quotation shared for payment gateway integration( 5/3/2019)', '1551781775Quotation_Redstone.pdf', '', 'ACTIVE', 36, '2019-03-05 15:59:35', '0000-00-00'), (1783, 1962, 'Quotation shared for Redesign of website', '1551782637Web Design for yash patel.pdf', '', '', 36, '2019-03-05 16:13:57', '0000-00-00'), (1784, 1965, 'Only Email', '', '', '', 36, '2019-03-05 16:22:02', '0000-00-00'), (1785, 588, 'Invoice Shared to client on 5/3/2019', '1551783713Invoice_Turbmax.pdf', '', 'ACTIVE', 36, '2019-03-05 16:31:53', '0000-00-00'), (1786, 339, 'Revised Quote shared (5/3/2019)', '1551784198Quotation_A&M( Revised).pdf', '', 'ACTIVE', 36, '2019-03-05 16:39:58', '0000-00-00'), (1787, 1965, 'Not Required', '', '', '', 36, '2019-03-05 17:03:30', '0000-00-00'), (1788, 1964, 'Not Required ( by mistake)', '', '', '', 36, '2019-03-05 17:04:40', '2019-03-05'), (1789, 1966, 'The client will Visit office on 6/3/2019 at 11.00', '', '', '', 36, '2019-03-05 18:08:53', '0000-00-00'), (1790, 1963, 'Not required', '', '', '', 36, '2019-03-05 18:31:45', '0000-00-00'), (1791, 1967, 'Not Required( same service)', '', '', '', 36, '2019-03-05 18:35:08', '0000-00-00'), (1792, 1972, 'Not Required', '', '', '', 36, '2019-03-06 10:24:44', '0000-00-00'), (1793, 1975, 'Not Required( he is a developer)', '', '', '', 36, '2019-03-06 10:29:46', '0000-00-00'), (1794, 1976, 'CW', '', '', '', 36, '2019-03-06 10:33:22', '0000-00-00'), (1795, 1974, 'B', '', '', '', 36, '2019-03-06 10:36:11', '0000-00-00'), (1796, 1970, 'CW', '', '', '', 36, '2019-03-06 10:37:25', '0000-00-00'), (1797, 1976, 'Security Service - Executive to meet on 6/3/2019 around 2.30', '', '', '', 36, '2019-03-06 10:47:11', '0000-00-00'), (1798, 1970, 'e - comm website - Company profile and links shared', '', '', '', 36, '2019-03-06 11:00:56', '0000-00-00'), (1799, 561, 'Mail sent regarding balance payment of rs.6000', '', '', 'ACTIVE', 36, '2019-03-06 11:13:36', '0000-00-00'), (1800, 1977, 'Not Required', '', '', '', 36, '2019-03-06 11:23:31', '0000-00-00'), (1801, 1969, 'NS', '', '', '', 36, '2019-03-06 11:25:11', '0000-00-00'), (1802, 1968, 'NR', '', '', '', 36, '2019-03-06 11:27:23', '0000-00-00'), (1803, 1966, 'Client will visit the office when he required', '', '', '', 36, '2019-03-06 11:32:27', '0000-00-00'), (1804, 1960, 'B', '', '', '', 36, '2019-03-06 11:34:10', '0000-00-00'), (1805, 1959, 'B', '', '', '', 36, '2019-03-06 11:35:01', '0000-00-00'), (1806, 1978, 'Not Required', '', '', '', 36, '2019-03-06 11:37:56', '0000-00-00'), (1807, 568, '2nd installment payment done to HDFC (6/3/2019) - 15,000', '15518537722nd installment (screen shot).jpg', '', 'ACTIVE', 36, '2019-03-06 11:59:32', '0000-00-00'), (1808, 1958, 'NR', '', '', '', 36, '2019-03-06 12:00:33', '0000-00-00'), (1809, 1957, 'Not Required ( Looking for MBA Project)', '', '', '', 36, '2019-03-06 12:02:47', '0000-00-00'), (1810, 1979, 'Executive to meet on 6/3/2019 after 3.00PM', '', '', '', 36, '2019-03-06 12:17:11', '0000-00-00'), (1811, 1980, 'Not Required ( He is looking for the particular developer of his friend)', '', '', '', 36, '2019-03-06 12:37:54', '0000-00-00'), (1812, 1973, 'Only Email', '', '', '', 36, '2019-03-06 12:42:33', '0000-00-00'), (1813, 1971, 'Only Email', '', '', '', 36, '2019-03-06 12:43:03', '0000-00-00'), (1814, 1951, 'Not Required', '', '', '', 36, '2019-03-06 12:44:29', '0000-00-00'), (1815, 1905, 'NR', '', '', '', 36, '2019-03-06 12:46:18', '0000-00-00'), (1816, 1981, 'NS', '', '', '', 36, '2019-03-06 13:38:49', '0000-00-00'), (1817, 1970, 'e - comm website - Company profile and links shared . contact on 7/3/2019', '', '', '', 36, '2019-03-06 13:40:48', '0000-00-00'), (1818, 1976, 'package details shared ( visiting card)', '1551860065visiting card.jpg', '', '', 36, '2019-03-06 13:43:14', '2019-03-06'), (1819, 1983, 'Only Email', '', '', '', 36, '2019-03-06 15:29:29', '0000-00-00'), (1820, 1982, 'Only Email', '', '', '', 36, '2019-03-06 15:29:53', '0000-00-00'), (1821, 1984, 'Tiles Industry - Executive to meet on 6/3/2019 before 5.30PM', '', '', '', 36, '2019-03-06 16:03:45', '0000-00-00'), (1822, 1985, 'School Website - Executive to meet on 6/3/2019 after 6.30PM', '', '', '', 36, '2019-03-06 16:34:46', '0000-00-00'), (1823, 1988, 'Company profile and link shared - contact on 7/3/2019', '', '', '', 36, '2019-03-06 18:22:47', '0000-00-00'), (1824, 1988, 'Company profile and link shared - contact on 7/3/2019', '', '', '', 36, '2019-03-06 18:22:47', '0000-00-00'), (1825, 1988, 'Company profile and link shared - contact on 7/3/2019', '', '', '', 36, '2019-03-06 18:22:47', '0000-00-00'), (1826, 1989, 'NS', '', '', '', 36, '2019-03-06 18:35:59', '0000-00-00'), (1827, 1992, 'Not Required', '', '', '', 36, '2019-03-07 10:44:34', '0000-00-00'), (1828, 1994, 'Not Required', '', '', '', 36, '2019-03-07 10:50:48', '0000-00-00'), (1829, 1995, 'Informed to contact on 11/3/2019', '', '', '', 36, '2019-03-07 10:57:17', '0000-00-00'), (1830, 1993, 'only Email', '', '', '', 36, '2019-03-07 11:01:47', '0000-00-00'), (1831, 1990, 'Not Required', '', '', '', 36, '2019-03-07 11:02:26', '0000-00-00'), (1832, 1991, 'B', '', '', '', 36, '2019-03-07 11:05:53', '0000-00-00'), (1833, 1996, 'Executive to meet on 7/3/2019', '', '', '', 36, '2019-03-07 11:14:25', '0000-00-00'), (1834, 464, 'Mail sent regarding the Dentics AMC', '', '', 'ACTIVE', 36, '2019-03-07 13:19:25', '0000-00-00'), (1835, 2000, 'JOB (Not Required )', '', '', '', 36, '2019-03-07 13:20:25', '0000-00-00'), (1836, 2002, 'Number not Valid', '', '', '', 36, '2019-03-07 13:35:37', '0000-00-00'), (1837, 1970, 'e - comm website - Company profile and links shared . contact on 11/3/2019', '', '', '', 36, '2019-03-07 13:40:53', '0000-00-00'), (1838, 318, 'payment gateway payment received(7/3/2019)', '1551956971payment gateway(Screen shot).png', '', 'ACTIVE', 36, '2019-03-07 16:39:31', '0000-00-00'), (1839, 561, '6,000 Cash received(Nithin) - Cleared', '', '', 'ACTIVE', 36, '2019-03-07 16:41:05', '0000-00-00'), (1840, 2003, 'Not Required', '', '', '', 36, '2019-03-07 17:07:44', '0000-00-00'), (1841, 2005, 'Not Required (looking for the training institute in the surrounding area )', '', '', '', 36, '2019-03-07 17:41:31', '0000-00-00'), (1842, 2006, 'Existing Client', '', '', '', 36, '2019-03-08 11:05:05', '0000-00-00'), (1843, 2007, 'details shared through watsapp - informed to contact on 9/2/2019', '', '', '', 36, '2019-03-08 11:16:32', '0000-00-00'), (1844, 2009, 'Switch Off', '', '', '', 36, '2019-03-08 11:18:55', '0000-00-00'), (1845, 2010, 'Switch off', '', '', '', 36, '2019-03-08 11:23:32', '0000-00-00'), (1846, 2011, 'NS', '', '', '', 36, '2019-03-08 11:25:02', '0000-00-00'), (1847, 2012, 'Not Required', '', '', '', 36, '2019-03-08 11:26:21', '0000-00-00'), (1848, 2013, 'Executive to meet on 8/3/2019 at 1.00PM', '', '', '', 36, '2019-03-08 11:35:14', '0000-00-00'), (1849, 2014, 'Not Required ( he is a developer)', '', '', '', 36, '2019-03-08 11:37:58', '0000-00-00'), (1850, 464, 'Invoice shared for Dentics AMC( 8/3/2019) -= 4K + GST', '', '', 'ACTIVE', 36, '2019-03-08 11:45:27', '2019-03-08'), (1851, 2017, 'Not required', '', '', '', 36, '2019-03-08 12:50:50', '0000-00-00'), (1852, 2016, 'informed to subbu sir', '', '', '', 36, '2019-03-08 13:06:20', '0000-00-00'), (1853, 1986, 'Only Email', '', '', '', 36, '2019-03-08 14:03:50', '0000-00-00'), (1854, 2020, 'Dynamic Website - 12K - Informed to contact on 9/3/2019', '', '', '', 36, '2019-03-08 15:23:39', '0000-00-00'), (1855, 2021, 'Not Required ( looking for survey )', '', '', '', 36, '2019-03-08 15:41:57', '0000-00-00'), (1856, 2022, 'Not Required ( sulektha - service provider )', '', '', '', 36, '2019-03-08 15:48:06', '0000-00-00'), (1857, 2019, 'Job (Not Required)', '', '', '', 36, '2019-03-08 15:52:45', '0000-00-00'), (1858, 2018, 'NS', '', '', '', 36, '2019-03-08 16:00:25', '0000-00-00'), (1859, 2023, 'construction company - infomred the package (conatct on 9/3/2019)', '', '', '', 36, '2019-03-08 16:24:17', '0000-00-00'), (1860, 2025, 'Only Email', '', '', '', 36, '2019-03-08 18:51:36', '0000-00-00'), (1861, 2029, 'Job (not required)', '', '', '', 36, '2019-03-09 10:57:05', '0000-00-00'), (1862, 2030, 'Not required (he is developer)', '', '', '', 36, '2019-03-09 10:58:42', '0000-00-00'), (1863, 2028, 'NS', '', '', '', 36, '2019-03-09 11:01:02', '0000-00-00'), (1864, 2028, 'not Required ( Client will Cb when he requires)', '', '', '', 36, '2019-03-09 11:02:44', '0000-00-00'), (1865, 2032, 'Not Required', '', '', '', 36, '2019-03-09 11:17:39', '0000-00-00'), (1866, 2033, 'Not Required ( searching for something)', '', '', '', 36, '2019-03-09 11:29:23', '0000-00-00'), (1867, 2034, 'Not Required (suletka service provider)', '', '', '', 36, '2019-03-09 12:34:00', '0000-00-00'), (1868, 2023, 'construction company - infomred the package (conatct on 11/3/2019)', '', '', '', 36, '2019-03-09 13:19:20', '0000-00-00'), (1869, 2020, 'Dynamic Website - 12K - Informed to contact on 11/3/2019', '', '', '', 36, '2019-03-09 13:19:56', '0000-00-00'), (1870, 2035, 'not required ( looking in rt nagar area)', '', '', '', 36, '2019-03-09 13:34:00', '0000-00-00'), (1871, 2036, 'Company profile informed to contact on 11/3/2019', '', '', '', 36, '2019-03-09 13:58:04', '0000-00-00'), (1872, 2037, 'Not Required ( she want website to be created in 3000)', '', '', '', 36, '2019-03-09 14:13:30', '0000-00-00'), (1873, 2038, 'JOB ( Not Required )', '', '', '', 36, '2019-03-09 17:09:09', '0000-00-00'), (1874, 2040, 'Only Email', '', '', '', 36, '2019-03-09 17:20:03', '0000-00-00'), (1875, 2041, 'Not Required', '', '', '', 36, '2019-03-09 17:35:55', '0000-00-00'), (1876, 2039, 'Company profile and link shared contact on 11/3/2019', '', '', '', 36, '2019-03-09 17:45:32', '0000-00-00'), (1877, 2046, 'Executive to meet on 11/3/2019 at 2.00PM', '', '', '', 36, '2019-03-11 11:02:42', '0000-00-00'), (1878, 2045, 'Not Required', '', '', '', 36, '2019-03-11 11:03:31', '0000-00-00'), (1879, 2047, 'JOB (Not Required )', '', '', '', 36, '2019-03-11 11:04:03', '0000-00-00'), (1880, 2048, 'JOB (Not Required) ', '', '', '', 36, '2019-03-11 11:05:09', '0000-00-00'), (1881, 2050, 'Informed to contact on 15/3/2019', '', '', '', 36, '2019-03-11 11:09:23', '0000-00-00'), (1882, 2052, 'Existing Client', '', '', '', 36, '2019-03-11 11:46:33', '0000-00-00'), (1883, 40, 'Invoice shared regarding AMC 11/3/2019', '', '', 'ACTIVE', 36, '2019-03-11 13:08:24', '0000-00-00'), (1884, 2053, 'Existing Client', '', '', '', 36, '2019-03-11 13:28:44', '0000-00-00'), (1885, 575, 'change on updation on content (11/3/2019)', '', '', 'ACTIVE', 36, '2019-03-11 15:58:29', '0000-00-00'), (1886, 256, 'corbelogroup.com - Website redesign by the name - http://dsignexperts.com/( Existing)', '', '', 'ACTIVE', 36, '2019-03-11 16:34:13', '0000-00-00'), (1887, 256, 'Quotation shared for ZOHO mail ID(5) - 11/3/2019 (2500 + GST)', '1552302431Quotation_dsignexpert(ZOHO).pdf', '', 'ACTIVE', 36, '2019-03-11 16:37:11', '0000-00-00'), (1888, 571, 'Final Payment of Rs.19220(11/3/2019) Received', '1552305863Final payment (screen shot).jpg', '', 'ACTIVE', 36, '2019-03-11 17:34:23', '0000-00-00'), (1889, 2054, 'JOB (Not Required)', '', '', '', 36, '2019-03-12 11:44:36', '0000-00-00'), (1890, 2055, 'JoB (Not Required )', '', '', '', 36, '2019-03-12 12:07:38', '0000-00-00'), (1891, 2051, 'Quotation shared for changes in Existing website and Dynamic Website( redesign)', '1552372784Quotation_platawoods(changes in website).pdf', '', '', 36, '2019-03-12 12:09:44', '0000-00-00'), (1892, 445, 'Dentics AMC (check - 12/3/2019)', '1552375595Dentics AMC ( check).jpg', '', 'ACTIVE', 36, '2019-03-12 12:56:35', '0000-00-00'), (1893, 2056, 'Only Email', '', '', '', 36, '2019-03-12 13:34:45', '0000-00-00'), (1894, 237, 'Google analytics code received ( 13/3/2019) - updated', '', '', 'ACTIVE', 36, '2019-03-13 11:00:16', '2019-03-13'), (1895, 256, 'Called regarding zoho mail Id - but NS ( 13/3/2019)', '', '', 'ACTIVE', 36, '2019-03-13 11:39:22', '2019-03-13'), (1896, 2057, 'Existing Client', '', '', '', 36, '2019-03-13 12:01:17', '0000-00-00'), (1897, 566, '22000 - payment received - 12/3/2019 ( HDFC) ', '', '', 'ACTIVE', 36, '2019-03-13 12:11:11', '0000-00-00'), (1898, 2058, 'Only Email', '', '', '', 36, '2019-03-13 16:48:41', '0000-00-00'), (1899, 2, 'SMS AMC payment received (3.5K + GST) - 14/3/2019', '', '', 'ACTIVE', 36, '2019-03-14 10:51:18', '0000-00-00'), (1900, 294, 'AMC Payment received of Rs.7080 ( Online payment ) - 14/3/2019', '', '', 'ACTIVE', 36, '2019-03-14 11:48:36', '0000-00-00'), (1901, 585, '4000 - cash received - 14/3/2019', '', '', 'ACTIVE', 36, '2019-03-14 15:28:41', '0000-00-00'), (1902, 464, 'Invoice shared to alternative mail ID - payment will be done on 18 or 19/3/2019', '', '', 'ACTIVE', 36, '2019-03-18 10:57:47', '0000-00-00'), (1903, 602, 'Advance Check ( 5K ) Received - AXIS', '1552888494Advance check(nithin).jpg', '', 'ACTIVE', 36, '2019-03-18 11:23:45', '2019-03-18'), (1904, 602, 'CASH SLIP ( Nithin) ', '1552888471Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-03-18 11:24:31', '0000-00-00'), (1905, 602, 'CASH SLIP ( Nithin) ', '1552888477Cash Slip(nithin).jpg', '', 'ACTIVE', 36, '2019-03-18 11:24:37', '0000-00-00'), (1906, 602, 'Template Approved from Client (19/3/2019) - Screenshot (Watsapp)', '1552979763Template Approved Screen shot (Client).jpg', '', 'ACTIVE', 36, '2019-03-19 12:46:03', '0000-00-00'), (1907, 564, 'another Dynamic Website Quotation shared on 19/3/2019', '1552982158Quotation_Skill tree Academy(1).pdf', '', 'ACTIVE', 36, '2019-03-19 13:25:58', '0000-00-00'), (1908, 2059, 'Existing Client', '', '', '', 36, '2019-03-19 15:56:24', '0000-00-00'), (1909, 605, 'Quotation shared to client', '1553000218Quotation_Vinay Kumar(Orangecountyspa).pdf', '', 'ACTIVE', 36, '2019-03-19 18:26:58', '0000-00-00'), (1910, 605, 'Cash Slip (Nithin)', '1553000248Cash Slip( Nithin).jpg', '', 'ACTIVE', 36, '2019-03-19 18:27:28', '0000-00-00'), (1911, 605, 'Client sheet (Nithin)', '1553000271Client Sheet ( Nithin).jpg', '', 'ACTIVE', 36, '2019-03-19 18:27:51', '0000-00-00'), (1912, 605, '5000 - Cash Received on 19/3/2019 ( Nithin)', '', '', 'ACTIVE', 36, '2019-03-19 18:28:17', '0000-00-00'), (1913, 256, 'Payment Received for ZOHO Mail ID', '1553065463Payment of ZOHO mail ( Screen shot).jpg', '', 'ACTIVE', 36, '2019-03-20 12:34:23', '0000-00-00'), (1914, 2062, 'Existing Client', '', '', '', 36, '2019-03-20 12:37:56', '0000-00-00'), (1915, 288, 'AMC Payment Received on 20/3/2019 ', '1553146467AMC Payment (screen Shot).jpg', '', 'ACTIVE', 36, '2019-03-21 11:04:27', '0000-00-00'), (1916, 605, 'Template Approved (screenshot) - 21/3/2019', '1553150334Template approved ( Screen shot).jpg', '', 'ACTIVE', 36, '2019-03-21 12:08:54', '0000-00-00'), (1917, 605, 'Domain Approved ( Screenshot) - 21/3/2019', '1553150368Domain Approved ( Screen Shot).jpg', '', 'ACTIVE', 36, '2019-03-21 12:09:28', '0000-00-00'), (1918, 606, 'CDR File of Logo Design', '1553260243final-logo.zip', '', 'ACTIVE', 36, '2019-03-22 18:40:43', '0000-00-00'), (1919, 464, 'Dentists AMC Payment Received (23/3/2019)', '1553319672Dentic AMC Payment Received( Screen Shot).jpg', '', 'ACTIVE', 36, '2019-03-23 11:11:12', '0000-00-00'), (1920, 557, 'Website Full payment Received ', '', '', 'ACTIVE', 36, '2019-03-23 11:43:23', '0000-00-00'), (1921, 1520, 'Nithin Contacted - Mail Id - 3K , Logo 3K , SSL - 2K, Wesbite - 7K - Informed to contact on 27/3/2019', '', '', '', 36, '2019-03-23 14:21:50', '0000-00-00'), (1922, 584, 'Informed to Contact on 30/3/2019 for Payment', '', '', 'ACTIVE', 36, '2019-03-25 13:45:27', '0000-00-00'), (1923, 603, '5, 000 Cash Received on 28/3/2019 - 2nd installment ', '', '', 'ACTIVE', 36, '2019-03-28 16:44:09', '0000-00-00'), (1924, 519, '40K - Payment Received - paytm- 29/3/2019', '1553843191Payment screen Shot (paytm).jpg', '', 'ACTIVE', 36, '2019-03-29 12:21:30', '2019-03-29'), (1925, 294, 'Shared the admin credentials to client', '', '', 'ACTIVE', 80, '2019-04-01 17:48:24', '0000-00-00'), (1926, 294, 'Shared the admin credentials to client', '', '', 'ACTIVE', 80, '2019-04-01 17:48:33', '0000-00-00'), (1927, 339, 'SSL Issue solved - 03/04/2019 ', '', '', 'ACTIVE', 80, '2019-04-01 18:31:40', '2019-04-04'), (1928, 256, 'career page application form validation has been changed for client request', '', '', 'ACTIVE', 80, '2019-04-01 18:33:25', '0000-00-00'), (1929, 507, 'Register form mail function issue has been solved.', '', '', 'ACTIVE', 80, '2019-04-01 18:34:18', '0000-00-00'), (1930, 592, 'Shared the website contents to client', '', '', 'ACTIVE', 80, '2019-04-02 11:01:53', '0000-00-00'), (1931, 590, 'Lifesys Changes are made and informed client.', '1554185679Thank you for the updates.docx', '', 'ACTIVE', 80, '2019-04-02 11:44:39', '0000-00-00'), (1932, 2064, 'http://preview.themeforest.net/item/delux-online-hotel-booking-wordpress-theme/full_screen_preview/20436597', '', '', '', 24, '2019-04-02 12:31:37', '0000-00-00'), (1933, 507, 'Register form mail function issue has been solved (pankajsiracademy.com/enquiry).', '', '', 'ACTIVE', 80, '2019-04-02 18:56:41', '0000-00-00'), (1934, 590, 'Changes in banner images ', '1554362853Changes.docx', '', 'ACTIVE', 80, '2019-04-04 12:57:33', '0000-00-00'), (1935, 557, 'Changes in images and inclusion of board of directors', '', '', 'ACTIVE', 80, '2019-04-04 12:58:27', '0000-00-00'), (1936, 507, 'FB page and youtube page has to be linked to the website', '', '', 'ACTIVE', 80, '2019-04-04 13:03:44', '0000-00-00'), (1938, 2064, 'Customer asked for another quotation with android app. So quoting on basis of gonative.io and below link:\r\n\r\nhttps://codecanyon.net/item/panda-multi-resorts-4-booking-cms-for-multi-hotels/14084137', '', '', '', 24, '2019-04-04 17:39:17', '0000-00-00'), (1939, 2067, 'Tours and Travels Website. Executive to meet on 15/4/2019 at 11.00AM', '', '', '', 36, '2019-04-15 10:20:17', '0000-00-00'), (1940, 2068, 'NS', '', '', '', 36, '2019-04-15 10:35:08', '0000-00-00'), (1941, 2072, 'Ns', '', '', '', 36, '2019-04-15 11:04:23', '0000-00-00'), (1942, 2072, 'NS', '', '', '', 36, '2019-04-15 11:06:22', '0000-00-00'), (1943, 2073, 'NS', '', '', '', 36, '2019-04-15 11:17:04', '0000-00-00'), (1944, 2068, 'out of station - Informed to contact on 22/4/2019', '', '', '', 36, '2019-04-15 11:22:07', '0000-00-00'), (1945, 2074, 'Not Required', '', '', '', 36, '2019-04-15 11:36:49', '0000-00-00'), (1946, 2075, 'Only Email', '', '', '', 36, '2019-04-15 12:02:03', '0000-00-00'), (1947, 2076, 'NS', '', '', '', 36, '2019-04-15 12:04:55', '0000-00-00'), (1948, 2076, 'Internship', '', '', '', 36, '2019-04-15 12:13:27', '0000-00-00'), (1949, 2075, 'NS', '', '', '', 36, '2019-04-15 12:22:37', '0000-00-00'), (1950, 2075, 'Not Required', '', '', '', 36, '2019-04-15 13:56:58', '0000-00-00'), (1951, 2077, 'Not Required', '', '', '', 36, '2019-04-15 14:30:11', '0000-00-00'), (1952, 314, 'client has paid AMC till 2024 i.e for next 5 years. Do not ask for AMC till 20-4-2024.', '', '', 'ACTIVE', 24, '2019-04-20 15:55:46', '0000-00-00'), (1953, 305, 'AMC for 2019-20 has been paid on 12-4-19 and extra 500 has been paid by customer which should be redeemed for next year AMC. AMC amount is 3000 plus gst.', '', '', 'ACTIVE', 24, '2019-04-22 16:57:01', '2019-04-22'), (1954, 568, 'Advance payment- 10K on 2-5-19', '', '', 'ACTIVE', 24, '2019-05-10 12:26:15', '0000-00-00'), (1955, 568, 'Advance payment- 10K on 2-5-19', '', '', 'ACTIVE', 24, '2019-05-10 12:26:15', '0000-00-00'), (1956, 2108, 'Call not answering', '', '', '', 158, '2019-05-11 16:49:02', '0000-00-00'), (1957, 2109, 'Called so many times but call not answering ', '', '', '', 158, '2019-05-11 16:54:35', '0000-00-00'), (1958, 2111, 'Needs website for construction and traveling purpose, for 10 to 12 pages..he said that he will visit on 13.5.19. 8722223065 shared our location, remind call on 13.5.19\r\n', '', '', '', 158, '2019-05-11 17:07:58', '0000-00-00'), (1959, 2112, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-11 17:12:35', '0000-00-00'), (1960, 2097, 'Needs 3 pages of website and 5 mail id\'s in lower cost, has the requirement is lesser than our company norms company is discarding this project.\r\n', '', '', '', 158, '2019-05-11 17:17:49', '0000-00-00'), (1961, 2106, 'No NEED OF REQUIREMENTS\r\n\r\n', '', '', '', 158, '2019-05-11 17:18:41', '0000-00-00'), (1962, 2107, 'No NEED OF REQUIREMENTS, post updated by mistake\r\n', '', '', '', 158, '2019-05-11 17:19:34', '0000-00-00'), (1963, 2104, 'Quotation has been send for 7 page dynamic website \r\n', '', '', '', 158, '2019-05-11 17:22:18', '0000-00-00'), (1964, 2114, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-11 17:32:59', '0000-00-00'), (1965, 2115, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-11 17:35:16', '0000-00-00'), (1966, 2116, 'No NEED OF REQUIREMENTS.\r\n', '', '', '', 158, '2019-05-11 17:37:34', '0000-00-00'), (1967, 2117, 'Needs basic website of 5 pages.\r\n', '', '', '', 158, '2019-05-11 17:41:39', '0000-00-00'), (1968, 2117, 'Call not answering ', '', '', '', 158, '2019-05-11 17:42:09', '0000-00-00'), (1969, 2118, 'Needs website similar to Btlindia.com, App BTL. with IOS, Quotation has been send but he is telling the quotation amount is high\r\n', '', '', '', 158, '2019-05-11 17:49:08', '0000-00-00'), (1970, 2119, 'Asked for company profile, \r\ncompany profile has been shared', '', '', '', 158, '2019-05-11 18:01:05', '0000-00-00'), (1971, 2119, 'Call not answering', '', '', '', 158, '2019-05-11 18:01:32', '0000-00-00'), (1972, 2120, 'No requirements\r\n', '', '', '', 158, '2019-05-11 18:04:56', '0000-00-00'), (1973, 2121, 'Call not answering', '', '', '', 158, '2019-05-11 18:11:49', '0000-00-00'), (1974, 2122, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-11 18:15:54', '0000-00-00'), (1975, 582, 'BAlance paid amount (9160)', '1557731388Jay Blues 9160.pdf', '', 'ACTIVE', 80, '2019-05-13 12:39:48', '0000-00-00'), (1976, 2124, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 12:59:23', '0000-00-00'), (1977, 2102, 'Package details of Static and Dynamic website has been send thru mail.\r\nCall not answering.', '', '', '', 158, '2019-05-13 13:14:44', '0000-00-00'), (1978, 2099, 'In the last call he said that he will visit our office on 11.5.19, but he not visited and not answering the call.', '', '', '', 158, '2019-05-13 13:17:00', '0000-00-00'), (1979, 2125, 'He just enquired for single page website, and asked for our address, when he gets free he himself visit our office.\r\n', '', '', '', 158, '2019-05-13 13:22:39', '0000-00-00'), (1980, 2126, 'They had finalized other designer.\r\n', '', '', '', 158, '2019-05-13 13:26:52', '0000-00-00'), (1981, 2127, 'Needs website for BTL school of Nursing, Meeting scheduled on 13.5.19 morning.\r\n', '', '', '', 158, '2019-05-13 13:33:22', '0000-00-00'), (1982, 2128, 'Needs mobile application LUDO for start up business,\r\nAs We don\'t have expertise we are not taking this project.\r\n', '', '', '', 158, '2019-05-13 13:37:50', '0000-00-00'), (1983, 2129, 'Call not answering', '', '', '', 158, '2019-05-13 13:41:18', '0000-00-00'), (1984, 2130, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 13:43:36', '0000-00-00'), (1985, 2131, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 13:46:19', '0000-00-00'), (1986, 2132, 'They had finalized with others\r\n', '', '', '', 158, '2019-05-13 13:49:54', '0000-00-00'), (1987, 2133, 'Call not answering', '', '', '', 158, '2019-05-13 15:45:33', '0000-00-00'), (1988, 2134, 'Shared company profile and package details, thru whats app\r\n', '', '', '', 158, '2019-05-13 16:19:49', '0000-00-00'), (1989, 2135, 'No need of requirement \r\n', '', '', '', 158, '2019-05-13 16:29:24', '0000-00-00'), (1990, 2137, 'Needs 20 pages Dynamic website,Astrology enquired for price(16000+ GST), he will call again \r\n', '', '', '', 158, '2019-05-13 16:51:01', '0000-00-00'), (1991, 2138, 'They already had a website, they needs to enhance that and add few more pages. subramanya sir has spoken with client \r\n', '', '', '', 158, '2019-05-13 17:14:30', '0000-00-00'), (1992, 2139, 'static website it will be finalized in the evening - Nithin\r\n', '', '', '', 158, '2019-05-13 17:19:56', '0000-00-00'), (1993, 2142, 'Call not answering ', '', '', '', 158, '2019-05-13 17:28:01', '0000-00-00'), (1994, 2144, 'Call not answering', '', '', '', 158, '2019-05-13 17:35:18', '0000-00-00'), (1995, 2145, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 17:38:03', '0000-00-00'), (1996, 2146, 'Needs E-commerce website for electronics, \r\n', '', '', '', 158, '2019-05-13 17:51:45', '0000-00-00'), (1997, 2147, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 18:02:51', '0000-00-00'), (1998, 2148, 'No NEED OF REQUIREMENTS…. Don\'t call\r\n', '', '', '', 158, '2019-05-13 18:05:47', '0000-00-00'), (1999, 2149, 'He is not responding properly \r\n', '', '', '', 158, '2019-05-13 18:13:29', '0000-00-00'), (2000, 2150, 'Needs to change the website, they are asking to send executive to there place to change the website, As we cant send executive to their place to change website we are not taking this project.\r\n', '', '', '', 158, '2019-05-13 18:23:08', '0000-00-00'), (2001, 2151, 'Informed Nithin to meet the customer, he will call and confirm the meeting ', '', '', '', 158, '2019-05-13 18:29:03', '2019-05-13'), (2002, 2152, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-13 18:31:49', '0000-00-00'), (2003, 2155, 'Asked for explanation of website, and he told he will call later', '', '', '', 158, '2019-05-14 11:51:01', '0000-00-00'), (2004, 2156, 'Call not connecting ', '', '', '', 158, '2019-05-14 12:00:32', '0000-00-00'), (2005, 2156, 'Call not connecting ', '', '', '', 158, '2019-05-14 12:00:33', '0000-00-00'), (2006, 2157, '8030123431-Spoken with front office executive - told that she had inform their IT department regarding our call, and they will call back us if required. ', '', '', '', 158, '2019-05-14 12:05:32', '0000-00-00'), (2007, 2085, '9008776611 - He told that he had received 4 to 5 quotations from others so once he will check with that.. \r\n\r\n', '', '', '', 158, '2019-05-14 12:11:21', '0000-00-00'), (2008, 2085, 'Quotation has send thru Whats app. \r\nHe had forward the quotation to his manager, they will check and inform. \r\n', '', '', '', 158, '2019-05-14 12:14:15', '0000-00-00'), (2009, 2158, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-14 12:22:19', '0000-00-00'), (2010, 2159, 'Call not responding properly ', '', '', '', 158, '2019-05-14 12:28:23', '0000-00-00'), (2011, 2166, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-14 13:43:40', '0000-00-00'), (2012, 2171, 'Call not answering ', '', '', '', 158, '2019-05-14 13:44:24', '0000-00-00'), (2013, 2161, 'Call not answering', '', '', '', 158, '2019-05-14 13:45:22', '0000-00-00'), (2014, 2174, 'Call not answering ', '', '', '', 158, '2019-05-14 14:00:58', '0000-00-00'), (2015, 2175, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-14 14:03:17', '0000-00-00'), (2016, 2176, 'No NEED OF REQUIREMENTS\r\n', '', '', '', 158, '2019-05-14 15:05:37', '0000-00-00'), (2017, 2099, 'Call not answering', '', '', '', 158, '2019-05-14 15:07:14', '0000-00-00'), (2018, 2177, 'In the last call they asked for company profile, Profile has been send thru whats app.', '', '', '', 158, '2019-05-14 15:15:21', '2019-05-14'), (2019, 2123, 'He had send the requirements thru whats app, needs to send proposal', '', '', '', 158, '2019-05-14 15:21:31', '0000-00-00'), (2020, 2178, 'No NEED OF REQUIREMENTS, they had finalized with others.\r\n', '', '', '', 158, '2019-05-14 15:32:32', '0000-00-00'), (2021, 2179, 'Needs web app, Subbu sir has spoken with client, needs quotation, and our company website link has been shared to client\r\n', '', '', '', 158, '2019-05-14 15:53:42', '0000-00-00'), (2022, 2180, 'No NEED OF REQUIREMENTS, post updated by mistake\r\n', '', '', '', 158, '2019-05-14 15:57:36', '0000-00-00'), (2023, 2181, 'Call later ', '', '', '', 158, '2019-05-14 16:03:50', '0000-00-00'), (2024, 2155, 'Rejecting the call ', '', '', '', 158, '2019-05-14 16:21:47', '0000-00-00'), (2025, 2100, 'Call not answering ', '', '', '', 158, '2019-05-14 16:54:00', '0000-00-00'), (2026, 2183, 'No NEED OF REQUIREMENTS (job)\r\n', '', '', '', 158, '2019-05-14 16:56:41', '0000-00-00'), (2027, 2184, 'No need of requirement ', '', '', '', 158, '2019-05-14 16:59:12', '0000-00-00'), (2028, 2186, 'No NEED OF REQUIREMENTS…. \r\n', '', '', '', 158, '2019-05-14 17:05:58', '0000-00-00'), (2029, 2182, 'Call not answering ', '', '', '', 158, '2019-05-14 17:06:51', '0000-00-00'), (2030, 2187, 'No NEED OF REQUIREMENTS…. \r\n', '', '', '', 158, '2019-05-14 17:13:15', '0000-00-00'), (2031, 2191, 'Scheduled meeting with Nithin 14.5.19, they will call and inform us ', '', '', '', 158, '2019-05-14 17:33:05', '0000-00-00'), (2032, 2192, 'They had got quotation from others, once they will check it, and call us if they need.\r\n', '', '', '', 158, '2019-05-14 17:48:20', '0000-00-00'), (2033, 2193, 'Call not answering ', '', '', '', 158, '2019-05-14 17:51:04', '0000-00-00'), (2034, 2089, 'They don\'t need any requirement, she is enquiring for job \r\n', '', '', '', 158, '2019-05-14 18:16:58', '0000-00-00'), (2035, 2090, 'They don\'t need any requirement, Enquiring for job vacancy \r\n', '', '', '', 158, '2019-05-14 18:18:35', '0000-00-00'), (2036, 2087, 'Call rejecting ', '', '', '', 158, '2019-05-14 18:19:34', '0000-00-00'), (2037, 2194, 'Needs static website for interior business, call on 15.5.19 he will confirm the meeting time.\r\n', '', '', '', 158, '2019-05-14 18:34:05', '0000-00-00'), (2038, 2177, 'Call not answering', '', '', '', 158, '2019-05-15 10:46:43', '0000-00-00'), (2039, 2190, 'No need of requirement, he told that he had finalized with others ', '', '', '', 158, '2019-05-15 10:53:07', '0000-00-00'), (2040, 2195, 'No NEED OF REQUIREMENTS, (job)\r\n', '', '', '', 158, '2019-05-15 12:24:43', '0000-00-00'), (2041, 2194, 'Call not answering informed Nithin to call.', '', '', '', 158, '2019-05-15 12:25:55', '0000-00-00'), (2042, 2196, 'Call later', '', '', '', 158, '2019-05-15 12:28:51', '0000-00-00'), (2043, 2197, 'Call not answering ', '', '', '', 158, '2019-05-15 12:50:13', '0000-00-00'), (2044, 2198, 'Incoming calls has been blocked to this number \r\n', '', '', '', 158, '2019-05-15 13:04:51', '0000-00-00'), (2045, 2199, 'He was enquiring the price list, Subbu sir has informed him about price. he will get back if needed', '', '', '', 158, '2019-05-15 13:28:54', '0000-00-00'), (2046, 2200, 'He just enquired price for both website, and rejected the call\r\n', '', '', '', 158, '2019-05-15 13:43:23', '0000-00-00'), (2047, 2201, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 13:57:09', '0000-00-00'), (2048, 2194, 'Meeting scheduled on 16.5.19, Informed Nithin', '', '', '', 158, '2019-05-15 17:27:07', '0000-00-00'), (2049, 2202, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 17:34:11', '0000-00-00'), (2050, 2203, 'Website details has been send thru whats app, call later\r\n', '', '', '', 158, '2019-05-15 17:38:46', '0000-00-00'), (2051, 2204, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 17:42:27', '0000-00-00'), (2052, 2205, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 17:47:15', '0000-00-00'), (2053, 2206, 'Enquired the price of both website, needs call on 16.5. at 4.30 pm, she will confirm.\r\n', '', '', '', 158, '2019-05-15 17:50:03', '0000-00-00'), (2054, 2207, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 17:51:34', '0000-00-00'), (2055, 2208, 'No need of requirement, don\'t call, wrong number\r\n', '', '', '', 158, '2019-05-15 17:53:21', '0000-00-00'), (2056, 2209, 'Call not connecting ', '', '', '', 158, '2019-05-15 17:55:18', '0000-00-00'), (2057, 2210, 'Busy ', '', '', '', 158, '2019-05-15 17:57:43', '0000-00-00'), (2058, 2211, 'No need of requirement \r\n', '', '', '', 158, '2019-05-15 17:59:45', '0000-00-00'), (2059, 2172, 'Call not answering', '', '', '', 158, '2019-05-15 18:04:42', '0000-00-00'), (2060, 2212, ' company profile and reference links has been shared, Thru whats app \r\n', '', '', '', 158, '2019-05-16 10:37:42', '0000-00-00'), (2061, 2213, 'No need of requirement \r\n', '', '', '', 158, '2019-05-16 10:54:40', '0000-00-00'), (2062, 2214, 'No need of requirement \r\n', '', '', '', 158, '2019-05-16 11:05:57', '0000-00-00'), (2063, 2097, 'Needs Dynamic website, Meeting Scheduled for 16.5.19, Informed to Nithin', '', '', '', 158, '2019-05-16 11:23:32', '0000-00-00'), (2064, 2215, 'No need of requirement \r\n', '', '', '', 158, '2019-05-16 11:30:08', '0000-00-00'), (2065, 2216, 'No need of requirement (job)\r\n', '', '', '', 158, '2019-05-16 11:33:17', '0000-00-00'), (2066, 2174, 'Call not answering', '', '', '', 158, '2019-05-16 11:37:20', '0000-00-00'), (2067, 2209, 'Call not connecting ', '', '', '', 158, '2019-05-16 12:43:27', '0000-00-00'), (2068, 2217, 'Busy, call rejecting \r\n', '', '', '', 158, '2019-05-16 12:55:52', '0000-00-00'), (2069, 2218, 'Needs dynamic website for international school, Quotation has been send for 20 pages dynamic website thru mail', '', '', '', 158, '2019-05-16 16:11:12', '0000-00-00'), (2070, 2194, 'Nithin - they are asking dynamic website with logo for 10000, (meeting done on 16.5.19) call after 2 days he will confirm.\r\n', '', '', '', 158, '2019-05-16 16:56:49', '0000-00-00'), (2071, 2206, 'She got the quotation for Rs.5500 from others, so she will decide and call back us if needed.\r\n', '', '', '', 158, '2019-05-16 17:05:26', '0000-00-00'), (2072, 2219, 'Needs SEO (annul package) and website for Washing machine service center, Just Enquired for price (2,50,000 pa) and rejected the call.\r\n', '', '', '', 158, '2019-05-16 17:20:05', '0000-00-00'), (2073, 2220, 'Needs website for Digital marketing, ', '', '', '', 158, '2019-05-16 17:41:06', '0000-00-00'), (2074, 2196, 'Call not answering 2', '', '', '', 158, '2019-05-16 17:53:05', '0000-00-00'), (2075, 2221, 'Needs website for yoga class, Meeting Scheduled on 17.5.19 at 11am', '', '', '', 158, '2019-05-16 17:58:36', '0000-00-00'), (2076, 2223, 'Needs website and blogs for traveling business, He told that he will visit to our Bangalore office on 17.5.19, call again', '', '', '', 158, '2019-05-16 18:06:20', '0000-00-00'), (2077, 2224, 'Call not responding properly ', '', '', '', 158, '2019-05-16 18:09:44', '0000-00-00'), (2078, 2225, 'Busy', '', '', '', 158, '2019-05-16 18:11:37', '0000-00-00'), (2079, 2226, 'No need of requirement \r\n', '', '', '', 158, '2019-05-16 18:13:39', '0000-00-00'), (2080, 2227, 'busy', '', '', '', 158, '2019-05-16 18:18:10', '0000-00-00'), (2081, 2228, 'No need of requirement \r\n', '', '', '', 158, '2019-05-16 18:27:42', '0000-00-00'), (2082, 2217, 'She enquired the price for basic website and said cost is too high. ', '', '', '', 158, '2019-05-17 10:42:44', '0000-00-00'); INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (2083, 2229, 'Needs website for multi level marketing, he told he will visit our office in Bangalore, address shared Thru whats app. \r\n', '', '', '', 158, '2019-05-17 11:24:12', '0000-00-00'), (2084, 2227, 'No need of requirement \r\n', '', '', '', 158, '2019-05-17 11:39:08', '0000-00-00'), (2085, 2212, 'He said he had finalized with others, if need they will call back', '', '', '', 158, '2019-05-17 11:47:15', '0000-00-00'), (2086, 2231, 'No need of requirement ', '', '', '', 158, '2019-05-17 11:53:22', '0000-00-00'), (2087, 2232, 'He just enquired the address, he will back if needed. \r\n', '', '', '', 158, '2019-05-17 12:05:57', '0000-00-00'), (2088, 2233, 'Needs mobile app and website for Maintenance service,he will visit our office at Bangalore on 22.5.19, ajay sir has spoken with client \r\n', '', '', '', 158, '2019-05-17 12:31:35', '0000-00-00'), (2089, 2234, 'No need of requirement \r\n', '', '', '', 158, '2019-05-17 14:52:41', '0000-00-00'), (2090, 2235, 'RNR', '', '', '', 158, '2019-05-17 14:56:02', '0000-00-00'), (2091, 2161, 'No need of requirement ', '', '', '', 158, '2019-05-20 12:25:14', '0000-00-00'), (2092, 2235, 'Call on 21.5.19', '', '', '', 158, '2019-05-20 13:07:54', '0000-00-00'), (2093, 2230, 'Call not answering ', '', '', '', 158, '2019-05-20 13:15:55', '0000-00-00'), (2094, 2225, 'call rejecting', '', '', '', 158, '2019-05-20 13:19:24', '0000-00-00'), (2095, 2223, 'Call not answering', '', '', '', 158, '2019-05-20 13:23:12', '0000-00-00'), (2096, 2218, 'Call rejecting', '', '', '', 158, '2019-05-20 13:32:31', '0000-00-00'), (2097, 2206, 'Asked to call on 21.5.19', '', '', '', 158, '2019-05-20 13:36:01', '0000-00-00'), (2098, 2237, 'Call not responding properly ', '', '', '', 158, '2019-05-20 13:50:43', '0000-00-00'), (2099, 2238, 'Call not responding properly ', '', '', '', 158, '2019-05-20 13:56:19', '0000-00-00'), (2100, 2239, 'Needs 4 pages of Static website and 4 pages of Dynamic website, asked for price call again', '', '', '', 158, '2019-05-20 14:01:20', '0000-00-00'), (2101, 2240, 'Call later', '', '', '', 158, '2019-05-20 15:14:59', '0000-00-00'), (2102, 2241, 'Needs website and Facebook page, asking for personnel website, not responding properly \r\n', '', '', '', 158, '2019-05-20 15:24:41', '0000-00-00'), (2103, 2242, 'call later\r\n', '', '', '', 158, '2019-05-20 15:27:13', '0000-00-00'), (2104, 2243, 'Call not answering', '', '', '', 158, '2019-05-20 15:31:20', '0000-00-00'), (2105, 2244, 'Call not answering ', '', '', '', 158, '2019-05-20 15:35:07', '0000-00-00'), (2106, 2245, 'Asked to call later at 4 pm', '', '', '', 158, '2019-05-20 15:40:29', '0000-00-00'), (2107, 2246, 'Company profile and reference links has been shared thru mail ', '', '', '', 158, '2019-05-20 15:46:25', '0000-00-00'), (2108, 2247, 'Enquired the price for E-commerce website for 30 products', '', '', '', 158, '2019-05-20 16:10:04', '0000-00-00'), (2109, 2248, 'No need of requirement, they had finalizes with others\r\n', '', '', '', 158, '2019-05-20 16:12:56', '0000-00-00'), (2110, 2249, 'No need of requirement, updated by mistake.\r\n', '', '', '', 158, '2019-05-20 16:16:08', '0000-00-00'), (2111, 2250, 'Call not answering ', '', '', '', 158, '2019-05-20 16:18:50', '0000-00-00'), (2112, 2251, 'No need of requirement, job\r\n', '', '', '', 158, '2019-05-20 16:22:21', '0000-00-00'), (2113, 2252, 'Call rejected ', '', '', '', 158, '2019-05-20 16:41:43', '0000-00-00'), (2114, 2250, 'Call not answering ', '', '', '', 158, '2019-05-20 16:59:55', '0000-00-00'), (2115, 2253, 'Number not exists\r\n\r\n', '', '', '', 158, '2019-05-20 17:04:38', '0000-00-00'), (2116, 614, 'Rs. 9000 - Website\r\nRs. 1500 - Logo\r\nRs. 1300 - VC, Letterhead nd Envelope', '', '', 'ACTIVE', 80, '2019-05-20 17:19:00', '0000-00-00'), (2117, 2254, 'Switch off', '', '', '', 158, '2019-05-20 17:34:58', '0000-00-00'), (2118, 2255, 'Call not answering', '', '', '', 158, '2019-05-20 17:37:54', '0000-00-00'), (2119, 2256, 'No need of requirements \r\n', '', '', '', 158, '2019-05-20 17:39:56', '0000-00-00'), (2120, 2257, 'Needs changes in website https://www.brainyquote.com/, asked him to share the changes list.\r\n', '', '', '', 158, '2019-05-20 17:47:06', '0000-00-00'), (2121, 2258, 'They had finalized with others.\r\n', '', '', '', 158, '2019-05-20 17:50:40', '0000-00-00'), (2122, 2259, 'Call not answering ', '', '', '', 158, '2019-05-20 18:12:47', '0000-00-00'), (2123, 2260, 'Call not answering ', '', '', '', 158, '2019-05-20 18:19:22', '0000-00-00'), (2124, 2261, 'Needs mobile app similar to Zibble tracker, Ajay sir has spoken with client, (estimated for 3L) client will visit to Mysore office. Call on 21.5.19\r\n', '', '', '', 158, '2019-05-20 18:22:44', '0000-00-00'), (2125, 2262, 'Meeting scheduled on 21.5.19 at 9:30am, informed to Nithin. ', '', '', '', 158, '2019-05-20 18:29:39', '0000-00-00'), (2126, 2261, 'Call at 11am ', '', '', '', 158, '2019-05-21 10:26:57', '0000-00-00'), (2127, 2233, 'Reminded him about meeting', '', '', '', 158, '2019-05-21 10:31:36', '0000-00-00'), (2128, 2263, 'Not responding properly ', '', '', '', 158, '2019-05-21 10:37:51', '0000-00-00'), (2129, 2264, 'Call rejected ', '', '', '', 158, '2019-05-21 10:43:32', '0000-00-00'), (2130, 2245, 'Quotation has been send thru mail', '', '', '', 158, '2019-05-21 11:53:26', '0000-00-00'), (2131, 2220, 'Asked to schedule meeting date and time not confirmed.', '', '', '', 158, '2019-05-21 11:56:43', '0000-00-00'), (2132, 2220, 'call not answering ', '', '', '', 158, '2019-05-21 11:58:43', '0000-00-00'), (2133, 2245, 'Call not answering ', '', '', '', 158, '2019-05-21 12:00:04', '0000-00-00'), (2134, 2262, 'Meeting scheduled for 2:00pm', '', '', '', 158, '2019-05-21 12:00:59', '0000-00-00'), (2135, 2223, 'Call not answering ', '', '', '', 158, '2019-05-21 12:01:57', '0000-00-00'), (2136, 2219, 'Prices are too high it-seems, if need he will call back ', '', '', '', 158, '2019-05-21 12:14:43', '0000-00-00'), (2137, 2265, 'Call rejected ', '', '', '', 158, '2019-05-21 12:19:27', '0000-00-00'), (2138, 2266, 'Needs Dynamic website and student management software for Pavas Educational academy. meeting scheduled for 1:30pm, 21.5.19 Informed Nithin.\r\n', '', '', '', 158, '2019-05-21 12:26:15', '0000-00-00'), (2139, 2261, 'Not reachable ', '', '', '', 158, '2019-05-21 12:29:38', '0000-00-00'), (2140, 2267, 'Needs 2-3 pages of static website Ajay sir has spoken with client (7-8k)\r\n', '', '', '', 158, '2019-05-21 12:31:18', '0000-00-00'), (2141, 2268, 'Needs single page static website for LPM Solutions pvt ltd, BPO, 5k +GST informed Nithin to call again \r\n', '', '', '', 158, '2019-05-21 13:02:56', '0000-00-00'), (2142, 2269, 'Quotation has been send thru whats app and mail id, subbu sir has spoken with client ', '', '', '', 158, '2019-05-21 13:21:25', '0000-00-00'), (2143, 2270, 'Needs Matrimonial website with admin panel, subbu sir has spoken with client and quotation has been send thru whats app.\r\n\r\n', '', '', '', 158, '2019-05-21 13:47:22', '0000-00-00'), (2144, 2267, 'Address has been shared, he told the he will visit our Bangalore office in next week. Remind call on 24.5.19.', '', '', '', 158, '2019-05-21 13:59:13', '0000-00-00'), (2145, 2220, 'Call not answering ', '', '', '', 158, '2019-05-21 15:42:51', '0000-00-00'), (2146, 2222, 'They told that they don’t need web application now because they have still not planned about business, if they need they will call back.\r\n', '', '', '', 158, '2019-05-21 15:52:48', '0000-00-00'), (2147, 2218, 'Busy', '', '', '', 158, '2019-05-21 15:55:12', '0000-00-00'), (2148, 2206, 'call not answering ', '', '', '', 158, '2019-05-21 15:58:00', '0000-00-00'), (2149, 2271, 'Call not responding properly\r\n', '', '', '', 158, '2019-05-21 16:02:20', '0000-00-00'), (2150, 2196, 'Call not answering ', '', '', '', 158, '2019-05-21 16:05:48', '0000-00-00'), (2151, 2268, 'Nithin- call not answering for meeting\r\n', '', '', '', 158, '2019-05-21 17:42:59', '0000-00-00'), (2152, 2272, 'Call not answering ', '', '', '', 158, '2019-05-21 17:50:47', '0000-00-00'), (2153, 2269, 'He feels cost is too high, Subbu sir had told 2nd quotation amount for 14k+GST, he will decide and inform us.', '', '', '', 158, '2019-05-21 17:54:06', '0000-00-00'), (2154, 2273, 'No need of requirement, they are looking for local vendor it-seems\r\n', '', '', '', 158, '2019-05-21 18:08:19', '0000-00-00'), (2155, 2270, 'call on 22.5.19\r\n', '', '', '', 158, '2019-05-21 18:09:45', '0000-00-00'), (2156, 2275, 'They had finalized with others\r\n', '', '', '', 158, '2019-05-21 18:13:36', '0000-00-00'), (2157, 2276, 'Needs E-commerce website for home appliance, 5 product within 5000/-\r\n', '', '', '', 158, '2019-05-21 18:15:46', '0000-00-00'), (2158, 2277, 'Call not answering \r\n', '', '', '', 158, '2019-05-21 18:19:02', '0000-00-00'), (2159, 2278, 'No need of requirement, job\r\n', '', '', '', 158, '2019-05-21 18:20:43', '0000-00-00'), (2160, 2279, 'Switch off', '', '', '', 158, '2019-05-21 18:22:31', '0000-00-00'), (2161, 2280, 'Needs to change the website, he will visit our Bangalore office https://www.valsalyacare.com/index.html\r\n', '', '', '', 158, '2019-05-21 18:25:42', '0000-00-00'), (2162, 2281, 'Call not answering ', '', '', '', 158, '2019-05-22 11:09:10', '0000-00-00'), (2163, 2281, 'Call not answering ', '', '', '', 158, '2019-05-22 11:11:54', '0000-00-00'), (2164, 2270, 'Still he had not decided, he will call back us later ', '', '', '', 158, '2019-05-22 12:36:03', '0000-00-00'), (2165, 2238, 'Company profile has been send thru whats app on 17.519,', '', '', '', 158, '2019-05-22 12:45:06', '0000-00-00'), (2166, 2238, 'call later', '', '', '', 158, '2019-05-22 12:45:19', '0000-00-00'), (2167, 2239, 'Call rejected', '', '', '', 158, '2019-05-22 12:46:47', '0000-00-00'), (2168, 2239, 'He enquired for the price(16k+GST), he said cost is high, he will call back us if need.', '', '', '', 158, '2019-05-22 13:09:26', '0000-00-00'), (2169, 2283, 'They told that they had spoken with others, if they need they will call back \r\n', '', '', '', 158, '2019-05-22 13:12:25', '0000-00-00'), (2170, 618, '22/5/2019 : Got the requirements and started with the Design.', '', '', 'ACTIVE', 80, '2019-05-22 13:13:21', '0000-00-00'), (2171, 2246, 'They had finalized with others\r\n', '', '', '', 158, '2019-05-22 13:15:16', '0000-00-00'), (2172, 2247, 'Call not answering', '', '', '', 158, '2019-05-22 13:16:50', '0000-00-00'), (2173, 2245, 'Call later', '', '', '', 158, '2019-05-22 13:21:54', '0000-00-00'), (2174, 2238, 'Needs e commerce website and mobile app, asking to schedule meeting, ', '', '', '', 158, '2019-05-22 13:28:21', '0000-00-00'), (2175, 2257, 'Asked him to mail the list of changes, but still no he had not mailed', '', '', '', 158, '2019-05-22 13:33:47', '0000-00-00'), (2176, 2284, 'Call not answering ', '', '', '', 158, '2019-05-22 13:39:43', '0000-00-00'), (2177, 1939, 'Call not answering ', '', '', '', 158, '2019-05-22 13:41:05', '0000-00-00'), (2178, 2262, 'Meeting re-scheduled for 22.5.19, informed Nithin to call and visit.', '', '', '', 158, '2019-05-22 13:46:23', '0000-00-00'), (2179, 2261, 'Quotation has been send thru mail.\r\n', '', '', '', 158, '2019-05-22 13:47:49', '0000-00-00'), (2180, 2266, 'meeting has done waiting for confirmation. \r\n', '', '', '', 158, '2019-05-22 13:49:12', '0000-00-00'), (2181, 2268, 'Feels cost is high, he said that others has offered for 3500/-, if needs he will call back.', '', '', '', 158, '2019-05-22 13:51:51', '0000-00-00'), (2182, 2247, ' Address has shared he will call and visit to our Bangalore office.\r\n', '', '', '', 158, '2019-05-22 14:09:10', '0000-00-00'), (2183, 2285, 'No need of requirement, enquired for job ', '', '', '', 158, '2019-05-22 14:17:18', '0000-00-00'), (2184, 2269, 'Busy', '', '', '', 158, '2019-05-22 15:08:47', '0000-00-00'), (2185, 2269, 'Still they had not decided', '', '', '', 158, '2019-05-22 15:36:25', '0000-00-00'), (2186, 2286, 'No need of requirement ', '', '', '', 158, '2019-05-22 15:43:34', '0000-00-00'), (2187, 2287, 'They will call back us if needed \r\n', '', '', '', 158, '2019-05-22 15:47:07', '0000-00-00'), (2188, 2288, 'Company profile and reference links has been shared thru whats app 9036556147\r\n', '', '', '', 158, '2019-05-22 15:49:38', '0000-00-00'), (2189, 2289, 'Busy', '', '', '', 158, '2019-05-22 15:55:32', '0000-00-00'), (2190, 2290, 'Call not answering ', '', '', '', 158, '2019-05-22 15:57:32', '0000-00-00'), (2191, 2291, 'No need of requirement, he had spoken with others who is nearby to their office.', '', '', '', 158, '2019-05-22 16:03:08', '0000-00-00'), (2192, 2292, 'Needs static website for training center, he said he will call back us within 6pm.\r\n', '', '', '', 158, '2019-05-22 16:08:09', '0000-00-00'), (2193, 2293, 'Busy', '', '', '', 158, '2019-05-22 16:13:03', '0000-00-00'), (2194, 2294, 'No need of requirement, they had updated by mistake ', '', '', '', 158, '2019-05-22 16:21:14', '0000-00-00'), (2195, 2100, 'Call not answering', '', '', '', 158, '2019-05-22 16:23:10', '0000-00-00'), (2196, 2160, 'Needs website for Astrology(numerology) spoken with subbu sir and links shared for client - con call, Client said that he will visit Bangalore office.\r\n', '', '', '', 158, '2019-05-22 16:26:22', '0000-00-00'), (2197, 2194, 'Quotation has been send by subbu sir, still now they had not confirmed ', '', '', '', 158, '2019-05-22 16:29:59', '0000-00-00'), (2198, 2160, 'Call later ', '', '', '', 158, '2019-05-22 16:32:28', '0000-00-00'), (2199, 2097, 'No need of requirement, they are looking for low cost itseems', '', '', '', 158, '2019-05-22 16:36:59', '0000-00-00'), (2200, 2218, 'Call not answering', '', '', '', 158, '2019-05-22 16:39:01', '0000-00-00'), (2201, 2221, 'Subbu sir spoken with client- not potential client, if they need they will call back.\r\n', '', '', '', 158, '2019-05-22 16:53:40', '0000-00-00'), (2202, 2220, 'Call busy', '', '', '', 158, '2019-05-22 16:56:15', '0000-00-00'), (2203, 2203, 'Switch off ', '', '', '', 158, '2019-05-22 17:03:52', '0000-00-00'), (2204, 2293, 'No need of requirement, Post updated by mistake', '', '', '', 158, '2019-05-22 17:08:20', '0000-00-00'), (2205, 2282, 'Asked to scheduled the meeting, Informed Nithin to call and confirm the time ', '', '', '', 158, '2019-05-22 17:13:44', '0000-00-00'), (2206, 2266, 'Call not answering', '', '', '', 158, '2019-05-22 17:16:19', '0000-00-00'), (2207, 2272, 'They told no need for now if need they will contact us,\r\n', '', '', '', 158, '2019-05-22 17:19:39', '0000-00-00'), (2208, 2277, 'Call busy ', '', '', '', 158, '2019-05-22 17:24:32', '0000-00-00'), (2209, 2279, 'Switch off', '', '', '', 158, '2019-05-22 17:26:25', '0000-00-00'), (2210, 2277, 'Enquired for E-commerce website for 2 products (electronics), reference links shared thru whats app\r\n', '', '', '', 158, '2019-05-22 17:36:09', '0000-00-00'), (2211, 2295, 'No need of requirement \r\n', '', '', '', 158, '2019-05-22 17:41:07', '0000-00-00'), (2212, 2297, 'No need of requirement \r\n', '', '', '', 158, '2019-05-22 18:05:44', '0000-00-00'), (2213, 2298, 'Needs E-commerce website with android app for 2 products, asked to scheduled meeting on 23.5.19 at 11am, Informed Nithin \r\n', '', '', '', 158, '2019-05-22 18:09:40', '0000-00-00'), (2214, 2238, 'Meeting scheduled 23.5.19 at 12.30pm informed Nithin', '', '', '', 158, '2019-05-22 18:20:21', '0000-00-00'), (2215, 2282, 'Meeting scheduled on 23.5.19 at 11am', '', '', '', 158, '2019-05-22 18:23:32', '0000-00-00'), (2216, 2262, 'Meeting re-scheduled on 23.5.19', '', '', '', 158, '2019-05-22 18:35:44', '0000-00-00'), (2217, 2299, 'Call not answering', '', '', '', 158, '2019-05-25 10:53:51', '0000-00-00'), (2218, 2300, 'Call not answering', '', '', '', 158, '2019-05-25 11:38:30', '0000-00-00'), (2219, 2301, 'Call not answering ', '', '', '', 158, '2019-05-25 11:41:18', '0000-00-00'), (2220, 2302, 'No need of requirement, they had spoken with others', '', '', '', 158, '2019-05-25 11:45:15', '0000-00-00'), (2221, 2266, 'call not answering', '', '', '', 158, '2019-05-25 11:53:23', '0000-00-00'), (2222, 2288, 'They will inform us after 27.5.19.', '', '', '', 158, '2019-05-25 11:56:23', '0000-00-00'), (2223, 2238, 'call not answering', '', '', '', 158, '2019-05-25 12:01:00', '0000-00-00'), (2224, 2236, 'Needs changes in there website www.pourothithya.in and as well as in mobile app…. Sub-bu sir has spoken with client, He is looking for low cost, Subbu sir told to discard this project.', '', '', '', 158, '2019-05-25 12:05:33', '0000-00-00'), (2225, 2235, 'Call not answering ', '', '', '', 158, '2019-05-25 12:07:30', '0000-00-00'), (2226, 2233, 'He said he will call back us', '', '', '', 158, '2019-05-25 12:12:13', '0000-00-00'), (2227, 2270, 'Call not answering ', '', '', '', 158, '2019-05-25 12:14:43', '0000-00-00'), (2228, 2304, 'call later ', '', '', '', 158, '2019-05-25 15:24:04', '0000-00-00'), (2229, 2305, 'no need of requirement, enquired for job', '', '', '', 158, '2019-05-25 15:26:18', '0000-00-00'), (2230, 2306, 'call not answering ', '', '', '', 158, '2019-05-25 15:28:26', '0000-00-00'), (2231, 2307, 'busy', '', '', '', 158, '2019-05-25 15:30:54', '0000-00-00'), (2232, 2310, 'Call not answering \r\n\r\n', '', '', '', 158, '2019-05-25 16:06:56', '0000-00-00'), (2233, 2310, 'Busy', '', '', '', 158, '2019-05-25 16:07:07', '0000-00-00'), (2234, 2311, 'Call later ', '', '', '', 158, '2019-05-25 16:09:45', '0000-00-00'), (2235, 2312, 'No need of requirement, enquired for job ', '', '', '', 158, '2019-05-25 16:26:52', '0000-00-00'), (2236, 2314, 'No need of requirement, enquired for job', '', '', '', 158, '2019-05-25 16:42:23', '0000-00-00'), (2237, 2316, 'No need of requirement ', '', '', '', 158, '2019-05-25 16:48:53', '0000-00-00'), (2238, 2317, 'No need of requirement ', '', '', '', 158, '2019-05-25 16:52:23', '0000-00-00'), (2239, 2319, 'No need of requirement ', '', '', '', 158, '2019-05-25 16:56:36', '0000-00-00'), (2240, 2320, 'call not answering', '', '', '', 158, '2019-05-25 16:59:57', '0000-00-00'), (2241, 2320, 'Busy', '', '', '', 158, '2019-05-25 17:00:05', '0000-00-00'), (2242, 2292, 'He will call back us', '', '', '', 158, '2019-05-25 17:02:01', '0000-00-00'), (2243, 2290, 'No need of requirement ', '', '', '', 158, '2019-05-25 17:04:12', '0000-00-00'), (2244, 2280, 'call not answering', '', '', '', 158, '2019-05-25 17:05:37', '0000-00-00'), (2245, 2261, 'Call not answering ', '', '', '', 158, '2019-05-25 17:07:21', '0000-00-00'), (2246, 2245, 'He will call back later ', '', '', '', 158, '2019-05-25 17:12:51', '0000-00-00'), (2247, 2242, 'No need of requirement ', '', '', '', 158, '2019-05-25 17:13:53', '0000-00-00'), (2248, 2240, 'No need of requirement ', '', '', '', 158, '2019-05-25 17:15:51', '0000-00-00'), (2249, 2238, 'Call rejecting ', '', '', '', 158, '2019-05-25 17:17:05', '0000-00-00'), (2250, 2235, 'Call not answering', '', '', '', 158, '2019-05-25 17:18:22', '0000-00-00'), (2251, 2321, 'No need of requirement, enquired for job ', '', '', '', 158, '2019-05-25 17:21:52', '0000-00-00'), (2252, 2322, 'Tried so many times Call not connecting ', '', '', '', 158, '2019-05-25 17:25:00', '0000-00-00'), (2253, 2323, 'No need of requirement, they had finalized with others.', '', '', '', 158, '2019-05-25 17:29:29', '0000-00-00'), (2254, 2324, 'call not answering ', '', '', '', 158, '2019-05-25 17:44:07', '0000-00-00'), (2255, 2325, 'Tried so many times call not answering', '', '', '', 158, '2019-05-25 17:48:44', '0000-00-00'), (2256, 2270, 'Call not answering ', '', '', '', 158, '2019-05-25 17:50:52', '0000-00-00'), (2257, 2326, 'No need of requirement ', '', '', '', 158, '2019-05-25 18:03:09', '0000-00-00'), (2258, 2327, 'He will call back us ', '', '', '', 158, '2019-05-25 18:06:02', '0000-00-00'), (2259, 2309, 'Call not answering ', '', '', '', 158, '2019-05-25 18:12:43', '0000-00-00'), (2260, 2309, 'Busy', '', '', '', 158, '2019-05-25 18:12:53', '0000-00-00'), (2261, 2329, 'No requirement ', '', '', '', 158, '2019-05-25 18:15:57', '0000-00-00'), (2262, 2330, 'Switch off', '', '', '', 158, '2019-05-25 18:17:44', '0000-00-00'), (2263, 2331, 'Needs E-commerce website, call later\r\n', '', '', '', 158, '2019-05-25 18:21:37', '0000-00-00'), (2264, 2332, 'call later ', '', '', '', 158, '2019-05-25 18:23:25', '0000-00-00'), (2265, 2313, 'call later ', '', '', '', 158, '2019-05-25 18:25:22', '0000-00-00'), (2266, 2333, 'Needs dynamic website for real estate business, package details shared thru mail\r\n', '', '', '', 158, '2019-05-27 11:32:20', '0000-00-00'), (2267, 2334, 'Call later ', '', '', '', 158, '2019-05-27 11:35:30', '0000-00-00'), (2268, 2335, 'Call rejected ', '', '', '', 158, '2019-05-27 11:40:14', '0000-00-00'), (2269, 2295, 'No need of requirement ', '', '', '', 158, '2019-05-27 11:44:27', '0000-00-00'), (2270, 2280, 'They will call and visit to our Bangalore office, ', '', '', '', 158, '2019-05-27 11:45:44', '0000-00-00'), (2271, 2336, 'Busy', '', '', '', 158, '2019-05-27 11:52:41', '0000-00-00'), (2272, 2317, 'No need of requirement, Don\'t call', '', '', '', 158, '2019-05-27 11:57:17', '0000-00-00'), (2273, 2337, 'Call not answering \r\n', '', '', '', 158, '2019-05-27 11:58:33', '0000-00-00'), (2274, 2338, 'Asked to call later ', '', '', '', 158, '2019-05-27 12:03:17', '0000-00-00'), (2275, 2339, 'Call not answering ', '', '', '', 158, '2019-05-27 12:07:25', '0000-00-00'), (2276, 2340, 'call later ', '', '', '', 158, '2019-05-27 12:11:44', '0000-00-00'), (2277, 2342, 'Call not answering ', '', '', '', 158, '2019-05-27 12:35:05', '0000-00-00'), (2278, 2343, 'No need of requirement enquired for job\r\n', '', '', '', 158, '2019-05-27 12:42:57', '0000-00-00'), (2279, 2345, 'No Need of requirement, Inquired for job.', '', '', '', 158, '2019-05-27 12:55:12', '0000-00-00'), (2280, 2299, 'Call not answering', '', '', '', 158, '2019-05-27 13:01:35', '0000-00-00'), (2281, 2346, 'Call not answering', '', '', '', 158, '2019-05-27 13:04:09', '0000-00-00'), (2282, 2327, 'They will call back us if needed ', '', '', '', 158, '2019-05-27 13:05:04', '0000-00-00'), (2283, 2318, 'No need of requirement ', '', '', '', 158, '2019-05-27 13:06:56', '0000-00-00'), (2284, 2347, 'Asked to call on 28.5.19', '', '', '', 158, '2019-05-27 13:11:11', '0000-00-00'), (2285, 2347, 'Asked to call on 28.5.19', '', '', '', 158, '2019-05-27 13:11:11', '0000-00-00'), (2286, 2328, 'Call not answering ', '', '', '', 158, '2019-05-27 13:13:19', '0000-00-00'), (2287, 2333, 'They will decide and inform us ', '', '', '', 158, '2019-05-27 15:25:57', '0000-00-00'), (2288, 2348, 'No need of requirement, inquired for job ', '', '', '', 158, '2019-05-27 15:35:26', '0000-00-00'), (2289, 2349, 'Right now they are busy it-seems They will call back us for website\r\n', '', '', '', 158, '2019-05-27 15:38:38', '0000-00-00'), (2290, 2350, 'Needs website for Interior Business (still not started), he just inquired the details of website, if need he will call back.\r\n', '', '', '', 158, '2019-05-27 15:47:06', '0000-00-00'), (2291, 2346, 'Call not answering', '', '', '', 158, '2019-05-27 15:51:57', '0000-00-00'), (2292, 2342, 'Call not answering ', '', '', '', 158, '2019-05-27 15:58:48', '0000-00-00'), (2293, 2351, 'No need of requirement ', '', '', '', 158, '2019-05-27 16:59:41', '0000-00-00'), (2294, 2352, 'No need of requirement, Job consultancy ', '', '', '', 158, '2019-05-27 17:01:46', '0000-00-00'), (2295, 2353, 'Needs static website for event management, explained about single page w/s for 5k+GST, and 5 page for 7k+GST….call on 28.5\r\n', '', '', '', 158, '2019-05-27 17:06:13', '0000-00-00'), (2296, 2337, 'Asked to call on 28.5', '', '', '', 158, '2019-05-27 17:07:09', '0000-00-00'), (2297, 2336, 'Switch off/Call not connecting ', '', '', '', 158, '2019-05-27 17:08:08', '0000-00-00'), (2298, 2335, 'Call rejected ', '', '', '', 158, '2019-05-27 17:08:53', '0000-00-00'), (2299, 2334, 'Call not answering ', '', '', '', 158, '2019-05-27 17:09:55', '0000-00-00'), (2300, 2328, 'No need of requirement ', '', '', '', 158, '2019-05-27 17:22:50', '0000-00-00'), (2301, 2269, 'They will inform us within 29.5.19', '', '', '', 158, '2019-05-27 17:24:07', '0000-00-00'), (2302, 2304, 'Call later ', '', '', '', 158, '2019-05-27 17:26:27', '0000-00-00'), (2303, 2307, 'Switch off', '', '', '', 158, '2019-05-27 17:27:55', '0000-00-00'), (2304, 2354, 'No need of requirement ', '', '', '', 158, '2019-05-27 17:30:26', '0000-00-00'), (2305, 2355, 'No need of requirement\r\n', '', '', '', 158, '2019-05-27 17:32:34', '0000-00-00'), (2306, 2332, 'Call not answering ', '', '', '', 158, '2019-05-27 17:33:17', '0000-00-00'), (2307, 2313, 'They had finalized with others ', '', '', '', 158, '2019-05-27 17:34:23', '0000-00-00'), (2308, 2357, 'No need of requirement \r\n', '', '', '', 158, '2019-05-27 17:38:10', '0000-00-00'), (2309, 2358, 'Switch off', '', '', '', 158, '2019-05-27 17:40:57', '0000-00-00'), (2310, 2288, 'call not answering', '', '', '', 158, '2019-05-27 17:42:06', '0000-00-00'), (2311, 2277, 'Shared our mail ID and asked them to share their requirements. ', '', '', '', 158, '2019-05-27 17:44:27', '0000-00-00'), (2312, 2270, 'Still they had not decided, they will call and inform us within 30.5.19', '', '', '', 158, '2019-05-27 17:45:59', '0000-00-00'), (2313, 2267, 'He will call back us later ', '', '', '', 158, '2019-05-27 17:47:42', '0000-00-00'), (2314, 2261, 'Busy', '', '', '', 158, '2019-05-27 17:49:04', '0000-00-00'), (2315, 2245, 'Call rejected', '', '', '', 158, '2019-05-27 17:53:44', '0000-00-00'), (2316, 2338, 'Call rejected ', '', '', '', 158, '2019-05-27 17:54:24', '0000-00-00'), (2317, 2359, 'Call rejected ', '', '', '', 158, '2019-05-27 17:58:07', '0000-00-00'), (2318, 2304, 'Call rejected ', '', '', '', 158, '2019-05-27 18:06:51', '0000-00-00'), (2319, 2360, 'They had finalized with others ', '', '', '', 158, '2019-05-27 18:37:07', '0000-00-00'), (2320, 2267, 'Call not answering ', '', '', '', 158, '2019-05-27 18:39:11', '0000-00-00'), (2321, 2267, 'They had still not decided, they will call on 1.6.19', '', '', '', 158, '2019-05-27 18:40:51', '0000-00-00'), (2322, 2361, 'Needs E-commerce website, inquiring the price, ', '', '', '', 158, '2019-05-28 12:31:09', '0000-00-00'), (2323, 2362, 'Call later ', '', '', '', 158, '2019-05-28 12:33:29', '0000-00-00'), (2324, 2333, 'Call not answering ', '', '', '', 158, '2019-05-28 12:39:24', '0000-00-00'), (2325, 2334, 'Call not answering', '', '', '', 158, '2019-05-28 12:40:59', '0000-00-00'), (2326, 2363, 'Call rejected ', '', '', '', 158, '2019-05-28 12:45:13', '0000-00-00'), (2327, 2364, 'Needs Single page website for New business, subbu sir has spoken with client, client will visit our bangalore office and conform about the payment.', '', '', '', 158, '2019-05-28 12:49:44', '0000-00-00'), (2328, 2304, 'No need of requirement, they had already done itseems.', '', '', '', 158, '2019-05-28 12:55:25', '0000-00-00'), (2329, 2365, 'needs static website for organic jam, looking for freelance who can sit with them only and do the website, convinced that we will do it in 1 week (in office),,,he told that he will confirm within evening \r\n', '', '', '', 158, '2019-05-28 13:03:11', '0000-00-00'), (2330, 2366, 'Needs website for Gold J Groups -Real estate business, asked to mail the company profile and reference links, shared thru mail ', '', '', '', 158, '2019-05-28 13:09:54', '0000-00-00'), (2331, 2353, 'Call not answering ', '', '', '', 158, '2019-05-28 13:49:10', '0000-00-00'), (2332, 2346, 'Call not answering', '', '', '', 158, '2019-05-28 13:51:23', '0000-00-00'), (2333, 2346, 'No need of requirement \r\n', '', '', '', 158, '2019-05-28 13:52:42', '0000-00-00'), (2334, 2333, 'Call not answering ', '', '', '', 158, '2019-05-28 13:54:21', '0000-00-00'), (2335, 2347, 'call not answering ', '', '', '', 158, '2019-05-28 13:55:50', '0000-00-00'), (2336, 2365, 'Meeting scheduled on 29.5.19, They will share the requirements with Nithin ', '', '', '', 158, '2019-05-28 13:59:18', '0000-00-00'), (2337, 2288, 'call not answering ', '', '', '', 158, '2019-05-28 14:00:21', '0000-00-00'), (2338, 2333, 'Still they had not decided ', '', '', '', 158, '2019-05-28 14:05:02', '0000-00-00'), (2339, 2266, 'Call not answering ', '', '', '', 158, '2019-05-28 14:08:35', '0000-00-00'), (2340, 2367, 'No requirement \r\n', '', '', '', 158, '2019-05-28 15:18:50', '0000-00-00'), (2341, 2368, 'Needs similar website http://www.honeypalace.com/…..est price 8k +GST(subbu sir)\r\n', '', '', '', 158, '2019-05-28 15:21:51', '0000-00-00'), (2342, 2369, 'Call not answering ', '', '', '', 158, '2019-05-28 15:25:13', '0000-00-00'), (2343, 2370, 'Needs website for printed balloons, he inquired the prices of both the website, he will decide and call back us.\r\n', '', '', '', 158, '2019-05-28 15:27:30', '0000-00-00'), (2344, 2371, 'No need of requirement\r\n', '', '', '', 158, '2019-05-28 15:29:30', '0000-00-00'), (2345, 2372, 'No need of requirement ', '', '', '', 158, '2019-05-28 15:34:19', '0000-00-00'), (2346, 2373, 'Currently no requirements if they need they will call back\r\n', '', '', '', 158, '2019-05-28 15:55:59', '0000-00-00'), (2347, 2374, 'They will mail the requirements.', '', '', '', 158, '2019-05-28 16:16:37', '0000-00-00'), (2348, 2375, 'Call not answering ', '', '', '', 158, '2019-05-28 16:21:32', '0000-00-00'), (2349, 2376, 'No need of requirement, they had posted by mistake \r\n', '', '', '', 158, '2019-05-28 16:25:54', '0000-00-00'), (2350, 2288, 'Call not answering ', '', '', '', 158, '2019-05-28 17:09:35', '0000-00-00'), (2351, 2353, 'Call not answering ', '', '', '', 158, '2019-05-28 17:11:42', '0000-00-00'), (2352, 2378, 'No need of requirement, ', '', '', '', 158, '2019-05-28 18:01:15', '0000-00-00'), (2353, 2220, 'Number not exists ', '', '', '', 158, '2019-05-29 10:28:50', '0000-00-00'), (2354, 2223, 'He told once he gets free he will call and visit our Bangalore office.', '', '', '', 158, '2019-05-29 10:34:18', '0000-00-00'), (2355, 2233, 'Still they and not decided, they will us if needed.', '', '', '', 158, '2019-05-29 10:37:22', '0000-00-00'), (2356, 2236, 'Asking for low cost, ', '', '', '', 158, '2019-05-29 10:38:30', '0000-00-00'), (2357, 2238, 'call later', '', '', '', 158, '2019-05-29 10:39:48', '0000-00-00'), (2358, 2245, 'They will call on 30.5.19 and inform ', '', '', '', 158, '2019-05-29 10:42:21', '0000-00-00'), (2359, 2261, 'Busy', '', '', '', 158, '2019-05-29 10:44:19', '0000-00-00'), (2360, 2266, 'Call not answering', '', '', '', 158, '2019-05-29 10:45:21', '0000-00-00'), (2361, 2269, 'Call not answering ', '', '', '', 158, '2019-05-29 10:46:25', '0000-00-00'), (2362, 2380, 'Call not answering', '', '', '', 158, '2019-05-29 11:35:53', '0000-00-00'), (2363, 2379, 'Needs website and app, informed Nithin to call the client ', '', '', '', 158, '2019-05-29 11:37:20', '0000-00-00'), (2364, 2381, 'Company profile and reference links shared thru mail', '', '', '', 158, '2019-05-29 12:27:35', '0000-00-00'), (2365, 2383, 'No need of requirement, inquired for job ', '', '', '', 158, '2019-05-29 12:35:46', '0000-00-00'), (2366, 2382, 'Needs website for Tattoo studio,(startup business) he inquired about both the website he will call on 3.6. and inform\r\n', '', '', '', 158, '2019-05-29 12:37:01', '0000-00-00'), (2367, 2384, 'Call not answering ', '', '', '', 158, '2019-05-29 12:50:57', '0000-00-00'), (2368, 2385, 'Inquired the price for 15 page static website for kidszone, Company profile and links shared thru mail', '', '', '', 158, '2019-05-29 12:55:12', '0000-00-00'), (2369, 2386, 'No need of requirements', '', '', '', 158, '2019-05-29 12:57:14', '0000-00-00'), (2370, 2387, 'No need of requirements ', '', '', '', 158, '2019-05-29 13:00:10', '0000-00-00'), (2371, 2388, 'Just inquired the price for static website(7k+gst)', '', '', '', 158, '2019-05-29 13:04:58', '0000-00-00'), (2372, 2375, 'Call not answering ', '', '', '', 158, '2019-05-29 13:06:33', '0000-00-00'), (2373, 2374, 'They will mail the requirements.', '', '', '', 158, '2019-05-29 13:09:55', '0000-00-00'), (2374, 2370, 'They will decide and call back, others had offered for lower cost \r\n\r\n', '', '', '', 158, '2019-05-29 13:16:05', '0000-00-00'), (2375, 2368, 'Call later', '', '', '', 158, '2019-05-29 13:18:19', '0000-00-00'), (2376, 2366, 'They will decide and call on 30.5.19', '', '', '', 158, '2019-05-29 13:20:10', '0000-00-00'), (2377, 2362, 'Busy', '', '', '', 158, '2019-05-29 13:22:28', '0000-00-00'), (2378, 2206, 'Call not answering ', '', '', '', 158, '2019-05-29 13:24:39', '0000-00-00'), (2379, 2353, 'Call later ', '', '', '', 158, '2019-05-29 13:27:58', '0000-00-00'), (2380, 2340, 'Call not responding properly ', '', '', '', 158, '2019-05-29 13:31:59', '0000-00-00'), (2381, 2342, 'Asked to call later ', '', '', '', 158, '2019-05-29 13:33:47', '0000-00-00'), (2382, 2334, 'Call not answering ', '', '', '', 158, '2019-05-29 13:35:30', '0000-00-00'), (2383, 2288, 'Call not answering', '', '', '', 158, '2019-05-29 13:41:42', '0000-00-00'), (2384, 2334, 'Asked to call at 5pm ', '', '', '', 158, '2019-05-29 13:46:31', '0000-00-00'), (2385, 2389, 'Call not answering ', '', '', '', 158, '2019-05-29 15:13:22', '0000-00-00'), (2386, 2390, 'Call later ', '', '', '', 158, '2019-05-29 15:17:05', '0000-00-00'), (2387, 2391, 'No need of requirement ', '', '', '', 158, '2019-05-29 15:30:47', '0000-00-00'), (2388, 2392, 'Busy', '', '', '', 158, '2019-05-29 15:32:53', '0000-00-00'), (2389, 2393, 'Needs website for school, company profile and reference links shared thru mail, they will check and call back us', '', '', '', 158, '2019-05-29 15:38:05', '0000-00-00'), (2390, 2394, 'Asked to call later', '', '', '', 158, '2019-05-29 15:43:31', '0000-00-00'), (2391, 2385, 'Call not answering ', '', '', '', 158, '2019-05-29 15:47:50', '0000-00-00'), (2392, 2369, 'No need of requirement they had finalized with others', '', '', '', 158, '2019-05-29 15:53:38', '0000-00-00'), (2393, 2368, 'call not answering', '', '', '', 158, '2019-05-29 15:56:04', '0000-00-00'), (2394, 2362, 'No need of requirement ', '', '', '', 158, '2019-05-29 15:58:25', '0000-00-00'), (2395, 2206, 'They had finalized with others for low cost ', '', '', '', 158, '2019-05-29 16:01:09', '0000-00-00'), (2396, 2353, 'They had finalized with others for low cost(5 pages-5000) ', '', '', '', 158, '2019-05-29 16:06:11', '0000-00-00'), (2397, 2347, 'Call not answering ', '', '', '', 158, '2019-05-29 16:10:38', '0000-00-00'), (2398, 2292, 'Right now he is busy, he will call back us later ', '', '', '', 158, '2019-05-29 16:38:12', '0000-00-00'), (2399, 2334, 'He will share the requirements thru mail.', '', '', '', 158, '2019-05-29 16:49:23', '0000-00-00'), (2400, 2395, 'Call not responding properly ', '', '', '', 158, '2019-05-29 16:59:14', '0000-00-00'), (2401, 2396, 'Subbu sir has spoken with client,, meeting scheduled for today evening.', '', '', '', 158, '2019-05-29 17:02:05', '0000-00-00'), (2402, 2394, 'Busy', '', '', '', 158, '2019-05-29 17:05:35', '0000-00-00'), (2403, 2397, 'Busy', '', '', '', 158, '2019-05-29 17:22:47', '0000-00-00'), (2404, 2397, 'Inquired the price for google map(5k) he will decide and call back us', '', '', '', 158, '2019-05-29 17:40:48', '0000-00-00'), (2405, 2392, 'Call not answering ', '', '', '', 158, '2019-05-29 17:43:04', '0000-00-00'), (2406, 2380, 'Busy', '', '', '', 158, '2019-05-29 18:01:58', '0000-00-00'), (2407, 2397, 'Call not answering ', '', '', '', 158, '2019-05-30 12:13:02', '0000-00-00'), (2408, 2398, 'Call not answering ', '', '', '', 158, '2019-05-30 12:17:16', '0000-00-00'), (2409, 2390, 'call not connecting ', '', '', '', 158, '2019-05-30 12:22:54', '0000-00-00'), (2410, 2399, 'Inquired for basic website and asked to share company profile thru mail ', '', '', '', 158, '2019-05-30 12:31:28', '0000-00-00'), (2411, 2389, 'Quotation has been send thru mail for rework on website http://www.omicronsports.com/, they will decide and call back us ', '', '', '', 158, '2019-05-30 12:36:12', '0000-00-00'), (2412, 2401, 'Busy', '', '', '', 158, '2019-05-30 12:41:42', '0000-00-00'), (2413, 2385, 'Still not decided, asked to call on 31.5.19', '', '', '', 158, '2019-05-30 12:43:34', '0000-00-00'), (2414, 2381, 'Busy', '', '', '', 158, '2019-05-30 12:44:57', '0000-00-00'), (2415, 2380, 'No requirement, posted by mistake ', '', '', '', 158, '2019-05-30 12:48:02', '0000-00-00'), (2416, 2402, 'Call not answering ', '', '', '', 158, '2019-05-30 13:36:41', '0000-00-00'), (2417, 2403, 'Inquired for job ', '', '', '', 158, '2019-05-30 13:40:39', '0000-00-00'), (2418, 2404, 'No requirement it need they will call back ', '', '', '', 158, '2019-05-30 13:46:29', '0000-00-00'), (2419, 2405, 'No requirement ', '', '', '', 158, '2019-05-30 13:48:20', '0000-00-00'), (2420, 2406, 'Asked to call later ', '', '', '', 158, '2019-05-30 13:51:51', '0000-00-00'), (2421, 2407, 'Busy', '', '', '', 158, '2019-05-30 13:53:18', '0000-00-00'), (2422, 2270, 'call not answering', '', '', '', 158, '2019-05-30 13:56:02', '0000-00-00'), (2423, 2288, 'Still not decided ', '', '', '', 158, '2019-05-30 13:58:59', '0000-00-00'), (2424, 2261, 'Call not connecting ', '', '', '', 158, '2019-05-30 14:01:59', '0000-00-00'), (2425, 2245, 'Call not answering ', '', '', '', 158, '2019-05-30 14:04:34', '0000-00-00'), (2426, 2408, 'No requirement ', '', '', '', 158, '2019-05-30 15:38:07', '0000-00-00'), (2427, 2409, 'Needs to develop pages to their existing domain and needs billing software for tours and travels\r\n', '', '', '', 158, '2019-05-30 15:54:32', '0000-00-00'), (2428, 2410, 'Call not answering ', '', '', '', 158, '2019-05-30 15:58:46', '0000-00-00'), (2429, 2412, 'call not answering ', '', '', '', 158, '2019-05-30 16:49:52', '0000-00-00'), (2430, 2393, 'Call later ', '', '', '', 158, '2019-05-30 17:07:46', '0000-00-00'), (2431, 2381, 'Switch off', '', '', '', 158, '2019-05-30 17:13:12', '0000-00-00'), (2432, 2413, 'No requirements ', '', '', '', 158, '2019-05-30 18:02:54', '0000-00-00'), (2433, 2415, 'Shared company profile thru mail\r\n', '', '', '', 158, '2019-05-30 18:06:07', '0000-00-00'), (2434, 2416, 'No requirements \r\n', '', '', '', 158, '2019-05-30 18:08:10', '0000-00-00'), (2435, 2417, 'No requirements \r\n', '', '', '', 158, '2019-05-30 18:10:40', '0000-00-00'), (2436, 2418, 'No requirements \r\n', '', '', '', 158, '2019-05-30 18:12:13', '0000-00-00'), (2437, 2419, 'Busy', '', '', '', 158, '2019-05-30 18:16:55', '0000-00-00'), (2438, 2399, 'Call rejected ', '', '', '', 158, '2019-05-31 11:46:42', '0000-00-00'), (2439, 2385, 'Call not connecting \r\n\r\n', '', '', '', 158, '2019-05-31 11:57:58', '0000-00-00'), (2440, 2385, 'Call not connecting \r\n\r\n', '', '', '', 158, '2019-05-31 11:57:58', '0000-00-00'), (2441, 2422, 'Needs static website for film institute, inquired about static website, they will decide and call back\r\n', '', '', '', 158, '2019-05-31 13:05:18', '0000-00-00'), (2442, 2423, 'Call not answering ', '', '', '', 158, '2019-05-31 13:08:02', '0000-00-00'), (2443, 2365, 'Finalized they told they will try to do the payment within 1.6.19 or 3.6.19.', '', '', '', 158, '2019-05-31 13:19:32', '0000-00-00'), (2444, 2375, ' http://www.paravidya.org/. Needs to make this website responsive…reference links has shared thru mail (poorna@sasconit.in)\r\n', '', '', '', 158, '2019-05-31 13:35:03', '0000-00-00'), (2445, 2368, 'call not answering ', '', '', '', 158, '2019-05-31 13:37:05', '0000-00-00'), (2446, 2366, 'They had finalized with others', '', '', '', 158, '2019-05-31 13:39:42', '0000-00-00'), (2447, 2426, 'Switch off ', '', '', '', 158, '2019-05-31 15:49:19', '0000-00-00'), (2448, 2427, 'Call later ', '', '', '', 158, '2019-05-31 15:51:43', '0000-00-00'), (2449, 2428, 'Busy', '', '', '', 158, '2019-05-31 15:59:07', '0000-00-00'), (2450, 2430, 'Inquired for job ', '', '', '', 158, '2019-05-31 16:05:44', '0000-00-00'), (2451, 2431, 'call later ', '', '', '', 158, '2019-05-31 16:08:54', '0000-00-00'), (2452, 2433, 'Asked to schedule meeting, informed Nithin to call and visit ', '', '', '', 158, '2019-05-31 17:39:53', '0000-00-00'), (2453, 2434, 'They will visit our Bangalore office, address shared \r\n', '', '', '', 158, '2019-05-31 17:43:23', '0000-00-00'), (2454, 2435, 'They had mail the requirements, informed subbu sir ', '', '', '', 158, '2019-05-31 18:14:21', '0000-00-00'), (2455, 2436, 'Call not answering \r\n', '', '', '', 158, '2019-05-31 18:17:11', '0000-00-00'), (2456, 2436, 'No requirement ', '', '', '', 158, '2019-05-31 18:22:23', '0000-00-00'), (2457, 2333, 'Meeting scheduled for 3.6.19 at 11:30am ', '', '', '', 158, '2019-06-03 10:31:54', '0000-00-00'), (2458, 2337, 'meeting scheduled on 8.6.19 ', '', '', '', 158, '2019-06-03 10:34:16', '0000-00-00'), (2459, 2437, 'Call not answering ', '', '', '', 158, '2019-06-03 10:44:22', '0000-00-00'), (2460, 2434, 'He will call and visit our Bangalore office within 4.6.19 ', '', '', '', 158, '2019-06-03 12:14:43', '0000-00-00'), (2461, 2333, 'Asked to schedule meeting on 4.6.19 at 10:00am ', '', '', '', 158, '2019-06-03 13:20:56', '0000-00-00'), (2462, 2407, 'call rejecting ', '', '', '', 158, '2019-06-03 13:24:34', '0000-00-00'), (2463, 2186, 'No requirement ', '', '', '', 158, '2019-06-03 13:26:22', '0000-00-00'), (2464, 2433, 'Meeting scheduled on 4.6.19', '', '', '', 158, '2019-06-03 13:30:50', '0000-00-00'), (2465, 2438, 'Call not answering ', '', '', '', 158, '2019-06-03 13:34:14', '0000-00-00'), (2466, 2439, 'They had finalized with others\r\n', '', '', '', 158, '2019-06-03 13:39:23', '0000-00-00'), (2467, 2432, 'call rejecting ', '', '', '', 158, '2019-06-03 13:40:33', '0000-00-00'), (2468, 2431, 'Call not answering ', '', '', '', 158, '2019-06-03 13:41:57', '0000-00-00'), (2469, 2440, 'call not answering ', '', '', '', 158, '2019-06-03 14:05:12', '0000-00-00'), (2470, 2441, 'Call later ', '', '', '', 158, '2019-06-03 15:16:33', '0000-00-00'), (2471, 2442, 'No requirement ', '', '', '', 158, '2019-06-03 15:18:21', '0000-00-00'), (2472, 2443, 'Need website for new business, Just inquired about the prices and asked to share company profile thru mail, they will decide and call back.\r\n', '', '', '', 158, '2019-06-03 15:20:45', '0000-00-00'), (2473, 2444, 'call later', '', '', '', 158, '2019-06-03 15:26:01', '0000-00-00'), (2474, 2445, 'They had spoken with others, they told if need they will call back us\r\n', '', '', '', 158, '2019-06-03 15:27:33', '0000-00-00'), (2475, 2446, 'No requirement \r\n', '', '', '', 158, '2019-06-03 15:29:18', '0000-00-00'), (2476, 2447, 'Call not answering ', '', '', '', 158, '2019-06-03 15:31:22', '0000-00-00'), (2477, 2448, 'Busy', '', '', '', 158, '2019-06-03 15:33:29', '0000-00-00'), (2478, 2449, 'call later ', '', '', '', 158, '2019-06-03 15:36:03', '0000-00-00'), (2479, 2450, 'Meeting scheduled on 3.6.19 after 2pm…needs 20 pages of static website. \r\n', '', '', '', 158, '2019-06-03 15:38:44', '0000-00-00'), (2480, 2451, 'Needs SEO and website, for running business needs some Clarification on SEO Informed him to call subbu sir\r\n', '', '', '', 158, '2019-06-03 15:40:44', '0000-00-00'), (2481, 2452, 'Needs Dynamic website, Company profile and reference links shared thru mail.\r\n', '', '', '', 158, '2019-06-03 15:42:54', '0000-00-00'), (2482, 2453, 'Needs Dynamic website for Interior business, He just inquired the price for 10 pages(18k+gst), call on 4.6.19\r\n', '', '', '', 158, '2019-06-03 15:44:43', '0000-00-00'), (2483, 2454, 'Needs website for travel agency, asked to schedule the meeting \r\n', '', '', '', 158, '2019-06-03 16:00:14', '0000-00-00'), (2484, 2438, 'No requirement ', '', '', '', 158, '2019-06-03 16:04:20', '0000-00-00'), (2485, 2429, 'Call not answering ', '', '', '', 158, '2019-06-03 16:12:16', '0000-00-00'), (2486, 2428, 'Call later ', '', '', '', 158, '2019-06-03 16:21:17', '0000-00-00'), (2487, 2427, 'call not answering ', '', '', '', 158, '2019-06-03 16:22:21', '0000-00-00'), (2488, 2426, 'Switch off', '', '', '', 158, '2019-06-03 16:23:17', '0000-00-00'), (2489, 2424, 'call not answering ', '', '', '', 158, '2019-06-03 16:24:15', '0000-00-00'), (2490, 2422, 'call not answering ', '', '', '', 158, '2019-06-03 16:25:48', '0000-00-00'), (2491, 2419, 'They had spoken with others, if need they will call back', '', '', '', 158, '2019-06-03 16:27:56', '0000-00-00'), (2492, 2415, 'Still not decided they will call back within 2 days ', '', '', '', 158, '2019-06-03 16:33:15', '0000-00-00'), (2493, 2455, 'No requitement, They had updated by mistake\r\n', '', '', '', 158, '2019-06-03 16:37:49', '0000-00-00'), (2494, 2266, 'Call not answering ', '', '', '', 158, '2019-06-03 16:43:04', '0000-00-00'), (2495, 2401, 'Needs some changes in this website http://www.ziasemi.com/ he will talk with subbu sir \r\n', '', '', '', 158, '2019-06-03 16:55:53', '0000-00-00'), (2496, 2428, 'They had finalized with others ', '', '', '', 158, '2019-06-03 17:07:14', '0000-00-00'), (2497, 2398, 'Call not answering ', '', '', '', 158, '2019-06-03 17:18:04', '0000-00-00'), (2498, 2390, 'Call rejecting ', '', '', '', 158, '2019-06-03 17:19:21', '0000-00-00'), (2499, 2389, 'still not decided, they will call back', '', '', '', 158, '2019-06-03 17:21:48', '0000-00-00'), (2500, 2394, 'Informed to share the requirements ', '', '', '', 158, '2019-06-03 17:27:33', '0000-00-00'), (2501, 2456, 'call later ', '', '', '', 158, '2019-06-03 17:35:10', '0000-00-00'), (2502, 2458, 'Busy ', '', '', '', 158, '2019-06-03 18:03:14', '0000-00-00'), (2503, 2459, 'Call not answering ', '', '', '', 158, '2019-06-03 18:05:09', '0000-00-00'), (2504, 2460, 'call not answering ', '', '', '', 158, '2019-06-03 18:08:41', '0000-00-00'), (2505, 2463, 'Switch off', '', '', '', 158, '2019-06-03 18:20:23', '0000-00-00'), (2506, 2464, 'Inquired for job ', '', '', '', 158, '2019-06-03 18:25:29', '0000-00-00'), (2507, 2466, 'No requirement ', '', '', '', 158, '2019-06-04 10:39:34', '0000-00-00'), (2508, 2467, 'Call not answering ', '', '', '', 158, '2019-06-04 10:42:32', '0000-00-00'), (2509, 2468, 'Call not answering ', '', '', '', 158, '2019-06-04 10:50:57', '0000-00-00'), (2510, 2473, 'Call not answering ', '', '', '', 158, '2019-06-04 11:04:03', '0000-00-00'), (2511, 2475, 'Call later ', '', '', '', 158, '2019-06-04 11:12:57', '0000-00-00'), (2512, 2476, 'No requirement, they are looking for trainer for website ', '', '', '', 158, '2019-06-04 11:17:25', '0000-00-00'), (2513, 2477, 'No requirement inquired for job ', '', '', '', 158, '2019-06-04 11:21:09', '0000-00-00'), (2514, 2478, 'Switch off', '', '', '', 158, '2019-06-04 11:23:35', '0000-00-00'), (2515, 2480, 'Busy ', '', '', '', 158, '2019-06-04 11:27:08', '0000-00-00'), (2516, 2482, 'Needs similar website http://uftech.com/ asking for dynamic website, \r\n', '', '', '', 158, '2019-06-04 11:46:21', '0000-00-00'), (2517, 2483, 'call later ', '', '', '', 158, '2019-06-04 12:03:15', '0000-00-00'), (2518, 2438, 'No requirement ', '', '', '', 158, '2019-06-04 12:05:32', '0000-00-00'), (2519, 2484, 'No requirement ', '', '', '', 158, '2019-06-04 12:09:17', '0000-00-00'), (2520, 2485, 'Needs Static website and mail id for import and export company, he just inquired the price for website (5pages-7k +gst)he will call back ', '', '', '', 158, '2019-06-04 12:18:18', '0000-00-00'), (2521, 2486, 'No requirement, inquired for job ', '', '', '', 158, '2019-06-04 13:07:52', '0000-00-00'), (2522, 2487, 'Call not answering ', '', '', '', 158, '2019-06-04 13:14:09', '0000-00-00'), (2523, 2488, 'Call not answering ', '', '', '', 158, '2019-06-04 13:44:49', '0000-00-00'), (2524, 2483, 'call not answering ', '', '', '', 158, '2019-06-04 13:45:58', '0000-00-00'), (2525, 2482, 'Needs quotation, informed them to mail the requirements', '', '', '', 158, '2019-06-04 13:49:29', '0000-00-00'), (2526, 2480, 'Call later ', '', '', '', 158, '2019-06-04 13:51:26', '0000-00-00'), (2527, 2475, 'Busy ', '', '', '', 158, '2019-06-04 13:52:30', '0000-00-00'), (2528, 2473, 'busy', '', '', '', 158, '2019-06-04 13:53:07', '0000-00-00'), (2529, 2458, 'call not answering ', '', '', '', 158, '2019-06-04 13:56:05', '0000-00-00'), (2530, 2467, 'call not answering ', '', '', '', 158, '2019-06-04 13:56:41', '0000-00-00'), (2531, 2452, 'Call not answering ', '', '', '', 158, '2019-06-04 13:59:48', '0000-00-00'), (2532, 2448, 'Busy ', '', '', '', 158, '2019-06-04 14:00:53', '0000-00-00'), (2533, 2452, 'Asked to call after 5pm', '', '', '', 158, '2019-06-04 14:03:37', '0000-00-00'), (2534, 2480, 'Company profile and reference links shared thru mail ', '', '', '', 158, '2019-06-04 15:20:39', '0000-00-00'), (2535, 2489, 'Call not answering ', '', '', '', 158, '2019-06-04 15:29:38', '0000-00-00'), (2536, 2490, 'No requirements, post updated by mistake \r\n', '', '', '', 158, '2019-06-04 15:33:13', '0000-00-00'), (2537, 2472, 'call later ', '', '', '', 158, '2019-06-04 15:33:57', '0000-00-00'), (2538, 2444, 'Needs website for interior business, company profile and reference links shared thru mail.', '', '', '', 158, '2019-06-04 15:52:08', '0000-00-00'), (2539, 2441, 'Busy ', '', '', '', 158, '2019-06-04 15:53:36', '0000-00-00'), (2540, 2434, 'He will call and visit ', '', '', '', 158, '2019-06-04 15:55:48', '0000-00-00'), (2541, 2431, 'call later ', '', '', '', 158, '2019-06-04 15:56:59', '0000-00-00'), (2542, 2429, 'Switch off', '', '', '', 158, '2019-06-04 16:00:04', '0000-00-00'), (2543, 2422, 'call not answering ', '', '', '', 158, '2019-06-04 16:02:22', '0000-00-00'), (2544, 2266, 'Call not answering', '', '', '', 158, '2019-06-04 16:04:01', '0000-00-00'), (2545, 2406, 'Call not answering ', '', '', '', 158, '2019-06-04 16:07:50', '0000-00-00'), (2546, 2385, 'Call not connecting ', '', '', '', 158, '2019-06-04 16:11:44', '0000-00-00'), (2547, 2382, 'call not answering ', '', '', '', 158, '2019-06-04 16:13:19', '0000-00-00'), (2548, 2381, 'No requirement ', '', '', '', 158, '2019-06-04 16:16:54', '0000-00-00'), (2549, 2382, 'They had finalized with others for low cost ', '', '', '', 158, '2019-06-04 16:18:04', '0000-00-00'), (2550, 2377, 'call not responding properly ', '', '', '', 158, '2019-06-04 16:20:50', '0000-00-00'), (2551, 2375, 'call not answering ', '', '', '', 158, '2019-06-04 16:25:47', '0000-00-00'), (2552, 2368, 'call later ', '', '', '', 158, '2019-06-04 16:28:01', '0000-00-00'), (2553, 2365, 'call later', '', '', '', 158, '2019-06-04 16:31:22', '0000-00-00'), (2554, 2491, 'No need of requirement, they are looking for Nearby vendors', '', '', '', 158, '2019-06-04 16:48:01', '0000-00-00'), (2555, 2493, 'No requirement ', '', '', '', 158, '2019-06-04 17:52:34', '0000-00-00'), (2556, 2494, 'No requirement ', '', '', '', 158, '2019-06-04 17:57:10', '0000-00-00'); INSERT INTO `lead_attach_notes` (`notes_id`, `lead_id`, `lead_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (2557, 2495, 'Switch off', '', '', '', 158, '2019-06-04 17:59:18', '0000-00-00'), (2558, 2496, 'call later ', '', '', '', 158, '2019-06-05 10:55:42', '0000-00-00'), (2559, 337, 'Client does not want to continue in same name. have told 7000 to keep same website by changing name and different domain and hosting.', '', '', 'ACTIVE', 24, '2019-06-05 11:13:59', '0000-00-00'), (2560, 40, 'They have made payment for only hosting for year 2018-19 and they will make payment hosting for 2019-20. They do not need AMC. So should not take any AMC', '', '', 'ACTIVE', 24, '2019-06-05 11:15:28', '0000-00-00'), (2561, 531, 'Domain is expired and redemption fee of 7500 plus gst is applicable. Client said he will buy and give .in domain and we should add same website there for Rs. 1500', '', '', 'ACTIVE', 24, '2019-06-05 11:31:27', '0000-00-00'), (2562, 2497, 'Needs software for student management for school, informed him to mail the requirements.\r\n', '', '', '', 158, '2019-06-05 11:49:43', '0000-00-00'), (2563, 2498, 'call not answering ', '', '', '', 158, '2019-06-05 12:25:11', '0000-00-00'), (2564, 2499, 'Needs website for wedding planner, asked to share reference links, shared thru whats app ', '', '', '', 158, '2019-06-05 12:28:14', '0000-00-00'), (2565, 2488, 'call not answering ', '', '', '', 158, '2019-06-05 12:37:49', '0000-00-00'), (2566, 2475, 'Call not answering ', '', '', '', 158, '2019-06-05 12:43:09', '0000-00-00'), (2567, 2365, 'Call not answering ', '', '', '', 158, '2019-06-05 12:59:03', '0000-00-00'), (2568, 2488, 'Call not answering ', '', '', '', 158, '2019-06-05 15:47:13', '0000-00-00'), (2569, 2365, 'Call not answering ', '', '', '', 158, '2019-06-05 15:49:45', '0000-00-00'), (2570, 2500, 'call not answering ', '', '', '', 158, '2019-06-05 16:41:19', '0000-00-00'), (2571, 2501, 'Needs dynamic website for Trusts, he will call and visit our office', '', '', '', 158, '2019-06-05 16:59:35', '0000-00-00'), (2572, 2502, 'call later ', '', '', '', 158, '2019-06-05 18:09:56', '0000-00-00'), (2573, 2503, 'No requirement ', '', '', '', 158, '2019-06-05 18:13:39', '0000-00-00'), (2574, 2504, 'No requirement ', '', '', '', 158, '2019-06-05 18:21:37', '0000-00-00'), (2575, 2505, 'Inquired for job', '', '', '', 158, '2019-06-05 18:22:58', '0000-00-00'), (2576, 2506, 'call not answering ', '', '', '', 158, '2019-06-05 18:24:58', '0000-00-00'), (2577, 2495, 'Switch off', '', '', '', 158, '2019-06-06 11:33:09', '0000-00-00'), (2578, 2507, 'Needs software application for MLM chain marketing, Client spoken with subbu sir, requirements shared thru whats app, Client will visit Bangalore office in next week \r\n', '', '', '', 158, '2019-06-06 11:36:12', '0000-00-00'), (2579, 2509, 'call not answering ', '', '', '', 158, '2019-06-06 11:38:33', '0000-00-00'), (2580, 2511, 'Asked to call after 6pm ', '', '', '', 158, '2019-06-06 11:42:55', '0000-00-00'), (2581, 2512, 'Needs E-commerce website for Grossery, Informed to share the requirements thru mail \r\n', '', '', '', 158, '2019-06-06 11:47:13', '0000-00-00'), (2582, 2513, 'call not answering ', '', '', '', 158, '2019-06-06 11:49:11', '0000-00-00'), (2583, 2510, 'Needs application they will share the Similar link.', '', '', '', 158, '2019-06-06 11:53:44', '0000-00-00'), (2584, 2513, 'Busy ', '', '', '', 158, '2019-06-06 11:54:49', '0000-00-00'), (2585, 2509, 'busy', '', '', '', 158, '2019-06-06 11:56:00', '0000-00-00'), (2586, 2506, 'Call not answering ', '', '', '', 158, '2019-06-06 11:57:11', '0000-00-00'), (2587, 2502, 'Call rejected ', '', '', '', 158, '2019-06-06 11:58:26', '0000-00-00'), (2588, 2513, 'No requirement ', '', '', '', 158, '2019-06-06 12:18:55', '0000-00-00'), (2589, 2506, 'Call not answering ', '', '', '', 158, '2019-06-06 12:29:18', '0000-00-00'), (2590, 2515, 'No requirement ', '', '', '', 158, '2019-06-06 12:47:12', '0000-00-00'), (2591, 2516, 'Call not answering ', '', '', '', 158, '2019-06-06 12:49:53', '0000-00-00'), (2592, 2379, 'Busy ', '', '', '', 158, '2019-06-06 12:52:13', '0000-00-00'), (2593, 2368, 'Call not answering', '', '', '', 158, '2019-06-06 12:57:40', '0000-00-00'), (2594, 2389, 'They had finalized with others ', '', '', '', 158, '2019-06-06 13:00:22', '0000-00-00'), (2595, 2385, 'Call not connecting ', '', '', '', 158, '2019-06-06 13:02:52', '0000-00-00'), (2596, 2379, 'call not answering ', '', '', '', 158, '2019-06-06 13:05:43', '0000-00-00'), (2597, 2517, 'Number temporally out of service ', '', '', '', 158, '2019-06-06 15:15:52', '0000-00-00'), (2598, 2509, 'Busy', '', '', '', 158, '2019-06-06 15:17:12', '0000-00-00'), (2599, 2497, 'Call not answering', '', '', '', 158, '2019-06-06 15:19:00', '0000-00-00'), (2600, 2500, 'Call not answering ', '', '', '', 158, '2019-06-06 15:21:32', '0000-00-00'), (2601, 2488, 'switch off', '', '', '', 158, '2019-06-06 15:22:32', '0000-00-00'), (2602, 2485, 'Busy', '', '', '', 158, '2019-06-06 15:23:57', '0000-00-00'), (2603, 2483, 'Done with others, no requirement ', '', '', '', 158, '2019-06-06 15:25:50', '0000-00-00'), (2604, 2480, 'Still not decided', '', '', '', 158, '2019-06-06 15:28:48', '0000-00-00'), (2605, 2472, ' No requirement, they have done with others\r\n', '', '', '', 158, '2019-06-06 15:36:07', '0000-00-00'), (2606, 2444, 'Still not decided ', '', '', '', 158, '2019-06-06 15:38:19', '0000-00-00'), (2607, 2485, 'No requirement ', '', '', '', 158, '2019-06-06 15:39:57', '0000-00-00'), (2608, 2415, 'Call not answering ', '', '', '', 158, '2019-06-06 15:42:58', '0000-00-00'), (2609, 2266, 'call not answering ', '', '', '', 158, '2019-06-06 15:44:25', '0000-00-00'), (2610, 2379, 'Switch off', '', '', '', 158, '2019-06-06 15:50:58', '0000-00-00'), (2611, 2368, 'call rejecting ', '', '', '', 158, '2019-06-06 15:53:19', '0000-00-00'), (2612, 128, '4/6/2019: Changes in the website', '', '', 'ACTIVE', 80, '2019-06-06 18:20:00', '0000-00-00'), (2613, 2522, 'Spoken with other vendor, if need they will call back \r\n', '', '', '', 158, '2019-06-07 13:34:10', '0000-00-00'), (2614, 2523, 'Call not answering ', '', '', '', 158, '2019-06-07 13:38:49', '0000-00-00'), (2615, 2524, 'Needs website for Spa Business, She just inquired about price and types of website, She will decide and call back us.', '', '', '', 158, '2019-06-07 13:46:01', '0000-00-00'), (2616, 2525, 'Asked to call later ', '', '', '', 158, '2019-06-07 13:48:03', '0000-00-00'), (2617, 2398, 'Busy', '', '', '', 158, '2019-06-07 16:28:34', '0000-00-00'), (2618, 2527, 'call not answering ', '', '', '', 158, '2019-06-07 17:33:45', '0000-00-00'), (2619, 2528, 'No requirement \r\n', '', '', '', 158, '2019-06-07 17:36:17', '0000-00-00'), (2620, 2529, 'call not answering ', '', '', '', 158, '2019-06-07 17:37:41', '0000-00-00'), (2621, 2532, 'Meeting scheduled on 10.6.19 ', '', '', '', 158, '2019-06-07 17:45:06', '0000-00-00'), (2622, 488, '10/6/2019 : Addition of pages in the website and changes : Rs.4000 + GST(18%) = Rs.4720.', '', '', 'ACTIVE', 80, '2019-06-14 12:40:40', '0000-00-00'), (2623, 617, 'Rs.600 extra for changes in the page.', '', '', 'ACTIVE', 80, '2019-06-26 12:49:21', '0000-00-00'), (2624, 612, 'Balance of Rs. 5800 was paid on june 10', '', '', 'ACTIVE', 24, '2019-06-26 12:52:46', '0000-00-00'), (2625, 630, 'Rs.1000 for Letterhead and VC', '', '', 'ACTIVE', 80, '2019-06-26 12:53:25', '0000-00-00'), (2626, 609, 'Balance payment of Rs. 8325 has been made out of 10325. 2000 balance will be made after changes are made.', '', '', 'ACTIVE', 24, '2019-06-26 13:43:36', '0000-00-00'), (2627, 628, 'Website was converted for Rs. 17700 including GST. 10000 advance has been made on june 10', '', '', 'ACTIVE', 24, '2019-06-26 13:45:17', '0000-00-00'), (2628, 631, 'Total of Rs. 12000 for dynamic website. 6000 advance received on june 13', '', '', 'ACTIVE', 24, '2019-06-26 14:14:09', '0000-00-00'), (2629, 630, 'Total of Rs. 10000 for logo and website. 5000 advance received on June 13', '', '', 'ACTIVE', 24, '2019-06-26 14:15:10', '0000-00-00'), (2630, 632, '2000 advance out of total 7000 for static website', '', '', 'ACTIVE', 24, '2019-06-26 14:18:25', '0000-00-00'), (2631, 633, 'Static website: 6000\r\nbrochure: 3200\r\nVisitinbg card: 400\r\nTotal: 9600\r\nAdvance: 3500', '', '', 'ACTIVE', 24, '2019-06-26 14:22:23', '0000-00-00'), (2632, 490, '17/7/2019: Company profile was designed.', '', '', 'ACTIVE', 80, '2019-07-18 13:45:05', '0000-00-00'), (2633, 490, 'Received payment of 1770 for company profile', '', '', 'ACTIVE', 80, '2019-07-24 11:14:57', '0000-00-00'), (2634, 426, 'upgrade/changes in the website.', '', '', 'ACTIVE', 80, '2019-07-24 11:22:18', '0000-00-00'), (2635, 123, '27/7/2019: Uploaded the pics sent by clients in completed projects.', '', '', 'ACTIVE', 80, '2019-07-29 11:09:55', '0000-00-00'), (2636, 311, '27/7/2019: uploaded trust deed in the website.', '', '', 'ACTIVE', 80, '2019-07-29 11:10:50', '0000-00-00'), (2637, 577, 'Rs 3000 received for new domain and update http://greenwoodconstruction.in/.', '', '', 'ACTIVE', 80, '2019-08-01 12:14:34', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `lead_industry` -- CREATE TABLE `lead_industry` ( `industry_id` int(11) NOT NULL, `industry_name` varchar(250) NOT NULL, `industry_descr` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_industry` -- INSERT INTO `lead_industry` (`industry_id`, `industry_name`, `industry_descr`, `delete_status`, `created_at`, `updated_at`) VALUES (29, 'Yaskawa', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 'MRF', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 'APOLLO', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `lead_new_calls` -- CREATE TABLE `lead_new_calls` ( `call_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `subject` varchar(222) NOT NULL, `call_type` varchar(222) NOT NULL, `call_purpose` varchar(222) NOT NULL, `contact_num` varchar(111) NOT NULL, `call_details` varchar(111) NOT NULL, `call_timer` time NOT NULL, `call_duration` time NOT NULL, `description` varchar(222) NOT NULL, `call_result` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_new_tasks` -- CREATE TABLE `lead_new_tasks` ( `task_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `subject` varchar(222) NOT NULL, `all_day` varchar(250) NOT NULL, `type` varchar(350) NOT NULL, `due_date` date NOT NULL, `priority` varchar(222) NOT NULL, `owner` varchar(222) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `host` varchar(250) NOT NULL, `related_to` varchar(250) NOT NULL, `call_type` varchar(250) NOT NULL, `lead` varchar(222) NOT NULL, `call_purpose` varchar(250) NOT NULL, `contact_name` varchar(250) NOT NULL, `call_details` varchar(250) NOT NULL, `call_duration` varchar(250) NOT NULL, `call_result` varchar(350) NOT NULL, `status` varchar(350) NOT NULL, `description` varchar(500) NOT NULL, `activity` enum('OPEN','CLOSE') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` date NOT NULL, `updated_at` datetime NOT NULL, `participants` text NOT NULL, `event_name` text NOT NULL, `call_timer` text NOT NULL, `details_from` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_new_tasks` -- INSERT INTO `lead_new_tasks` (`task_id`, `lead_id`, `subject`, `all_day`, `type`, `due_date`, `priority`, `owner`, `start_date`, `end_date`, `host`, `related_to`, `call_type`, `lead`, `call_purpose`, `contact_name`, `call_details`, `call_duration`, `call_result`, `status`, `description`, `activity`, `delete_status`, `created_at`, `updated_at`, `participants`, `event_name`, `call_timer`, `details_from`) VALUES (1, 1, 'work', '', 'Task', '0000-00-00', 'Low', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Waiting on someone else', '', 'OPEN', 'ACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (2, 1, 'banglore', 'All Day', 'Event', '0000-00-00', '', 'rohan', '2018-03-30', '2018-03-31', 'Tarun', 'Lead', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (3, 1, 'team', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Outbond', '', 'Negotiation', 'Lead', 'Current Call', '14:20:15', 'test', '', 'test', 'OPEN', 'ACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (4, 2, 'project', '', 'Task', '0000-00-00', 'Low', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Waiting on someone else', '', 'CLOSE', 'INACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (5, 2, 'banglore', 'All Day', 'Event', '0000-00-00', '', 'lohith', '2018-03-16', '2018-03-23', 'Tarun', 'Others', '', '', '', '', '', '', '', '', 'team', 'OPEN', 'ACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (6, 2, 'project', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Negotiation', 'Contact', 'Current Call', '18:38:45', 'teat', '', 'team', 'OPEN', 'ACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (7, 3, 'project', '', 'Task', '2018-03-23', 'Lowest', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'INACTIVE', '2018-03-22', '0000-00-00 00:00:00', '', '', '', ''), (8, 4, 'Meeting', '', 'Task', '0000-00-00', 'High', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (9, 4, 'project', 'All Day', 'Event', '0000-00-00', '', 'Arun', '2018-01-02', '2018-05-31', 'Tarun', 'Lead', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (10, 4, 'Project meeting', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Prospecting', 'Lead', 'Current Call', '16:23:00', 'test123', '', 'test', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (11, 4, 'test', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Outbond', '', 'Demo', 'Contact', 'Completed Call', '16:25:15', 'test123', '', 'test', 'CLOSE', 'INACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (12, 4, 'work', '', 'Task', '0000-00-00', 'Low', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (13, 4, 'team', 'All Day', 'Event', '0000-00-00', '', 'Arun', '2018-03-17', '2018-03-22', 'Tarun', 'None', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (14, 3, 'Need bangalore sample database.', '', 'Task', '0000-00-00', 'High', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'CLOSE', 'INACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (15, 4, 'Meeting', '', 'Task', '2018-03-23', 'High', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (16, 4, 'Meeting', '', 'Task', '2018-03-23', 'High', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (17, 5, 'project', '', 'Task', '0000-00-00', 'Low', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00', '', '', '', ''), (18, 6, 'test', '', 'Task', '0000-00-00', 'Highest', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (19, 6, 'mysore', 'All Day', 'Event', '0000-00-00', '', 'lohith', '2018-03-24', '2018-03-26', 'rohan', 'Contact', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (20, 6, 'project', '', 'Task', '0000-00-00', 'Low', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (21, 8, 'Meeting', '', 'Task', '0000-00-00', 'High', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'INACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (22, 8, 'project', 'All Day', 'Event', '0000-00-00', '', 'Ranjith', '2018-03-13', '2018-03-16', 'rohan', 'Contact', '', '', '', '', '', '', '', '', 'test', 'CLOSE', 'INACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (23, 8, 'Meeting', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Negotiation', 'Contact', 'Current Call', '17:38:15', 'dfgd', '', 'fdgdf', 'CLOSE', 'INACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (24, 8, 'fdg', '', 'Task', '0000-00-00', 'Lowest', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (25, 10, 'Meeting', '', 'Task', '0000-00-00', 'High', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'INACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (26, 10, 'Banglore', 'All Day', 'Event', '0000-00-00', '', 'Abhi', '1970-01-01', '1970-01-01', 'Divya', 'Others', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (27, 10, 'Meeting', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Negotiation', 'Contact', 'Current Call', '19:20:30', 'test', '', 'test', 'OPEN', 'ACTIVE', '2018-03-24', '0000-00-00 00:00:00', '', '', '', ''), (28, 9, 'Meeting', '', 'Task', '0000-00-00', 'High', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Not Started', '', 'CLOSE', 'INACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (29, 8, 'test', '', 'Task', '2018-03-28', 'Highest', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Not Started', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (30, 8, 'tset', '', 'Task', '2018-03-29', 'Low', 'rohan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'CLOSE', 'INACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (31, 12, 'Project meeting', '', 'Task', '2018-03-29', 'Highest', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'INACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (32, 12, 'Mysore', 'All Day', 'Event', '0000-00-00', '', 'yashas', '2018-03-01', '2018-03-30', 'Divya', 'Others', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (33, 12, 'demo', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Demo', 'Contact', 'Current Call', '13:39:30', 'test', '', 'test', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (34, 12, 'test', '', 'Task', '2018-03-30', 'High', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (35, 9, 'fjhkj', 'All Day', 'Event', '0000-00-00', '', 'John', '2018-03-14', '2018-03-22', 'Divya', 'Lead', '', '', '', '', '', '', '', '', 'vjh', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (36, 21, 'ammu_jeeva', '', 'Task', '2018-03-26', 'Highest', 'Karan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (37, 13, 'ammu_jeeva', '', 'Task', '2018-03-26', 'Highest', 'Karan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (38, 14, 'Test', '', 'Task', '2018-03-26', 'Lowest', 'Karan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (39, 14, 'Mysore', 'All Day', 'Event', '0000-00-00', '', 'Surya', '2018-03-26', '2018-03-30', 'Karan', 'Lead', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (40, 14, 'test', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Demo', 'Lead', 'Current Call', '23:58:30', 'test', '', 'test', 'CLOSE', 'INACTIVE', '2018-03-26', '0000-00-00 00:00:00', '', '', '', ''), (41, 22, 'Test', '', 'Task', '2018-03-29', 'Low', 'Karan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (42, 22, 'Banglore', 'All day', 'Event', '0000-00-00', '', 'Karan', '2018-03-27', '2018-03-31', '', 'Contact', '', 'Surya', '', '', '', '', '', '', 'test', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (43, 22, 'Test', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Negotiation', 'Lead', 'Completed Call', '0:01:45', 'test', '', 'test', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (44, 15, 'jbljn', '', 'Task', '2018-03-29', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (45, 15, 'vsfvs', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Outbond', '', 'Prospecting', 'Lead', 'Current Call', '0:55:30', 'avsvfs', '', 'vsvfv', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (46, 15, 'gdrgrf', '', 'Task', '2018-03-29', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (47, 23, 'vbfvab', '', 'Task', '2018-03-27', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (48, 16, 'Meeting scheduled for demo', '', 'Task', '2018-03-29', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (49, 16, 'Demo given ', '', 'Task', '2018-03-29', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (50, 17, 'meeting', '', 'Task', '2018-03-21', 'Low', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (51, 17, 'test', 'All Day', 'Event', '0000-00-00', '', 'Bharath', '1970-01-01', '1970-01-01', 'Divya', 'Contact', '', '', '', '', '', '', '', '', 'test', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (52, 17, 'test', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Negotiation', 'Contact', 'Current Call', '17:03:00', 'test', '', 'test', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (53, 17, 'test123', '', 'Task', '2018-03-07', 'Low', 'Divya', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'CLOSE', 'INACTIVE', '2018-03-27', '0000-00-00 00:00:00', '', '', '', ''), (54, 18, 'Test', '', 'Task', '2018-03-10', 'Highest', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'CLOSE', 'INACTIVE', '2018-03-28', '0000-00-00 00:00:00', '', '', '', ''), (55, 339, 'Demo for Yaskawa management', '', 'Task', '2018-09-01', 'High', 'Ajay', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-08-31', '0000-00-00 00:00:00', '', '', '', ''), (56, 339, 'Send mail on meeting', '', 'Task', '2018-08-31', 'High', 'Ajay', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2018-08-31', '0000-00-00 00:00:00', '', '', '', ''), (57, 347, 'Smae as VLCC', '', 'Task', '0000-00-00', 'High', 'Shri priya ', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Not Started', '', 'OPEN', 'ACTIVE', '2018-12-10', '0000-00-00 00:00:00', '', '', '', ''), (58, 642, 'website contact after 1/3/2019', '', 'Task', '0000-00-00', 'Low', 'Shri priya ', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Not Started', '', 'OPEN', 'ACTIVE', '2018-12-31', '0000-00-00 00:00:00', '', '', '', ''), (59, 2235, 'Internet website Designers', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Outbond', '', 'Prospecting', 'Contact', 'Current Call', '13:01:45', 'Needs call on 21.5.2019', '', 'Internet website Designers', 'OPEN', 'ACTIVE', '2019-05-20', '0000-00-00 00:00:00', '', '', '', ''), (60, 297, 'demo', '', 'Task', '2020-02-01', 'Highest', 'Manjunath', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2020-02-01', '0000-00-00 00:00:00', '', '', '', 'Account'), (61, 297, 'client place', '', 'Event', '0000-00-00', '', 'Subramanya', '1970-01-01', '1970-01-01', '', 'Contact', '', 'Ess and Ess infrastructure pvt ltd', '', '', '', '', '', '', 'paritosh.srivastav@gmail.com', 'CLOSE', 'ACTIVE', '2020-02-01', '0000-00-00 00:00:00', '', '', '', 'Account'), (62, 297, 'demo', '', 'Call', '0000-00-00', '', '', '0000-00-00', '0000-00-00', '', '', 'Inbond', '', 'Administrative', 'Contact', 'Current Call', '2:23:00', 'positive', '', 'demo 30 min duration', 'CLOSE', 'ACTIVE', '2020-02-01', '0000-00-00 00:00:00', '', '', '', 'Account'); -- -------------------------------------------------------- -- -- Table structure for table `lead_process` -- CREATE TABLE `lead_process` ( `lead_process_id` int(11) NOT NULL, `lead_process` text NOT NULL, `process_rate` varchar(250) NOT NULL, `create_at` datetime NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_process` -- INSERT INTO `lead_process` (`lead_process_id`, `lead_process`, `process_rate`, `create_at`, `delete_status`) VALUES (1, 'Contacted', '20', '2017-12-22 16:20:38', 'ACTIVE'), (3, 'Requirment Shared', '40', '2017-12-22 16:20:38', 'ACTIVE'), (4, 'Follow Up', '60', '2017-12-22 16:20:38', 'ACTIVE'), (5, 'Quotation Send', '80', '2017-12-22 16:20:38', 'ACTIVE'), (6, 'Quotation Follow Up', '100', '2017-12-22 16:20:38', 'ACTIVE'), (7, 'test', '60', '0000-00-00 00:00:00', 'ACTIVE'); -- -------------------------------------------------------- -- -- Table structure for table `lead_profile_pic` -- CREATE TABLE `lead_profile_pic` ( `profile_pic_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `profile_pic` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `lead_ratings` -- CREATE TABLE `lead_ratings` ( `rating_id` int(11) NOT NULL, `ratings` varchar(200) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `update_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_ratings` -- INSERT INTO `lead_ratings` (`rating_id`, `ratings`, `delete_status`, `created_at`, `update_at`) VALUES (1, 'Acquired', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'Active', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 'Market Failed', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'Project Cancelled', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Shutdown', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 'bbbbb', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 'mmmmm', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 'aaaaaaa', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, '12ee', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, '6754', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 'bbbb', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'nghhh', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'yrtet', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'ryryty', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 'uyutu', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 'uyutu', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 'yytytry', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 'yytytry', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 'trtdgfg', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 'ygxbvhgfh', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 'zzzzzzzzzzz', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 'ghfhfghfjsh', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 'ghfhfghfjsh', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 'jdfggdg', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 'sfsdgsdg', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (32, 'sfsdgsdg', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 'ewer', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `lead_source` -- CREATE TABLE `lead_source` ( `source_id` int(11) NOT NULL, `lead_source_name` varchar(250) NOT NULL, `source_desc` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_source` -- INSERT INTO `lead_source` (`source_id`, `lead_source_name`, `source_desc`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Advertisement', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (2, 'Just Dial', 'test', 'ACTIVE', '2017-10-13 19:26:44', '0000-00-00 00:00:00'), (3, 'Website Research', 'test', 'ACTIVE', '2017-10-13 19:43:44', '0000-00-00 00:00:00'), (4, 'Existing Client Reference', 'test', 'ACTIVE', '2017-10-25 19:43:44', '0000-00-00 00:00:00'), (5, 'Employee Reference', 'test', 'ACTIVE', '2017-10-25 19:43:44', '0000-00-00 00:00:00'), (51, 'Cold Call', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (52, 'Employee Referral', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (53, 'External Referral', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (54, 'Online Store', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (55, 'Partner', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (56, 'Public Relations', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (57, 'Sales Mail Alias', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (58, 'Seminar Partner', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (59, 'Trade Show', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (60, 'Web Download', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (61, 'Wed Research', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (62, 'Chat', 'test', 'ACTIVE', '2017-10-13 18:40:40', '0000-00-00 00:00:00'), (63, 'Urban Clap', 'test', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `lead_status` -- CREATE TABLE `lead_status` ( `status_id` int(11) NOT NULL, `lead_status_name` varchar(250) NOT NULL, `status_descr` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `lead_status` -- INSERT INTO `lead_status` (`status_id`, `lead_status_name`, `status_descr`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Contacted', 'test', 'ACTIVE', '2017-10-13 19:02:15', '0000-00-00 00:00:00'), (2, 'Junk Lead', 'test', 'INACTIVE', '2017-10-13 19:46:59', '0000-00-00 00:00:00'), (3, 'Attempted to contact', 'test', 'INACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (4, 'Contact in future', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (5, 'Lost Lead', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (6, 'Not Contacted', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (7, 'Pre Qualified', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (8, 'Cold Call', 'test', 'INACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (9, 'Self Generated', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (10, 'Employee', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (11, 'Campaign', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (12, 'Existing Customer', 'test', 'ACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (13, 'Conference', 'test', 'INACTIVE', '2017-10-25 19:46:59', '0000-00-00 00:00:00'), (14, 'pppppp', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 'kkkkkk', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, ';;;;;', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, '1oo11', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'utyerty', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'utyerty', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'sfsdgsdg', '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `leaves` -- CREATE TABLE `leaves` ( `leave_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `leave_type` varchar(250) NOT NULL, `leave_from_date` varchar(222) NOT NULL, `leave_to_date` varchar(222) NOT NULL, `team_email_id` varchar(222) NOT NULL, `leave_reason` varchar(555) NOT NULL, `leave_status` varchar(222) NOT NULL, `total_days` varchar(111) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `leave_request` -- CREATE TABLE `leave_request` ( `request_id` int(11) NOT NULL, `employee_id` int(11) NOT NULL, `emp_name` varchar(250) NOT NULL, `worked_date` varchar(222) NOT NULL, `unit` varchar(222) NOT NULL, `duration` varchar(222) DEFAULT NULL, `dur_time` varchar(222) DEFAULT NULL, `from_time` time NOT NULL, `to_time` time NOT NULL, `expiry_date` varchar(222) NOT NULL, `description` varchar(555) NOT NULL, `leave_status` varchar(222) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT; -- -- Dumping data for table `leave_request` -- INSERT INTO `leave_request` (`request_id`, `employee_id`, `emp_name`, `worked_date`, `unit`, `duration`, `dur_time`, `from_time`, `to_time`, `expiry_date`, `description`, `leave_status`, `delete_status`, `created_at`, `updated_at`) VALUES (7, 33, 'manju', '04/10/2017', 'Days', '2', '', '17:03:00', '17:03:30', '26/10/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-09 00:00:00', '0000-00-00 00:00:00'), (8, 33, 'manju', '05/10/2017', 'Hours', '3', '', '12:21:00', '12:15:00', '25/10/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-10 00:00:00', '0000-00-00 00:00:00'), (9, 33, 'manju', '04/10/2016', 'Hours', '2', '', '12:34:15', '12:40:00', '02/11/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-10 00:00:00', '0000-00-00 00:00:00'), (10, 33, 'manju', '05/10/2017', 'Days', '2', '', '17:01:45', '17:00:00', '10/10/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (11, 33, 'manju', '01/10/2017', 'Days', 'Full Day', '13:34:15', '13:00:00', '14:30:00', '25/10/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-12 00:00:00', '0000-00-00 00:00:00'), (12, 33, 'manju', '04/10/2017', 'Hours', 'Select', '13:30:00', '13:35:00', '13:30:00', '25/10/2017', 'testing', 'COMP OFF', 'ACTIVE', '2017-10-12 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `leave_types` -- CREATE TABLE `leave_types` ( `lea_type_id` int(11) NOT NULL, `leave_name` varchar(250) NOT NULL, `leave_type` varchar(250) NOT NULL, `leave_unit` varchar(222) NOT NULL, `description` varchar(555) NOT NULL, `leave_period` varchar(222) NOT NULL, `leave_for` varchar(222) DEFAULT NULL, `exp_based` varchar(222) DEFAULT NULL, `leave_count` varchar(222) NOT NULL, `experience` varchar(222) DEFAULT NULL, `exp_year` varchar(222) DEFAULT NULL, `exp_month` varchar(222) DEFAULT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `leave_types` -- INSERT INTO `leave_types` (`lea_type_id`, `leave_name`, `leave_type`, `leave_unit`, `description`, `leave_period`, `leave_for`, `exp_based`, `leave_count`, `experience`, `exp_year`, `exp_month`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Dasara', 'Paid', 'Days', 'testing', 'Bi Weekly', 'All Employees', NULL, '', 'Select', '', '', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (2, 'Ugadi', 'Paid', 'Hours', 'testing', 'Half Monthly', NULL, 'Experience based', '3', 'After', '2', '6', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (3, 'Deepavali', 'Paid', 'Days', 'testing', 'Monthly', 'All Employees', 'Experience based', '5', NULL, NULL, NULL, 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (4, 'Ayudha Pooje', 'Unpaid', 'Days', 'testing', 'Half Monthly', 'All Employees', NULL, '', 'Select', '', '', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'), (5, 'Ganesha Chaturti', 'Paid', 'Days', 'testing', 'Bi Weekly', NULL, 'Experience based', '4', 'After', '2', '3', 'ACTIVE', '2017-10-11 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `masters` -- CREATE TABLE `masters` ( `master_id` int(11) NOT NULL, `master_type_id` int(11) NOT NULL, `field_type` text NOT NULL, `field_label` text NOT NULL, `field_name` varchar(150) NOT NULL, `field_value` text NOT NULL, `required` enum('NO','YES') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `masters` -- INSERT INTO `masters` (`master_id`, `master_type_id`, `field_type`, `field_label`, `field_name`, `field_value`, `required`, `delete_status`, `created_at`, `updated_at`) VALUES (14, 6, 'select', 'gst', 'gst', '[\"9%\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 10, 'select', 'sgst', 'sgst', '[\"9%\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 11, 'select', 'Rating', 'rating', '[\"Acquired\",\"Active\",\"Project Cancelled\",\"INACTIVE\"]', 'YES', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 12, 'select', 'Industry', 'industry', '[\"AGRICULTURE AND ALLIED INDUSTRIES\",\"AUTOMOBILES\",\"AUTO COMPONENTS\",\"AVIATION\",\"BANKING\",\"CEMENT\",\"CONSUMER DURABLES\",\"ECOMMERCE\",\"EDUCATION AND TRAINING\",\"ENGINEERING AND CAPITAL GOODS\",\"FINANCIAL SERVICES\",\"FMCG\",\"GEMS AND JEWELLERY\",\"HEALTHCARE\",\"INFRASTRUCTURE\",\"INSURANCE\",\"IT & ITES\",\"MANUFACTURING\",\"MEDIA AND ENTERTAINMENT\",\"METALS AND MINING\",\"OIL AND GAS\",\"PHARMACEUTICALS\",\"PORTS\",\"POWER\",\"RAILWAYS\",\"REAL ESTATE\",\"RENEWABLE ENERGY\",\"RETAIL\",\"ROADS\",\"SCIENCE AND TECHNOLOGY\",\"SERVICES\",\"STEEL\",\"TELECOMMUNICATIONS\",\"TEXTILES\",\"TOURISM AND HOSPITALITY\",\"NGO\",\"Astrology\",\"Food Industry\",\"Sports\",\"OTHERS\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-06-26 17:55:56'), (18, 13, 'select', 'Account Type', 'account_type', '[\"Analyst\",\"Competitor\",\"Customer\",\"Distributor\",\"Investor\",\"Integrator\",\"Partner\",\"Press\",\"Prospect\",\"Reseller\",\"Supplier\",\"Vendor\",\"Others\",\"HR and Consultants\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2018-09-10 13:07:19'), (19, 14, 'select', 'Account Site', 'account_site', 'null', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2018-09-28 17:08:10'), (21, 1, 'select', 'server', 'server', '[\"Justdial\",\"Facebook\",\"Jayblues.in Reseller-2\",\"Godaddy\",\"Bigrock\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-12-06 11:56:57'), (22, 1, 'select', 'Service Provider', 'service_provider', '[\"Justdial\",\"Facebook\",\"Jayblues.in Reseller-2\",\"Godaddy\",\"Bigrock\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-12-06 11:56:57'), (23, 2, 'select', 'Service Provider', 'service_provider', '[\"Bluehost\",\"Nparrots reseller\",\"Jayblues.in Reseller-2\",\"Windows Plesk\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-12-06 11:53:37'), (25, 4, 'select', 'Service Provider', 'service_provider', '[\"msg1\",\"sms gateway\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 5, 'select', 'Service Provider', 'service_provider', '[\"Outlook.com\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 7, 'textarea', 'Comments', 'comments', '50% of payment initially and remaining after completion of project', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 6, 'select', 'CGST', 'cgst', '[\"9%\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 16, 'select', 'Paid_to', 'paid_to', '[\"HDFC Jayblues\",\"SBI Jayblues\",\"Cash\",\"Pay U Money\",\"UPI\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-11-26 16:18:20'), (31, 17, 'select', 'GST', 'gst', '[\"9%\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2019-01-23 12:49:23'), (32, 18, 'select', 'category', 'category', '[\"MOU\",\"RentAgreement\",\"Computers\",\"Mobile Bill\",\"Insurance\",\"Water Purifier\",\"UPS\",\"BroadBand Bill\",\"Electricity Bill\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '2018-09-10 13:03:39'), (33, 19, 'select', 'reason', 'reason', '[\"No Difference\",\"Rounded Up\",\"Paid in other invoice\",\"Others\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 20, 'select', 'payment type', 'payment_type', '[\"Cheque\",\"Cash\",\"DD\",\"Online Payment\",\"PAYTM\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 22, 'select', 'hosting service provider', 'hosting_service_provider', '[\"Bluehost\",\"GoDaddy\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 23, 'select', 'payment gateway service provider', 'payment_gateway_service_provider', '[\"Bluehost\",\"GoDaddy\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (38, 24, 'select', 'sms service provider', 'sms_service_provider', '[\"sms gateway\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (39, 25, 'select', 'email service provider', 'email_service_provider', '[\"Outlook.com\",\"iCloud mail\"]', 'NO', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (41, 21, 'select', 'IGST', 'igst', '[\"18%\",\"9%\"]', 'NO', 'ACTIVE', '2018-10-03 18:16:37', '2018-10-04 13:54:56'), (45, 26, 'select', 'Expense Type', 'expense_type', '[\"Domain\",\"Hosting\",\"SSL Certificate\",\"Ciarpro Technologies Chennai\",\"Coffee Expense\",\"Guest House Rent\",\"Mysore Office BroadBand Bill\",\"Company Mobile Bill\",\"Mysore Home BroadBand Bill\",\"Office Stationary\",\"Bangalore Office Rent\",\"Mysore Office Rent\",\"GST\",\"Others\",\"Water Bill\",\"Allowence \"]', 'NO', 'ACTIVE', '2018-11-02 19:13:28', '2019-06-10 16:24:30'), (55, 3, 'select', 'Payment Gateway', 'payment_gateway', '[]', 'NO', 'ACTIVE', '2018-11-06 10:52:01', '2018-11-06 11:03:27'); -- -------------------------------------------------------- -- -- Table structure for table `master_type` -- CREATE TABLE `master_type` ( `master_type_id` int(11) NOT NULL, `master_type` varchar(200) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `master_type` -- INSERT INTO `master_type` (`master_type_id`, `master_type`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Domain', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'Hosting', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 'Payment Gateway', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'SMS', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Email', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'CGST', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 'Comments', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 'Description', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 'Website Packages', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 'SGST', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 'Rating', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 'Industry', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 'Account Type', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 'Account Site', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 'Paid To', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 'GST', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'Category', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'Reason', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'Payment Type', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 'IGST', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 'Expense Type', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 'Savings', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `menu` -- CREATE TABLE `menu` ( `menu_id` int(11) NOT NULL, `menu_name` varchar(222) NOT NULL, `alt_name` varchar(222) NOT NULL, `parent_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `status` int(11) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `menu` -- INSERT INTO `menu` (`menu_id`, `menu_name`, `alt_name`, `parent_id`, `department_id`, `status`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Lead Owner', 'lead_owner', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'Company Name', 'company_name', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 'First Name', 'first_name', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'Last Name', 'last_name', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Lead Title', 'lead_title', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'Email', 'email', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 'Phone', 'phone', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 'Fax', 'fax', 0, 0, 1, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 'Mobile', 'mobile', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 'Website', 'website', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 'Lead Source', 'lead_source', 0, 0, 0, '', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 'Industry', 'industry', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 'No. of Employees', 'no_of_employees', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (14, 'Annual Revenue', 'annual_revenue', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (15, 'Ratings', 'ratings', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 'Email Otp', 'email_otp', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 'Skype Id', 'skype_id', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'Secondary Email', 'sec_email', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'Twitter', 'twitter', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'Street', 'street', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 'City', 'city', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 'State', 'state', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 'Zip Code', 'zip_code', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 'Country', 'country', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 'Description', 'description', 0, 0, 0, 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `msg_template` -- CREATE TABLE `msg_template` ( `templet_id` int(11) NOT NULL, `template` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `msg_template` -- INSERT INTO `msg_template` (`templet_id`, `template`, `delete_status`, `created_at`, `updated_at`) VALUES (2, 'Happy Gowri Ganesha Festival', 'ACTIVE', '2018-09-11 12:47:08', '0000-00-00'), (3, 'Shuklaambaradharam Vishnum, Shashivarnam Chaturbhujam | Prasannavadanam Dhyaayet, Sarva Vighnopashaanthaye || JAYBLUES Wishes you all a Happy GOWRI and GANESHA CHATURTHI. #GaneshaChaturthi2018', 'ACTIVE', '2018-09-12 13:14:44', '0000-00-00'), (4, 'demo', 'ACTIVE', '2020-02-01 16:05:03', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `new_account` -- CREATE TABLE `new_account` ( `account_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, `potentail_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `contact_id` int(11) NOT NULL, `contact_roles` text NOT NULL, `account_owner` text NOT NULL, `rating` varchar(250) NOT NULL, `net_amount` text NOT NULL, `gst_18` text NOT NULL, `total_amount` text NOT NULL, `initial_paid1` text NOT NULL, `initial_paid2` text NOT NULL, `final_pay` text NOT NULL, `name_type` varchar(50) NOT NULL, `account_name` text NOT NULL, `phone` varchar(25) NOT NULL, `account_site` varchar(25) NOT NULL, `fax` varchar(20) NOT NULL, `parent_account` varchar(25) NOT NULL, `website` varchar(256) NOT NULL, `account_number` varchar(25) NOT NULL, `ticker_symbol` varchar(250) NOT NULL, `account_type` text NOT NULL, `ownership` text NOT NULL, `industry` text NOT NULL, `employees` int(11) NOT NULL, `annual_revenue` varchar(250) NOT NULL, `sic_code` varchar(250) NOT NULL, `billing_street` varchar(250) NOT NULL, `shipping_street` varchar(250) NOT NULL, `billing_city` text NOT NULL, `address` varchar(256) NOT NULL, `shipping_city` text NOT NULL, `billing_state` text NOT NULL, `shipping_state` text NOT NULL, `billing_code` varchar(250) NOT NULL, `shipping_code` varchar(250) NOT NULL, `billing_country` text NOT NULL, `shipping_country` text NOT NULL, `description` varchar(250) NOT NULL, `contact_person` varchar(256) NOT NULL, `designation` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `domain_purchase_date` date NOT NULL, `website_live_date` date NOT NULL, `opened_on` date NOT NULL, `gst_code` text NOT NULL, `email_id` text NOT NULL, `domain` varchar(256) NOT NULL, `hosting` varchar(256) NOT NULL, `created_by` int(11) NOT NULL, `updated_by` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL, `type` enum('Account') NOT NULL, `billing_state_code` text NOT NULL, `shipping_state_code` text NOT NULL, `amc_date` enum('NO','YES') NOT NULL, `due_date` text NOT NULL, `service_name` text NOT NULL, `service_date` text NOT NULL, `service_amount` text NOT NULL, `old_account_id` int(11) NOT NULL, `view_status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `new_account` -- INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (2, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Savadi Dental Care', '9448040343', '', '', '', 'http://savadidentalcare.com/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar,', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'SMS package given ', 'Ravindra', 'Doctor', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-15', '', 'rcsavadi@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'YES', '2021-11-15', '', '', '', 0, 1), (7, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Maanasa Dental Health Center', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-12-15', '', 'Maanasa.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (13, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dr Sunil', '9886955003', '', '', '', 'drsunils.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'Arkis Arcade, Tilak Nagar,', 'Arkis Arcade, Tilak Nagar,', 'Shimoga', '', 'Shimoga', '', '', 'Karnataka', 'Karnataka', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-01-20', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (15, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Anthony Fernandes', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-02-19', '', '', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (17, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Babitha HM', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-02-25', '', '', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (20, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Ora dental care', '80957 90359', '', '', '', 'http://www.oradentalcare.org/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '# 99, 2nd Floor, D. Devaraj Urs Road, Next to Bhima & Brother jewellers,', '# 99, 2nd Floor, D. Devaraj Urs Road, Next to Bhima & Brother jewellers,', 'Mysuru', '', 'Mysuru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-03-18', '', 'info@oradentalcare.org', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (21, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Adarsh(Shimoga)', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Shimoga', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-02-05', '', '', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (27, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dr C Jagadeesh Dental Clinic', '+91 81970 93444', '', '', '', 'www.drcjagadeesh.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '687, 9th A Main Road, Near Chinmaya Mission Hospital, 1st Stage, Defence Colony, Indiranagar', '687, 9th A Main Road, Near Chinmaya Mission Hospital, 1st Stage, Defence Colony, Indiranagar', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-03-21', 'NO', 'drcjagadeeshdentalclinic@gmail.com', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (34, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Shre Vinayaka Dental Clinic', '+91 80 - 26532130', 'Headquarters', '', '', 'http://www.svdentalclinic.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '5000', '998314', '#1199, 1st Floor, 26th Main, Jayanagar 9th Block, ', '#1199, 1st Floor, 26th Main, Jayanagar 9th Block, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560069', '560069', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-08', '', 'doctarun27@gmail.com', '', '', 0, 1, '2018-07-14 12:16:51', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (35, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sri dattanjaeya astro centre', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'dattanjaeya.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (36, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Global Career Academy', '9945312846 ', '', '', '', 'www.gcaoverseas.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#26, 1st Floor, Venkatadri Arcade Near Roti Ghar, Gandhi Bazaar Basavanagudi,', '#26, 1st Floor, Venkatadri Arcade Near Roti Ghar, Gandhi Bazaar Basavanagudi,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-10', 'NO', '', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (37, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'My Dentist', '9886616680', '', '', '', 'www.mydentistbangalore.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#9, 23rd main 50ft Road, Muneshwara Block, Girinagar, Bangalore', '#9, 23rd main 50ft Road, Muneshwara Block, Girinagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-06-06', '', 'mydentist32@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (39, 0, 0, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Gladsome capital', '9945641494', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-09', 'NO', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (40, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Laveera Technologies Pvt Ltd', '9916328263', '', '', '', 'www.laveera.com', '', '', 'Customer', '', '', 0, '', '998314', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase,', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Dananjay', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-04', '29AADCL2628R1ZV', 'dananjay.dodtumkur@laveera.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (41, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'ALT training college', '9448396874', '', '', '', 'http://alttrainingcollege.in', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '6000', '998314', 'ALT Training college foundation, kaikondanahalli, bellandur gate, ', 'ALT Training college foundation, kaikondanahalli, bellandur gate, sarjapur road', 'sarjapur road, Bangalore 560035', '', 'Bangalore 560035', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Mohan', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-11', '29AAWFA3597J1ZJ', 'service@altltd.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-10-07', '', '', '', 0, 1), (45, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Seventh Page INC', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Calgary ,Cannada', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-17', '', 'seventhpage.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (51, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Karnataka ICSE schools Association', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-27', '', 'KarnatakaICSEschoolsAssociation.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (54, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Mannan Realtors and Developers', '9742566325', '', '', '', 'www.mannandevelopers.com', '', '', 'Customer', '', '', 0, '', '998314', '135/1, Brigade Towers, Brigade Road, Bangalore - 560025', '135/1, Brigade Towers, Brigade Road, Bangalore - 560025', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-21', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (58, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Excel Diagnostics', '9845699606', '', '', '', 'exceldiagnosis.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'Sahukar Chennaiah Road, Kuvempunagara North, Gangothri Layout', 'Sahukar Chennaiah Road, Kuvempunagara North, Gangothri Layout', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-23', 'NO', 'exceldiagnosis.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (60, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Conceptual Designers', '9986772281', '', '', '', 'http://www.conceptualdesigners.in/', '', '', 'Customer', '', '', 0, '', '998314', '#476, 14th main, 7th cross, Wilson garden,', '#476, 14th main, 7th cross, Wilson garden,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-15', '', 'subash.s68@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-04-15', '', '', '', 0, 1), (62, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sterling events', '9663917069', '', '', '', 'www.sterlingevents.in', '', '', 'Customer', '', '', 0, '', '998314', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', '#107, 1st floor, Makana Heights, Tavarekere Main road, Bengaluru-560029', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-10', '29CKHPP9108B1Z1', 'www.sterlingevents.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (63, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Aditi Consultancy', '9449612671', '', '', '', 'www.aditiconsultancy.com', '', '', 'Customer', '', 'SERVICES', 0, '7500', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-10', '29AAJPR7984D1Z0', 'raghu@aditiconsultancy.com/aditiconsultancy@gmail.com /info@aditiconsultancy.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 24, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (67, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Vstaarplus', '9123456789', '', '', '', 'www.vstaarplus.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Chikmagalur', '', 'Chikmagalur', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-04', '', 'vstaarplus.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (68, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Apple Advertising', '9538039445 / 7760787295', 'Headquarters', '', '', 'http://www.appleadvertining.in', '', '', 'Customer', '', 'SERVICES', 0, '6000', '998314', '#1880/17, 28th C Main Road, 9th Block, Jayanagar,', '#1880/17, 28th C Main Road, 9th Block, Jayanagar,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-18', '', 'appleadvertisingblr@gmail.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (69, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Evasuite Business Services', '9731162242', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'HSR layour , bangalore', 'HSR layour , bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-15', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (70, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Excellence Dental Health Care', '9900008040', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mangalore', '', 'Mangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-23', '', 'excellencedental@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 24, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (75, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Paradies suites', '9900410756', '', '', '', 'www.paradiessuites.com', '', '', 'Customer', '', '', 0, '', '998314', 'Malleshwaram, Bangalore', 'Malleshwaram, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-16', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (76, 0, 0, 0, 0, 76, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Good rich pest control', '9916777706', '', '', '', 'goodrichpestcontrol.co.in', '', '', 'Customer', '', '', 0, '', '998314', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala,', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-03', '29CAXPS8499E2ZC', 'goodrichpestcontrol@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (78, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Suddhi Loka', '', '', '', '', 'www.suddhiloka.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-14', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (79, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Vishnavimatha Astrologer', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-17', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (81, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Radha Systems', '9743451072', '', '', '', 'radhasystem.com', '', '', 'Customer', '', '', 0, '', '998314', '#119, 2nd floor, G street, Jogupalya, Ulsoor, Bangalore', '#119, 2nd floor, G street, Jogupalya, Ulsoor, Bangalore', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', 'site closed', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-18', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (82, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Durga Steels Corporation', '9880565892', '', '', '', 'www.mybuildmaterial.com', '', '', 'Customer', '', 'STEEL', 0, '', '998314', 'DURGA Steel Corporation', 'DURGA Steel Corporation', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560068', '560068', 'India', 'India', 'Both hosting and Domain is With Jayblues', 'Rajesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-24', '', 'durgasteel04@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-25', '', '', '', 0, 1), (83, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Adds Group(Purpleyo narayan)', '', '', '', '', '', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '6000', '', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-08', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (86, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Hublaunch', '8050505090', '', '08068888019 ', '', 'http://hublaunch.co.in/', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', '#332, Ground Floor, 14th Main Road, Behind Cafe Coffee Day, J.P.Nagar, 5th Phase, Bangalore 560 078', '#332, Ground Floor, 14th Main Road, Behind Cafe Coffee Day, J.P.Nagar, 5th Phase, Bangalore 560 078', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-17', '', 'shanawaz@hublaunch.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-02', '', '', '', 0, 1), (88, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Urban works', '9164905220', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'Rajarajeshwari nagar , bangalore', 'Rajarajeshwari nagar , bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-19', '', 'urbanworks.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (89, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Creative Networks', '9972524181', '', '', '', 'creativenetworks.net.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '998314', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-23', '29AAMTE8611C1Z3', 'venkateshsrinivasan@creativenetworks.net.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-06-23', '', '', '', 0, 1), (91, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'GP and Co', '080-65633986 ', '', '', '', 'http://gpandco.in', '', '', 'Customer', '', '', 0, '', '998314', 'No. 5, 1st Floar, Puttanna Road Cross, Behind Vidyarthi Bhaban, D.V.G. Road, Basavanagudi,', 'No. 5, 1st Floar, Puttanna Road Cross, Behind Vidyarthi Bhaban, D.V.G. Road, Basavanagudi,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-16', '', 'kumargpco@yahoo.com/kumargpmdc@yahoo.com/', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (94, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Kids Zone', '7899823234', '', '', '', 'www.kidszone.org.in', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West,', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-15', '', 'kidszone9999@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-05-03', '', '', '', 0, 1), (100, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'John D Leo Engineering Inc', '8123520336', '', '', '', 'johndleo.com', '', '', '', '', 'MANUFACTURING', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-04', '29BMAPM0641J1Z3', 'mukundrao@johndleo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (102, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Happy Garden', '9611759037', '', '', '', 'http://happygarden.in/', '', '', 'Customer', '', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '5000', '998314', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA ', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA ', 'SOMANAHALLI 571429', '', 'SOMANAHALLI 571429', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Chithra', '', 'ACTIVE', '0000-00-00', '2019-11-12', '2016-07-06', '29ACIPS8466L1ZK', 'happygardenmysore@gmail.com/ officeaswiniagro@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2020-06-21', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (103, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Taktik Consulting', '7899027414', '', '', '', 'www.taktikconsulting.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'VRR Stone arch B-408, Byresvara layout, Bangalore, KA 560043', 'VRR Stone arch B-408, Byresvara layout, Bangalore, KA 560043', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-15', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (105, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Salemaker', '99 452 75 293', '', '', '', 'www.salemaker.in', '', '', 'Customer', '', 'IT & ITES', 0, '', '998314', 'Pride Bilekahalli Banergatta Road', 'Pride Bilekahalli Banergatta Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-03', 'NO', 'salemakerindiateam@gmail.com/ pramod.deshmukh@the-alpha-group.biz', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (107, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dr Madhusudhan(Smile Studio)', '8025490703', '', '', '', 'smilestudioindia.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#74, M.M. Road, Frazer Town,', '#74, M.M. Road, Frazer Town,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-27', '', 'madhusudhanshimoga@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-10-11', '', '', '', 0, 1), (108, 0, 0, 0, 0, 0, '', '20', 'Project Cancelled', '', '', '', '', '', '', '', 'Bharath Kuppal', '', 'Headquarters', '', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '', '', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-14', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (110, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'VABT logistics Solution Pvt Ltd', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-21', '', 'VABT.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (115, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sri Shiva sai astro centre', '9845072771', '', '', '', 'www.srishivasaiastrocentre.com', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'House No.91/1,Near Ramkrishna Matta,Opposite Hyundai Showroom,Gandhi Bazaar Main Rd, Gandhi Bazaar, Basavanagudi, Bengaluru', 'House No.91/1,Near Ramkrishna Matta,Opposite Hyundai Showroom,Gandhi Bazaar Main Rd, Gandhi Bazaar, Basavanagudi, Bengaluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-27', 'NO', 'www.srishivasaiastrocentre.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (116, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sai Balaji astrology', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'saibalajiastrology.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (118, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Fly Fast Express', '9886850380', '', '', '', 'www.flyfastexpress.com', '', '', 'Customer', '', 'AVIATION', 0, '', '998314', '14/4 Mission Road, S.R nagar Banglore 560027', '14/4 Mission Road, S.R nagar Banglore 560027', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-11', '29AHEPA8435E1ZI', 'flyfastexpress@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-11-20', '', '', '', 0, 1), (119, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sangam Travels', '9945506175', '', '', '', 'www.sangamatoursandtravels.com', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '998314', 'No.28 & 29, 3rd Cross, Abbaiahyappa Layout, (Dollars Layout), N.S. Playa, Bannerghatta Road, Bengaluru ', 'No.28 & 29, 3rd Cross, Abbaiahyappa Layout, (Dollars Layout), N.S. Playa, Bannerghatta Road, Bengaluru ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-14', '', 'stt@sangamatoursandtravels.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (122, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'GSRM Pvt Ltd', '8971933348', '', '', '', 'http://gsrm.co.in/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#51/1, 2nd Floor, Raju Building, Bettadasapura Road Doddathogur, Electronic City Post, Bangalore', '#51/1, 2nd Floor, Raju Building, Bettadasapura Road Doddathogur, Electronic City Post, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-16', '', 'gsrm@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (123, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Manju Design Build', '9945712000', '', '', '', 'manjudesignbuild.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru', '54, 1st Main, IDBI Layout, Gottigere, Bannerghatta Road, Bengaluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-07', '29AILPM5696D1ZP', 'info@manjudesignbuild.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (125, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Prakruthi Yatri Nivas', '9448879103', '', '', '', 'www.prakruthiyatrinivas.in', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '6000', '998314', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435.', 'Prakruthi Yatri Nivas, Boarding and Lodging, Jog Falls, Sagar (Tq), PIN - 577435.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-08-06', '', 'info@prakruthiyatrinivas.in /salam@prakruthiyatrinivas.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-08-06', '', '', '', 0, 1), (128, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Mpowering skills', '9591137711', '', '', '', 'http://mpoweringskills.in/', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-09', '', 'tanujakhanduja@hotmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-05-20', '', '', '', 0, 1), (129, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Ashirwad Dental Clinic', '9845037921', '', '', '', 'http://www.ashirwaddentalclinic.com/', '', '', 'Customer', '', 'HEALTHCARE', 0, '11000', '998314', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel,', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Sanjay mohanchandra', 'Doctor', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-15', 'NO', 'ashirwadclinicjpnagar@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-06-30', '', '', '', 0, 1), (132, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr. Prasad', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-18', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (137, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'JKH Global Solutions', '9606445678', '', '', '', 'www.jkhglobalsolutions.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '214, 2nd Floor 1st Main Rd, behind Robert Bosch gate, 7th Block Koramangala, Bengaluru', '214, 2nd Floor 1st Main Rd, behind Robert Bosch gate, 7th Block Koramangala, Bengaluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-16', '29AANFJ4926B1Z9', 'info@jkhglobalsolutions.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (138, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Jaisri Leather Fashions', '6238273902', '', '', '', 'jaisrileatherfashions.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560090', '560090', 'India', 'India', '8095685450 ', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-11', '29AMAPB5212B1ZV', 'jaisrileatherfashions131@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2021-09-11', '', '', '', 0, 1), (139, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Janapara media Pvt Ltd', '8069544444', '', '', '', 'www.janaparamedia.com ', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', 'No.1611,Janardhan Towers, 1st Floor, 19th Main, 7th Cross, Near Agara Bus Depo, Sector-1, HSR Layout, Bangalore-560102', 'No.1611,Janardhan Towers, 1st Floor, 19th Main, 7th Cross, Near Agara Bus Depo, Sector-1, HSR Layout, Bangalore-560102', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-02', '', 'janapara247@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (141, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Avega Consultancy Services Pvt Ltd', '', '', '', '', '', '', '', '', '', '', 0, '5000', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-30', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (144, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Intercontinental Logistics', '9740862629', '', '', '', 'http://intercontinentallogistics.in/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra,', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-15', '29BIIPS9092K3Z6', 'sandeep@intercontinentallogistics.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-09-14', '', '', '', 0, 1), (148, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Prime Panels', '9880532101', '', '', '', 'primepanels.net', '', '', 'Customer', '', '', 0, '', '998314', 'vijay nagar , bangalore', 'vijay nagar , bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-11', '', 'bnp9876@gmail.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (150, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'UNISON4', '8971048890', '', '', '', 'www.unison4.com', '', '', 'Customer', '', '', 0, '', '998314', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', '1st Floor, #33/41, 13th Cross, 15th Main, Padmanabhanagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-05', '29CABPP6393Q1ZO', 'info@unison4.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (151, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Matha Associates', '9448955833/08023408607', '', '', '', 'www.mathaassociates.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', ' No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara', ' No. 2589, 5th b Main,R.P.C.Layout, Vijayanagara', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560040', '560040', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-15', '29AARFM9918N1Z3', 'ngowda.mathaassociates@gmail.com ,office@mathaassociates.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (152, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Venus Surgical Agencies', '8026673216', '', '', '', 'http://venussurgicalagencies.com/', '', '', 'Customer', '', 'PHARMACEUTICALS', 0, '', '998314', 'No. 10/1, 10/2, Ground Floor 1st Main, Mount Joy Extension, Hanumantha Nagar Bengaluru - 560 019, INDIA', 'No. 10/1, 10/2, Ground Floor 1st Main, Mount Joy Extension, Hanumantha Nagar Bengaluru - 560 019, INDIA', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-08-29', '29AGIPA8918R1ZL', 'varun_ahuja@venussurgicalagencies.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (153, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'M/s Micro Energy(India) Limited', '9481634026', '', '', '', 'microenergyindialimited.com', '', '', 'Customer', '', '', 0, '', '998314', ' No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalor', ' No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalor', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-13', 'NO', 'nagarajugl@yahoo.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (156, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'ING Corporation', '8067590395', '', '', '', 'ingcorporation.in', '', '', '', '', 'INSURANCE', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'enquiry@ingcorporation.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (159, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Swansilk Pvt Ltd', '8041888298', '', '', '', 'www.swansilk.co', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-06-29', '29AACCS4515R1ZR', 'navin@swansilk.com / purchase@swansilk.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-08-06', '', '', '', 0, 1), (160, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Celestain', '9945011591', '', '', '', 'http://celestain.in', '', '', 'Customer', '', 'AVIATION', 0, '5000', '998314', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road,', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Abdul muthaleef', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-14', '29BFCPR6408F3Z9', ' info@celestain.in / abdul.muthaleef@outlook.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-06', '', '', '', 0, 1), (161, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sidvin Elevators', '08041243850 / 9108511370', '', '', '', 'http://sidvinelevators.com/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar', '#15, sri plaza, 1st floor, kothanoor dinne main road, jp nagar 7th phase, guarav nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-27', '29ADDFS6507Q1ZC', 'jkamathp@gmail.com ', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (162, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Travel website', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'travelwebsite.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (163, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Hiking Holidays', '8123203955', '', '', '', 'hikingholidays.in', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '998314', 'TC palya main road, Varanasi, Bangalore', 'TC palya main road, Varanasi, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-01', '', 'info@hikingholiday.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (164, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Micro Energy India Limited', '9481634026', '', '', '', 'http://microenergyindialimited.com/', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', 'No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalore', 'No 11,1st Floor, Ksv Complex, Millers Road, Vasanth Nagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-26', 'NO', ' microenergy14@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (165, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Rv Foundation', '9740233698', '', '', '', 'rvfoundations.in', '', '', 'Customer', '', 'IT & ITES', 0, '', '998314', '#20/3, Kaushika Plaza, 2nd Floor, 80 Feet Road, 2nd Stage, Basaveshwaranagar, Bangalore', '#20/3, Kaushika Plaza, 2nd Floor, 80 Feet Road, 2nd Stage, Basaveshwaranagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Rakesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-21', '', 'info@rvfoundations.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (166, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Success Edge Marine Services', '9742221664', '', '', '', 'www.successedgemarineservices.com', '', '', 'Customer', '', '', 0, '', '998314', 'No 726, 6th cross KG layout, Banashankari 3rd stage, Bangalore-560085, Karnataka.', 'No 726, 6th cross KG layout, Banashankari 3rd stage, Bangalore-560085, Karnataka.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-10-24', 'NO', 'bpbhana93@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (169, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', '9916699955/8152876562', '', '', '', 'www.gssorganised.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '1104, Udayaravi Rd, Block K, Kuvempu Nagara', '1104, Udayaravi Rd, Block K, Kuvempu Nagara', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', 'Director', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-23', '29AAACG3912G1ZT', 'gsskarthi@gmail.com / gururaj@investinmysore.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (171, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Tanmay Traders', '9342435274', 'Headquarters', '', '', 'www.tanmaytraders.com', '', '', 'Customer', '', 'POWER', 0, '4000', '998314', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', 'No. 66, 2nd Main, Pothalappa Garden, (Near MICO) Hosur Main Road, Adugodi BANGALORE - 560030.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-09', '29AIDPS5620B1ZF', 'info@tanmaytraders.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (177, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Print Cube Technologies Pvt Ltd', '9108991699', '', '', '', 'http://printcube.in/', '', '', '', '', 'MANUFACTURING', 0, '', '998314', '# 1361, Lower Ground Floor, Grand Arcade Building, Below Light Store, 100 Ft Road, Jayanagar 9th Block, Bangalore - 560 069', '# 1361, Lower Ground Floor, Grand Arcade Building, Below Light Store, 100 Ft Road, Jayanagar 9th Block, Bangalore - 560 069', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560 069', '560 069', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-07-18', '29AAICP2099K1ZR', 'enquire@printcubetechnologies.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (179, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'LIMRA INSTITUTE OF FOREIGN TRADE ( LIFT )', '8050701712 ', '', '', '', 'way2lift.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '823/4 NEAR CHAITRA COMPLEX 2ND FLOOR 13TH CROSS 7TH BLOCK JAYANAGAR WEST, ', '823/4 NEAR CHAITRA COMPLEX 2ND FLOOR 13TH CROSS 7TH BLOCK JAYANAGAR WEST, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-26', '', 'lickoschool@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (181, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'National Housing Corporation', '8023333342', '', '', '', 'www.nationalhousingcorporation.in', '', '', 'Customer', '', 'BANKING', 0, '', '998314', '#Suite No. 101, Gretia Plena, #30 Adikabira Ashram 1st Main Road RT Nagar', '#Suite No. 101, Gretia Plena, #30 Adikabira Ashram 1st Main Road RT Nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-10-28', '', 'info@nationalhousingcorporation.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (182, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sri Ganesha Ventures', '9035036699', '', '', '', 'https://sriganeshaventures.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '7000', '998314', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage', 'Bangalore', '', 'Bangalore', 'Karnataka ', 'Karnataka ', '', '', 'India', 'India', '9731801000-Arjun', 'Arjun', 'properatior', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-10-03', '29AYPPA3816K1Z4', 'info@arjunventures.com / arjunns@live.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (184, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Provoke Advertising', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-11', '29APKPG8924J1ZC', 'provokeadvertising.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (185, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Rockworth Infra Equipments Pvt Ltd', '8028608483', '', '', '', 'rockworth.co', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', '#3rd Floor,Seetha Complex RR Nagar,Bengaluru - 560098', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-12', '29AAGCR2132K1Z9', 'info@rockworth.co', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1); INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (186, 0, 0, 0, 0, 186, '', '20', 'Active', '', '', '', '', '', '', '', 'Ragav Diagnostic and Research centre Pvt Ltd', '9901084243', '', '', '', 'http://www.ragavsdiagnostics.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'shanmugha', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-16', 'NO', 'info@ragavsdiagnostics.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-11-16', '', '', '', 0, 1), (189, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sree Swamy Vivekananda Higher Primary School', '080-32955699 ', '', '', '', 'ssvhps.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#38, Near NCC (Urban) & Purva Apartments, Attur Layout, Yelahanka New Town, Bengaluru-560064', '#38, Near NCC (Urban) & Purva Apartments, Attur Layout, Yelahanka New Town, Bengaluru-560064', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-15', '', 'info@vivekanandaschool.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (192, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sri mahaganapathy astrologer', '9845943992', '', '', '', 'srimahaganapathiastrologer.com', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'No.3c, 319, Ground Floor, Ganesha Temple Street, Next to Sukh Sagar Hotel , Opp to Sena Vihar, Kammanahalli Main Road, Bangalore - 84', 'No.3c, 319, Ground Floor, Ganesha Temple Street, Next to Sukh Sagar Hotel , Opp to Sena Vihar, Kammanahalli Main Road, Bangalore - 84', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-27', '', 'srimahaganapathiastrologer@gmail.com ', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (193, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sri Bhadrakali Astrologer', '9845943992', '', '', '', 'sribhadrakaliastrologer.com', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'MG Road , bangalore', 'MG Road , bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-27', '', 'sribhadrakaliastrologer@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (197, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Yaskawa India Pvt Ltd', '', '', '', '', 'http://www.yaskawaindia.in/', '', '', 'Customer', '', '', 0, '', '998314', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-29', '29AAACY4408P1ZR', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (198, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Aavaas', '9916998681', '', '', '', 'http://aavaas.co.in/', '', '', 'Customer', '', 'REAL ESTATE', 0, '5000', '998314', '#83, Eshwar layout Near RBI layout JP Nagar 7th phase', '#83, Eshwar layout Near RBI layout JP Nagar 7th phase', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', '', 'Mahesh Reddy', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-08-17', 'NO', 'maheshreddy@aavaas.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (203, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Broadfield HR Soloutions Pvt Ltd', ' 9632328167', '', '', '', 'http://www.broadfieldhrsolutions.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte', 'No.37,Shop No.3,Chunchgatta Main Rd, Srinidhi Layout, near Rajanandini Hospital,8th, New Bank Colony, 8th Phase, Konanakunte', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Manikanta', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-16', '29AAFCB8099Q1ZK', 'broadfieldhrsolutions@gmail.com / info@broadfieldhrsolutions.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (204, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Service Force Tech Solutions Pvt Ltd', '9686567870', '', '', '', 'serviceforcesolutions.com', '', '', 'Customer', '', '', 0, '', '998314', 'Roopa Sathish G-1202, Mantri Tranquil Gubbalala Road Subramanyapura Post Off Kanakapura Road', 'Roopa Sathish G-1202, Mantri Tranquil Gubbalala Road Subramanyapura Post Off Kanakapura Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Roopa Satish', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-05', '', 'info@serviceforcesolutions.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (205, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sree Nandi Logistics', '7235623235', '', '', '', 'sreenandi.co.in', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'H.O:Sy.No.5,Shiddanahosalli Lakshmipura main road Near SBI Bank,Ground floor', 'H.O:Sy.No.5,Shiddanahosalli Lakshmipura main road Near SBI Bank,Ground floor', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-04', '', 'info@shreenandi.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (206, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'sri sigandur chowdeshwari jyothishyalaya', '9845153558', '', '', '', 'www.srisigandurchowdeshwarijyothishyalaya.com', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'vijaya nagar bangalore', 'vijaya nagar bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-07', 'NO', 'www.srisigandurchowdeshwarijyothishyalaya.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (207, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'DECO TEXTIL', '9845098314', '', '', '', 'www.deco-textil.com', '', '', 'Customer', '', 'TEXTILES', 0, '', '998314', 'Swan House', 'Swan House', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-06-28', '29AACFD0446K1ZG', 'salestextiles@.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (208, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Homistic Homes Infra Pvt Ltd', '9845945122', '', '', '', 'http://homistic.co.in/', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '#2737, 27th main road, 16th cross above chai point,4th floor Sector 1 HSR layout, Bangalore.', '#2737, 27th main road, 16th cross above chai point,4th floor Sector 1 HSR layout, Bangalore.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Druva Ram', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-16', '', 'info@homistics.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (210, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Oncomax Dental Clinic', '9844005202', '', '', '', 'oncomax.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'Health Tree, G5,12 Ashoka Enclave, Netaji Road, near Ashoka Theatre, Frazer Town, Bangalore', 'Health Tree, G5,12 Ashoka Enclave, Netaji Road, near Ashoka Theatre, Frazer Town, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-01-05', '', 'dr.mohammedzuhaib@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (213, 0, 0, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'General manager, CEPT', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-09-13', '29AAAGA0164NIZE', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (214, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Imarc Pest Control', '080 65 699 799 ', '', '', '', 'http://imarcpestcontrol.com/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road,', 'E 117/4 i Marc Pest Control, 22nd Cross, HSR 3rd sector, HSR Club House Road,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-11', '', 'imarcpestcontrol@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (215, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sky Indigo Management Solutions', '080 40968061 / 9880485630', '', '', '', 'http://skyindigomanagementsolutions.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', 'No.20, 1st Floor, Near Narayana P U College BOB Layout, Briged Millennium, J P Nagar 7th Phase, Bangalore-560078', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', '', 'Sukesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-13', '29FOMPS8061A1ZI', 'skyindigomgt@gmail.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (216, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Marries Food Factory', '9901960170', '', '', '', 'marriesfoodfactory.com', '', '', 'Customer', '', 'FMCG', 0, '4500', '998314', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021.', 'No.245,2nd cross,8th main Prakash nagar Bangalore 560021.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560021', '560021', 'India', 'India', '', 'Gowmathi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-12-18', '29BZOPP3235L1ZO', 'marriesmalt@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-01-19', '', '', '', 0, 1), (218, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Radion Dental Equipments Pvt Ltd', '8023221400', '', '', '', 'http://www.radions.in/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout,', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', ' 560096', ' 560096', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-08', '29AAICR0267P1ZP', 'info@radions.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-12', '', '', '', 0, 1), (219, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Footline India', '08214244889/ 9448721138', '', '', '', 'www.footlineindia.com', '', '', 'Customer', '', '', 0, '', '998314', '#123B, Next to OBC Bank, D. Devaraj Urs Road Cross, Dewan’s Road,', '#123B, Next to OBC Bank, D. Devaraj Urs Road Cross, Dewan’s Road,', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Website not required', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-12-27', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (230, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dental Surgery Centre', '9844016274', '', '', '', 'http://drvkdental.com/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'No. 302, V.K.,PLAZA 100 Feet, Ring Road BANASHANKARI 3RD STAGE,7TH BLOCK,4TH PHASE,NEAR DEVEGOWDA PETROL PUMP, Banashankari 3rd Stage,', 'No. 302, V.K.,PLAZA 100 Feet, Ring Road BANASHANKARI 3RD STAGE,7TH BLOCK,4TH PHASE,NEAR DEVEGOWDA PETROL PUMP, Banashankari 3rd Stage,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-05', '', 'iamveeru@gmail.com,dentalsurgerycentre@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-10', '', '', '', 0, 1), (231, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Elite Residencies', '9663666629', '', '', '', 'eliteresidencies.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-10', '29APMPJ0355A1Z5', ' info@eliteresidencies.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-10', '', '', '', 0, 1), (232, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Apparel & Leather Techniques Pvt Ltd', '9448396874', '', '08041169852 ', '', 'www.altltd.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '6000', '998314', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post', 'Kaikondanahalli, Sarjapur Road, Near Bellandur Gate,Carmelram Post', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Both Hosting and Domain are with Client.\r\n', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-11', '29AABCA1730B2ZB', 'service@altltd.com/finace@altltd.com/mk@altltd.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-07-29', '', '', '', 0, 1), (235, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Indian Society of Professional Social Works', '9663808626', '', '080-2699570', '', 'www.ispsw.in', '', '', 'Customer', '', 'NGO', 0, '', '998314', 'Department of Psychiatric Social Work,NIMHANS', 'Department of Psychiatric Social Work,NIMHANS', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-24', '', 'gensecretary@ispsw.in/ ispsw1970@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-19', '', '', '', 0, 1), (237, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Jyesta Constructions', '9738404534', '', '', '', 'http://jyestaconstructions.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Yashas', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-27', 'NO', 'info@jyestaconstructions.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-26', '', '', '', 0, 1), (238, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'New IT Solution', '8048900803', '', '', '', 'www.newitsolution.in', '', '', 'Customer', '', '', 0, '', '998314', '#944, ground floor,42nd cross,3rd block, Rajajinagar', '#944, ground floor,42nd cross,3rd block, Rajajinagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-01-17', '29AGWPA5095K1ZN', 'shobhashekar@newitsolution.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (239, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'SRS Associates', '9535789396', '', '', '', 'http://notaryestampservices.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#548, 7th main, Vijayanagar, Near Food World, Bangalore-560040.', '#548, 7th main, Vijayanagar, Near Food World, Bangalore-560040.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', 'NO', 'notaryestamp@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (242, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Amber Home', '9880521885', '', '', '', 'http://amberhome.co/', '', '', 'Customer', '', 'TEXTILES', 0, '5000', '998314', 'No.62, 19th Main, 1st Block, Rajajinagar', 'No.62, 19th Main, 1st Block, Rajajinagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Hosting is Jayblues Hosting. Domain is with Client.', 'Kuldeep', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-01-20', '29ABEFA1847N1Z2', 'kuldeepthh@yahoo.com', 'Client Side', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (243, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Ani technologies pvt ltd', '8880428245', '', '', '', 'https://www.availfinance.in', '', '', 'Customer', '', 'BANKING', 0, '6500', '998314', 'Goddard Technical Solutions Private Ltd, Auro Center, No.13/63, Kormangala Industrial Layout, ', 'Goddard Technical Solutions Private Ltd, Auro Center, No.13/63, Kormangala Industrial Layout, ', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560095', '560095', 'INDIA', 'INDIA', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-01-22', '29AAGCG6213L1ZC', 'care@availfinance.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (247, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Zepnur', '9663049056', '', '', '', 'zepnur.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'Level 4, No. 305, Anand Onyx 5th Cross, 100 Feet Ring Rd, ter Ring Road, 5th Phase, J. P. Nagar, ', 'Level 4, No. 305, Anand Onyx 5th Cross, 100 Feet Ring Rd, ter Ring Road, 5th Phase, J. P. Nagar, ', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560078', '560078', 'India', 'India', '', 'Parvathi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-01-27', '29AABCZ1663J1ZY', 'info@zepnur.com / paro.rk@zepnur.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 24, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (254, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Veera Panel Boards', '9739967307', '', '', '', 'http://veerapanelboards.com', '', '', 'Customer', '', '', 0, '', '998314', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', 'M/s.VEERA PANEL BOARDS, No.17,7th Main, Bank Of Baroda Colony, Millenium Road,J.P.Nagar 7th Phase, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-26', '29ARFPE6881N1J', 'veerapanelboards@gmail.com/sales@veerapanelboards.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (256, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dsign experts', '8296446919', '', '', 'Corbello group', 'http://dsignexperts.com/', '', '', 'Customer', '', 'OTHERS', 0, '', '998314', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Corbello group name is replaced by dsign experts\r\nZOHO mail Id given (5)------ Interior', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-11-27', '', 'ceo@corbelogroup.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (259, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Capital Star', '9513737401', '', '', '', '', '', '', 'Customer', '', 'INSURANCE', 0, '', '998314', 'No. 13/2, 4th cross,Nagappa Street, Palace Guttahalli,', 'No. 13/2, 4th cross,Nagappa Street, Palace Guttahalli,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', 'NO', 'shashank@capitalstar.com.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (260, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Biosite India Pvt Ltd', '9798999911', '', '', '', 'http://biositeindia.com/', '', '', 'Customer', '', 'SCIENCE AND TECHNOLOGY', 0, '', '998314', 'jp nagar 7th phase', 'jp nagar 7th phase', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Both Hosting and domain are with Client.', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-19', '06AAGCB15921ZQ', ' priya.ranjan@maxbiosite.com', '', '', 0, 80, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (263, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Mia Casa', '9900000945', '', '', '', 'www.miacasaelc.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West,', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-14', '', 'info@miacasaelc.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-02-14', '', '', '', 0, 1), (264, 0, 0, 0, 2053, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Dental Diagnostic Centre', '98450 23661 ', '', '', '', 'www.dentaldiagnosticcentre.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#6, ', '#6, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Dr. Jaikrishna', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-23', 'NO', 'info@dentaldiagnosticcentre.org / dentaldiagnosticcentre@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (265, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'JSH Facility Solutions', '9945758576', '', '', '', 'jshfacility.com', '', '', 'Customer', '', 'OTHERS', 0, '', '998314', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Both hosting and Domain are provided by Jayblues.', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-14', '', ' jagadeesha.jsh23@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-02-01', '', '', '', 0, 1), (267, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Kooldair Systems Pvt Ltd', '7022025001', '', '', '', 'kooldairsystems.com', '', '', 'Customer', '', 'OTHERS', 0, '', '998314', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-22', '29AAGCK9901R1ZN', 'info@kooldairsystems.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-02-22', '', '', '', 0, 1), (269, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Kempegowda Build mart', '080-23586611', '', '', '', 'www.kempegowdabuildmart.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa', '#49/5, Magadi Main Road, Sunkadakatte, Opp. Muddanna Kalyanamantapa', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-21', '29AARFK1722G1Z6', 'info@kempegowdabuildmart.com / kgbma2z@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (271, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Goddard Technical Solutions Private Limited/ Avail Finance', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-26', '29AAGCG6213L1ZC', 'goddard.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (272, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Bangalore Headlines', '', '', '', '', '', '', '', '', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-26', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (278, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Veerabhadrakaliastrology Astrologer', '044 7459454435 ', 'Headquarters', '', '', 'veerabhadrakaliastrologycentre.com', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'Unit No: 20, Hadson 432, W2 1EG ( opposite ESSO petrol Station )(5,010.66 mi) London, United Kingdom', 'Unit No: 20, Hadson 432, W2 1EG ( opposite ESSO petrol Station )(5,010.66 mi) London, United Kingdom', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'USA', 'USA', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-03-06', '', 'sriveerabhadrakali@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (279, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Poornaprajna International School', '9900014341 / 7022167555 ', '', '', '', 'www.paripoornaprajnainternationalschool.org', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore,', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '8550852666', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-03-09', '', 'poornaprajna149@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (280, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Rainbow decorators', '9980741046', '', '', '', 'http://www.bangalorepainter.com/index.html', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '#30, Langford Road, 3rd Cross, ShanthiNagar Near Nanjappa Circle, BANGALORE', '#30, Langford Road, 3rd Cross, ShanthiNagar Near Nanjappa Circle, BANGALORE', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-03-08', '29ARNPP9778L1ZE', 'psurya911@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (286, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Make my documents', '9731579731', '', '', '', 'makemydocuments.com', '', '', 'Customer', '', '', 0, '', '998314', 'No 334 2nd Main Dattatreya Nagar Hosakerehalli Bsk 3rd Stage', 'No 334 2nd Main Dattatreya Nagar Hosakerehalli Bsk 3rd Stage', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'support@makemydocuments.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (288, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Educate Overseas', '080-49757005 ', '', '', '', 'http://segeroverseas.com/', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#60, 18th Main, 22nd Cross HSR Layout, Bangalore - 560102', '#60, 18th Main, 22nd Cross HSR Layout, Bangalore - 560102', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-03-23', 'NO', 'info@segeroverseas.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (292, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Nelivigi Dental Clinic', '8123803803', '', '', '', 'http://www.nelivigidentalclinic.com/', '', '', 'Customer', '', '', 0, '', '998314', 'No. 450/435/10, Infront Of Vijaya Bank Opp. Bangalore Central Mall, ORR Bellandur Circle, Bengaluru', 'No. 450/435/10, Infront Of Vijaya Bank Opp. Bangalore Central Mall, ORR Bellandur Circle, Bengaluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'nelivigidentalclinic@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (293, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Bhaskar', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (294, 0, 0, 0, 2057, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Krishnapriya Handlooms', '9886272548 /9986211449', '', '', '', 'krishnapriya.co', '', '', 'Customer', '', '', 0, '', '998314', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069', '#104/B, 26th main, 38th cross, jayanagar 9th block ,Bangalore-560069', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-27', '29ACKPN8890R1Z7', 'anuradhanair16@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 24, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (295, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Catabill', '9845477190', '', '', '', 'www.catabill.com', '', '', 'Customer', '', '', 0, '', '998314', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, ', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-25', '', 'kudlur.ramkumar@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (297, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Ess and Ess infrastructure pvt ltd', '9686665703', '', '', '', 'www.essandess.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '998314', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-23', 'NO', 'info@essandess.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (298, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Trupthi dental care', '9108981909', '', '9886143736', '', 'www.trupthidental.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040.', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-25', '', 'tlfo@truthidental.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2020-04-25', '', '', '', 0, 1), (304, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'KISA', '080-26421964', '', '', '', 'www.kisa.org.in', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#1, 100 feet ring road, Hoskerehalli, Banashankari 3rd stage,', '#1, 100 feet ring road, Hoskerehalli, Banashankari 3rd stage,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-28', '', 'infoonkisa@gmail.com /contactonkisa@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (305, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Truecon Enterprises', '9986392769', '', '', '', 'truecon.in', '', '', 'Customer', '', 'AUTOMOBILES', 0, '3000', '998314', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-11', '29CKHPP9108B1Z1', 'trueconent@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-04-11', '', '', '', 0, 1), (307, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'SRMG STONE PRIVATE LIMITED', '9740645371', '', '', '', 'www.srmg.in', '', '', 'Customer', '', 'MANUFACTURING', 0, '3000', '998314', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E mail ID Provided\r\n', 'Mosim', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29ABCCS4865R1ZC', 'srmarbleandgranite@gmail.com /info@srmg.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-05-19', '', '', '', 0, 1), (308, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Charunya Design Tech', '9980633005', '', '', '', 'www.charunyadesigntech.com', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '4000', '998314', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage', '#38, ’Katari Kunj’ 2nd Floor, Above SVC Bank,1st main, 9th Cross, Hampinagar, Vijayanagar 2nd stage', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-18', '29BFCPR6408F3Z9', 'charunya.design.tech@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (309, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Rika Innovations', '9740671610', '', '', '', 'http://rikainnovations.in', '', '', 'Customer', '', '', 0, '', '998314', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar', 'No 107, 60ft, Main Road,\' A\' Block Krishna Garden, Rajarajeshwari Nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-24', '29ATFPK1482J1ZE', 'virurusatish@rikainnovations.in /kamat@rikainnovations.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (310, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'American Smiles', '9663304961', '', '', 'Dr Jagadeesh Dental Clini', 'http://americansmiles.in/', '', '', 'Customer', '', 'HEALTHCARE', 0, '6000', '998314', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, ', '# 10/3 2055, Kaikondrahalli, Opp Fire Station, Sarjapura Main Road, Carmelaram Post, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Dr. Niveditha', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-18', '29ABHFM0708R1ZP', 'americansmiles01@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2022-02-19', '', '', '', 0, 1), (311, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Anamiivaa', '9845666949', '', '', '', 'http://anamiivaa.com/', '', '', 'Customer', '', 'NGO', 0, '5000', '998314', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout,', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Domain from Client Side\r\n', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-18', 'NO', 'pradeep.darwin@orivent.com,pradeepdarwin.pd@gmail.com', 'Client Side', 'Jayblues Hosting', 0, 20, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (312, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'K P Interiors', '9740651299', '', '', '', 'kpinteriors.co', '', '', '', '', 'INFRASTRUCTURE', 0, '4000', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-25', '', 'kprinteriorsbglr@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (314, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Aruna Cadd printers', '9880233163', '', '', '', 'arunacaddprinters.in', '', '', 'Customer', '', 'SERVICES', 0, '5000', '998314', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Madhushree', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-19', '29ABLFA0922B1ZU', 'arunasw24@gmail.com', '', '', 0, 36, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (318, 0, 0, 0, 1961, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Redstone Retreat', ' 77609 84600', '', '', '', 'http://www.redstoneretreat.com/', '', '', 'Customer', '', '', 0, '', '998314', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu ', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu ', '0', '', '0', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-29', '', 'ajish.rajan@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (320, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Moment Design and Detailing', '9742875958', '', '', '', 'www.momentdesigndetailing.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '#3, 1ST CROSS ,MARANNA LAYOUT,DODDABIDRAKALLU , BANGALORE-560072', '#3, 1ST CROSS ,MARANNA LAYOUT,DODDABIDRAKALLU , BANGALORE-560072', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-28', '', 'info@momentdesigndetailing.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (324, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'JayMining and waterwell solutions', '08023217131 ', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-08', '29AAMFJ3867C1Z2', 'blr@jaymining.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (327, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Pri co working hub', '7406565065/080-43751566', '', '', '', 'pricoworks.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', '#883, 2nd floor, \'Chinmayee Arcade\' 10th Cross, opp to big bazaar, RBI Layout, JP Nagar 7th Phase, Bengaluru', '#883, 2nd floor, \'Chinmayee Arcade\' 10th Cross, opp to big bazaar, RBI Layout, JP Nagar 7th Phase, Bengaluru', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '8618568572-latest mobile number', 'Vishnu', 'CEO', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-27', 'NO', ' info@pricoworks.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (328, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Manukula Charitable and Educational Trust', '9663665658', '', '', '', 'manukulatrust.org', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-03', 'NO', 'manukula.org@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (332, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'VidyaJyothi Foundation', '9886416800', '', '', '', 'vidyajyothifoundation.org', '', '', 'Customer', '', 'NGO', 0, '', '998314', '#20, 1st Cross, KEB Road, Anjananagara, Magadi Main Road, Bangaluru -91', '#20, 1st Cross, KEB Road, Anjananagara, Magadi Main Road, Bangaluru -91', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-06-30', '', ' vidyajyothifoundation.org@gmail.com', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (337, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Shrihari and associates', '9482789753', '', '', '', 'shriharinassociates.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'No. 91, 3rd Main, Rajathadri Layout, Kothanur Dinne, JP Nagar 8th Phase, Bangalore', 'No. 91, 3rd Main, Rajathadri Layout, Kothanur Dinne, JP Nagar 8th Phase, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-29', 'NO', 'shriharinh@shriharinassociates.com / gkbhat.20161@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (338, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Mrigneha Fashion Elegant', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-31', '', 'mrigneha.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (339, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'A&M Edu Solution', '9686656655', '', '', '', 'aandmedu.in', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '5000', '998314', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003', 'Mangalore', '', 'Mangalore', 'Karnataka', 'Karnataka', '575003', '575003', 'India', 'India', '', 'Abhishek', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-11', '29ABIFA3355MIZI', 'abhishek@aandmedu.in', '', '', 0, 1, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (340, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Roopesh', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', '0', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'roopesh.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (342, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'xyramsoft', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', '0', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-24', '', 'xyramsoft', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (358, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'aswini agrotech', '8212970276', '', '', '', 'www.aswiniagrotech.com', '', '', 'Customer', '', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '6000', '998314', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429', 'Mandya', '', 'Mandya', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-23', '29ACIPS8466L1ZK', 'aswiniagro@gmail.com,officeaswiniagro@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-14 12:17:00', '0000-00-00', 'Account', '', '', 'YES', '2021-08-27', '', '', '', 0, 1), (364, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Ranga Bashyam', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2015-01-11', '', 'rangabashyam.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (373, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Samarthanam trust for disabled', '9480809586', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-02-15', '', 'info@samarthanam.org', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (383, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Smile Dental Care', '9739737319', '', '', '', 'smiledentalcaremysuru.com', '', '', 'Customer', '', '', 0, '', '998314', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar', '#42/A, Sri Ranga Complex, Vishwamanava Double Road, Opp. Nalpak Hotel, Kuvempunagar', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-03-21', 'NO', 'goodteeth@in.yahoo.com', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (384, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Pragathi Logistics', '7337831954', '', '', '', 'www.pragathilogistic.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#78F, Hootagalli Industrial Area Opp Rane Madras, Mysore', '#78F, Hootagalli Industrial Area Opp Rane Madras, Mysore', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-05-12', '29APGPM5857A1ZR', 'pragathilogisticsmys@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1); INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (387, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Home credit India Pvt Ltd', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Gurgaon', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'HomecreditIndia.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (389, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Sudha', '9111111111', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Chikmagalur', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'drsudha@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (391, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'khincha dental centre', '9845017040 ', '', '', '', 'http://www.khinchadentalcentre.com/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004.', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004.', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '560 004.', '560 004.', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-20', '', 'kdcaashirwad@hotmail.com', '', '', 0, 36, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (392, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Trust Dental Corporation', '080-26622721 ', '', '', '', 'http://trustdentalindia.com', '', '', 'Customer', '', '', 0, '', '998314', '#5, Puttanna Cross, DVG Road, Basavanagudi,', '#5, Puttanna Cross, DVG Road, Basavanagudi,', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-06', '29ACSPA2627F1ZM', 'trustdental@rediffmail.com', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (393, 0, 0, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Kumar G P', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-20', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (394, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Shesha Prasad', '9980056305', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-20', '', '9980056305', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (395, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'DR JaiKrishna', '9845023661', '', '', '', '', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#293, 19th Main , 6th Block, Koramangala', '#293, 19th Main , 6th Block, Koramangala', 'Bengaluru', '', 'Bengaluru', '', '', '560095', '560095', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-04-26', '29ACPPJ6634A1ZJ', 'dentaldiagnosticcentre@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (397, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr karthik Shetty', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-05-07', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (398, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Chirtra Happy Garden', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-23', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (403, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Shivkam Services', '8041244881', '', '', '', 'http://www.aapkijori.com/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'SHIVKAM ServicesJP Nagar 5th Phase Bangalore-560078', 'SHIVKAM ServicesJP Nagar 5th Phase Bangalore-560078', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-05-31', '', 'wednearby@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (408, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Heritage World', '', '', '', '', 'www.heritageworld.in', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-06', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (410, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Views and News', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mysore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-06-03', '', 'viewsandnews.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (411, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Dr Anjum Nazia', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-03', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (414, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Proven mantra technologies pvt ltd', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-08', '', 'provenmantra.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (419, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'SS Technologies', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-27', '', 'sstechnologies.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (426, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Radion Equipments Pvt Ltd', '8431022949', '', '', '', 'radions.in', '', '', 'Customer', '', '', 0, '', '998314', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Praveen', '80 28379911', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAICR0267P1ZP', 'naikpraveen1978@gmail.com / info@radions.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 193, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'YES', '2021-12-12', '', '', '', 0, 1), (428, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Shubhodaya Old age home', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-14', '', 'shubhodayaoldagehome.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (429, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Aramane Motte', '', '', '', '', 'http://aramanemotte.com', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '6000', '998314', '', '', 'Madikeri', '', 'Madikeri', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-11-21', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 159, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (433, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Jude', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-12-02', '', 'jude.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (435, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Service Hub', '080 - 42030278', '', '', '', 'servicehub.net.in', '', '', 'Customer', '', '', 0, '', '998314', '#23/1, R.V. Road, Basavangudi, Bangalore', '#23/1, R.V. Road, Basavangudi, Bangalore', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-25', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (436, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Surya Woods', '0821- 2542407 ', '', '', '', 'www.suryawoods.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Domain has to be renewed by there own account', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-12-24', '29ABOPE5514E1ZQ', 'suryawoods95@gmail.com', '', '', 0, 36, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (437, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Intellivisp', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-09-20', '', 'Intellivisp.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (440, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Technology and Software development centre', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Tumkur', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-12-12', '', 'technologyandsoftwaredevelopmentcentre.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (441, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Millionaire Digital Minds', '6581312189', '', '', '', 'millionairedigitalmind.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-12-17', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (445, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Yashas Dental Health Care', '9036046305', '', '', '', 'www.yashasdentalhealthcare.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041.', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041.', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Dr. Sheshaprasad', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2016-07-14', '', 'yashasdentalcare@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (449, 0, 0, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Ginserv', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-09', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (451, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Alpha Human Capital', '6534804812', '', '', '', 'www.appleadvertising.in', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', ' Maliha Road,Industrial Area 15,Sharjah, U.A.E.P.O.Box: 96990', ' Maliha Road,Industrial Area 15,Sharjah, U.A.E.P.O.Box: 96990', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-05-19', '', 'alphahuman@alpha.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (452, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'NGO Samratis', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-17', '', 'NGOSamratis.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (456, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Tilak Textiles', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-01-17', '', 'tilaktextiles.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (458, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'MVG Bakery', '08232400329', '', '', '', 'http://mvgsweets.in', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', 'MVG Bakery, VV Road, Mandya.', 'MVG Bakery, VV Road, Mandya.', 'Mandya', '', 'Mandya', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-20', '29ACGPV6323H1Z8', 'mvgbakery@gmail.com', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (459, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Pest control Mohammed', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-03', '', 'pestcontrolmohammed.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (460, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Purpule Yo Narayan Swamy', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-02-08', '', 'purpleyo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (464, 0, 0, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Rajiv Dental Care Centre', '08026600256', '', '', '', 'rajivdental.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar,', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar,', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'srinidhi', 'Doctor', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-10', 'NO', 'rajivdental@yahoo.co.in / d.srinidhi@hotmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (465, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'SH Tile box', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-02', '', 'shtilebox.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (466, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Phogan', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-17', '', 'phogan.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (467, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Sonal', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bengaluru', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-07', '', 'sonal.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (469, 0, 0, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Hi-Tec Tyres', '', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Mangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-10', '', '', '', '', 0, 1, '2018-07-16 15:56:10', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (477, 1, 1, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'FightDepressionin2steps', '96329 32534', 'Headquarters', '', '', 'www.fightdepressionin2steps.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'G r sun villas No. 82 nimbekaipura road, bommenahalli, Bangalore 560049, I', 'G r sun villas No. 82 nimbekaipura road, bommenahalli, Bangalore 560049, I', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560049,', '560049,', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-04-03', '', '', '', '', 1, 1, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (479, 0, 0, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Prakash Paints', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2017-03-17', '', 'prakashpaints.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (480, 1, 1, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'vishwanath', '9901176308', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'JP Nagar', 'JP Nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '1970-01-01', 'NO', 'mailvishwan@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (481, 1, 1, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Global Elite Spa', '9632391555', '', '', '', 'http://www.ecobeautyspa.com', '', '', 'Customer', '', '', 0, '', '998314', 'BTM Layout', 'BTM Layout', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Logo design', 'Murthy', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-07-19', 'NO', 'globalelite63@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (482, 1, 1, 0, 0, 482, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'RP Printers', '9739399051', '', '', '', 'http://stutts.in/', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560078', '560078', 'India', 'India', 'Static website\r\n', 'Guru prasad', 'owner', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-07-13', '29CDCPG5643JIZD', 'printneedzblr@gmail.com; prasad.gurusn@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (483, 1, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Namma Foundation', '7338215777', '', '', '', 'www.nammafoundation.org', '', '', 'Customer', '', '', 0, '', '998314', '#378,38th cross,26th Main,6th Block ,Jaynagar', '#378,38th cross,26th Main,6th Block ,Jaynagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic website', 'shanmuga k', 'Founder', 'ACTIVE', '0000-00-00', '2019-05-17', '2018-07-04', '29ANMPK3809N1ZC', 'nakshatra5335@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (485, 1, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Proveraxius', '9901176308', '', '', '', 'www.proveraxius.com', '', '', 'Customer', 'Proprietor', 'EDUCATION AND TRAINING', 0, '5000', '998314', 'Flat no 103 site no 03shravanthi reffle apartment.16th cross 6th phase JP nagara', 'Flat no 103 site no 03shravanthi reffle apartment.16th cross 6th phase JP nagara', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', '', 'Vishwanath', 'ow', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-07-22', '', 'vishwa@proveraxius.com', '', '', 1, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (486, 1, 1, 0, 0, 0, '', '21', 'INACTIVE', '', '', '', '', '', '', '', 'Classic transport solutions', '9008769689', '', '', '', 'WWW.clasictrnsport.in', '', '', 'Customer', 'Proprietor', 'TOURISM AND HOSPITALITY', 5, '5000', '998314', '#15 2ndcross beside Mondavi motors industrial area n s palya Bangalore', '#15 2ndcross beside Mondavi motors industrial area n s palya Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560076', '560001', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-07-22', '', 'WWW.clasictrnsport.in', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (487, 1, 1, 0, 0, 487, '', '20', 'Active', '', '', '', '', '', '', '', 'JSS Hospital', '9449060988', '', '08212335555', '', 'www.jsshospital.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '570004', '570004', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-05-25', '', 'sadananda.hp@jsshospital.in,cao@jsshospital.in,director@jsshospital.in', 'Client Side', 'Client Side', 1, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (488, 1, 1, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'G V IMPORTS & INFRA', '9620899777', '', '', '', 'www.gvimportsinfra.com', '', '', 'Customer', '', 'GEMS AND JEWELLERY', 0, '5000', '998314', '#atom sports gottigere Bannerghatta main road ', '#atom sports gottigere Bannerghatta main road ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560001', '560001', 'India', 'India', 'Static website', 'Sandeep G V', 'Owner', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-08-01', '29CIEPS1924B1ZD', 'gvimportsinfra@gmail.com', '', '', 1, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (490, 1, 1, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'AADHYA DEVELOPERS ', '9677303143', '', '', '', 'aadhyadevelopers.co', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', '#129 balaji nilaya 4th cross seegehalli main road kr Puram ', '#129 balaji nilaya 4th cross seegehalli main road kr Puram ', 'Bengaluru', '', 'Bengaluru', 'karnataka', 'karnataka', '560049', '560049', 'India', 'India', 'Static website', 'sumanth', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-08-07', '29ABMFA5935FIZ6', 'aadhyadevelopers5@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (491, 1, 1, 0, 0, 0, '', '36', 'Acquired', '', '', '', '', '', '', '', 'Royale electronics', '9880411995', '', '9880721995', '', 'royaleelectronics.in', '', '', 'Customer', '', 'ENGINEERING AND CAPITAL GOODS', 0, '5000', '998314', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi', 'Bengaluru', '', 'Bengaluru', 'karnataka', 'karnataka', '560004', '560004', 'India', 'India', 'Dynamic website', 'Raguveer', 'Founder', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-08-08', '29AADFR6653F1ZZ', 'royaleelectronics1995@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-08-05', '', '', '', 0, 1), (493, 1, 1, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Eco Travells', '9886610005', '', '', '', 'ecotravelsind.com', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '5,000', '998314', '#266 5th main 34th A cross 4th block jayanagara', '#266 5th main 34th A cross 4th block jayanagara', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560041', '560041', 'India', 'India', 'static website', 'Dhananjay', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-08-20', '', 'dhananjayam.ecotravels@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-08-22', '', '', '', 0, 1), (496, 1, 1, 12, 0, 0, '', '20', '', '', '', '', '', '', '', 'Mr.', 'Navin', '', '', '', '', '', '', '', '', '', '', 0, '21500', '', '', '', '', '', '', '', '', '', '', '', '', 'Server Renewal .', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (497, 36, 57, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'RP Prints', '9739399051', '', '', '', '', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore', '2/8, Om Shakthi Temple main road,Yelachenahalli,Kandkapura road,bangalore', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560078', '560078', 'India', 'India', 'static website', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-01', '29CDCPG5643JIZD', 'printneedzblr@gmail.com; prasad.gurusn@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (507, 36, 57, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'pankajsiracademy', '9632882052', '', '', '', 'https://pankajsiracademy.com/', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', 'Krishna Reddy Arcade, 2nd floor Above Wok with Chung, Opp Aayug Hospital, Next To Biryani Hydrabad, Varthur Main Road, Near Spice Garden, Munnekolala, Marathahalli ', 'Krishna Reddy Arcade, 2nd floor Above Wok with Chung, Opp Aayug Hospital, Next To Biryani Hydrabad, Varthur Main Road, Near Spice Garden, Munnekolala, Marathahalli ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560037', '560037', 'India', 'India', 'Redesign of website - Dynamic', 'Pankaj', 'Proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-08-09', '', 'mutha.pankaj@gmail.com', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (508, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Vast business report pvt Ltd', '8929133539', '', '', '', 'http://www.vbrpl.com/', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'kormangala , 4th Block', 'kormangala , 4th Block', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static website of 5 pages and Logo', 'Radhe', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-11', '', '', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (510, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Police investigation Newspaper', '7019757349 / 7899284757', '', '', '', 'www.policeinvestigationnewspaper.com ', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', 'Rt nagar', 'Rt nagar', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', 'Dynamic website', 'Mohammed abdulla', 'Director', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-11', '', 'abdulla.bangalore16@gmail.com', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (511, 36, 57, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Brigade Bar & Restaurant', '9886052527', '', '', '', 'www.bycchancee.com', '', '', 'Customer', '', 'Food Industry', 0, '', '998314', 'MG Road', 'MG Road', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', 'Dynamic website', 'Rajanna', 'Owner', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-12', '', 'epulorestaurant@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (512, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Durvas Trading inc ', '9900015547', '', '', '', 'www.mhoney.in', '', '', 'Customer', '', 'ECOMMERCE', 0, '', '998314', 'Royal corner. 1st floor, door 1,2 flat no103, lalbagh road,', 'Royal corner. 1st floor, door 1,2 flat no103, lalbagh road,', 'Banglore', '', 'Banglore', 'Karnataka', 'Karnataka', '560027', '560027', 'India', 'India', 'E - commerce and logo', 'sathish', 'Director', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-14', '29AALFD3853B1ZH', 'durvastradinginc@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (513, 36, 57, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'CH tours & Travells', '8880606600', '', '', '', 'http://chtoursandtravels.com/', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '998314', '#753 near ganesha temple konanakunte kanakpura main road ', '#753 near ganesha temple konanakunte kanakpura main road ', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560062', '560062', 'India', 'India', 'Tours and travells', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '1970-01-01', '', 'lrajesh.6600@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (514, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Color Studio', '8971814866', '', '', '', '', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 0, '', '998314', ' 61/1 ,10th main road ,4th block Rajajinagar,', ' 61/1 ,10th main road ,4th block Rajajinagar,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic website', 'Rajprasad', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-20', '', 'colorsstudiosindia@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (515, 36, 57, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'VISAVI FOOD VENTURES', '9900073722', '', '', '', 'http://visavifoods.com', '', '', 'Partner', '', 'Food Industry', 0, '', '998314', 'N0.372,university layout, ringroad, Mysore-570023', 'N0.372,university layout, ringroad, Mysore-570023', 'mysore', '', 'mysore', 'karnataka', 'karnataka', '570023 ', '570023 ', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '1970-01-01', '29AAOFV4850D1ZT', 'visavifoodventures@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-06-02', '', '', '', 0, 1), (516, 36, 57, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Raghudeva phychic', '9740934777', 'Headquarters', '', '', 'http://www.astrologerpanditpsychic.com/', '', '', 'Customer', '', 'Astrology', 0, '', '998314', 'Near Coconut Juice Stall, 3rd Cross Rd, Sakshi Nagar, Pai Layout, Mahadevapura,', 'Near Coconut Juice Stall, 3rd Cross Rd, Sakshi Nagar, Pai Layout, Mahadevapura,', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-02-25', '', 'panditragudeva@gmail.com', '', '', 36, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (517, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Vardhaman Textiles', '9844490234', '', '', '', 'http://www.vardhamantextiles.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '#36, rajatha complex ,D.K Lane ,chickpate cross', '#36, rajatha complex ,D.K Lane ,chickpate cross', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560053', '560053', 'India', 'India', 'Dynamic website', 'Mohin', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-25', '29ADFPCO811M1ZQ', 'Mehuljain440@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (518, 36, 57, 0, 0, 0, '', '24', 'INACTIVE', '', '', '', '', '', '', '', 'Mac Recharges', '9986350772', '', '', '', '', '', '', '', '', '', 0, '', '998314', 'sarswathipuram', 'sarswathipuram', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-09-28', '', 'macrechargessolutions@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (519, 1, 1, 18, 0, 0, '', '24', 'Active', '', '', '', '', '', '', 'Mr.', 'Intiprocure Private Limited', '9480077168', '', '', '', 'www.intiprocure.com', '', '', 'Customer', '', 'OTHERS', 0, '80000', '998314', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India.', '#390, 2nd Cross, Lakshmi Devi Nagar, Bangalore - 560096 India.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560010', '560010', 'India', 'India', 'Online bidding application', 'Ragavendra', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-03', '', 'nraghub@live.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (520, 36, 57, 0, 0, 0, '', '36', '', '', '', '', '', '', '', '', 'Yuva Sene', '8971116111', '', '', '', 'yuvasene.org', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', ' 560096', ' 560096', 'India', 'India', 'Dynamic website - 5 pages - wikipedia 2 pages (11k)', 'Pavan Gowda', 'president ', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-02', '', 'advocatemalipavangowda@gmail.com ', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-10-02', '', '', '', 0, 1), (521, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Aryan Investments', '9513395686', '', '', '', 'aryaninvestmentsandfinancial.com', '', '', '', '', 'FINANCIAL SERVICES', 0, '', '998314', 'Biddi', 'Biddi', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'India', 'India', 'Dynamic website ', 'Dhanush', 'proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-09', '', 'dhanushg175@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (522, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Manasa Garden Service', '8073782293', '', '', '', 'manasagarden.com ', '', '', 'Customer', '', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '', '998314', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore', '#554, 1st main, 2nd cross, Kamalanagar, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560079', '560079', 'India', 'India', 'Dynamic website', 'Bhanuprakash', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-13', '', 'bhanugowdasb@gmail.com', '', '', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (523, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'chickpetdonnebiryanihouse', '8073694071', '', '', '', 'http://chickpetdonnebiryanihouse.co/', '', '', 'Customer', '', 'Food Industry', 0, '', '998314', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara,', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560050', '560050', 'India', 'India', 'Static website', 'Praveen', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-17', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (524, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'BSS Facility Mangement', '9110610456', '', '', '', 'bssfacility.com ', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'Malleshwaram', 'Malleshwaram', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'static website', 'Devendra', 'Managing Director', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-24', '', 'bssfacility.blr@gmail.com / bljbalu@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2019-12-01', '', '', '', 0, 1), (525, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'KOSMIK - Refrigeration & Air Conditioning', '9535337111', '', '', '', 'www.kosmik.in', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#331/9C Raghavendra Layout, Hulimavu Main Road Bangalore 560076', '#331/9C Raghavendra Layout, Hulimavu Main Road Bangalore 560076', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560076', '560076', 'India', 'India', 'Dynamic website - payment gateway', 'Jaweed', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-10-30', '', 'kosmikblr@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (526, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'T.saifuddin & co', '8884249782', '', '', '', 'http://tsaifuddin.com', '', '', 'Customer', '', '', 0, '', '998314', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E - commerce website', 'Jumana', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-11-02', '29AADFT8885H1ZF', 'saifuddinco@hotmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-02', '', '', '', 0, 1), (527, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'INSTA BUCKS GOLD PVT KTD. ', '8610335655 / 7022336699', '', '', '', 'http://goldpayindia.com/', '', '', 'Customer', '', 'GEMS AND JEWELLERY', 0, '', '998314', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar ', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar ', 'BANGALORE', '', 'BANGALORE', 'KARNATAKA', 'KARNATAKA', '560032 ', '560032 ', 'INDIA', 'INDIA', 'DYNAMIC WEBSITE', 'Balasubramani', 'Vice president', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-11-05', '29AAECI9690R1ZD', 'vp@goldpayindia.com / seo@goldpayindia.com', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (529, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'pruthvi', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'pastry cake,online purchase and payment gateway quoted (45k - 50 k) waiting for approval on 24/09/2018\r\n', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'pruthvi.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (530, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Cake Company', '9972333287 / 9900083754', '', '', '', 'cakecompany.in', '', '', 'Customer', '', 'Food Industry', 0, '', '998314', 'Jaynagar', 'Jaynagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E _ commerce website ', 'Pruthvi gowda', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-11-05', '', 'masterprithvi100@gmail.com', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (531, 36, 57, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Aditya Dairy Farm', '9740934777', '', '', '', 'http://adityasdairyfarm.com/', '', '', 'Customer', '', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '', '998314', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Raghu dev', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-04-06', '', 'adityasdairyfarm@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (532, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'My Hindustan Travells', '9611998831', '', '', '', 'myhindustantravells.com', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '998314', 'Magadi Road', 'Magadi Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static website - 8K', 'Naveen ', 'Owner', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-11-16', '', 'naveen.4stoke@gmail.com', '', '', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (533, 24, 69, 0, 0, 0, '', '24', 'INACTIVE', '', '', '', '', '', '', '', 'JK Fashions', '7337897265', '', '', '', 'www.jkfancy.com', '', '', '', '', 'GEMS AND JEWELLERY', 0, '', '998314', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout', '35323, 2nd floor, Subashnagar, Nelamangala, Timmashettappa layout', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '562123', '562123', 'India', 'India', 'E-commerce website converted at 25000 without GST', 'Kiran Kumar', 'Proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-11-16', '', 'kirankumar06061991@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (534, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Space Designs', '9900672610', '', '', '', 'space-designs.co.in', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', ' New Bel Road', ' New Bel Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic website\r\n', 'sushan sujatha', '', 'ACTIVE', '2018-12-18', '2018-12-19', '2018-11-22', '', 'susan.sujatha@gmail.com', '', '', 36, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (535, 36, 57, 0, 0, 0, '', '36', 'Active', '28,000 ', '0', '28,000', '14,000', '', '14,000 - Balance', '', 'Spectrum Medical Publishers & Distributors ', '8073879085', '', '', '', 'http://spectrummedicalpublishers.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076', 'Galaxy Book Syndicate No.119/10, 3rd cross, Sai Enclave J.p Nagar 8th phase, Near M.S Ramaiah City, Kothanoor Main Road, Bangalore - 560076', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560076', '560076', 'India', 'India', 'E - commerce website for 28,000 ', 'Ramanand', '', 'ACTIVE', '2018-12-12', '2019-03-25', '2018-11-27', 'No gst number', 'ramanand.k1970@gmail.com/ spectrummedicalpublishers@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (536, 24, 69, 0, 0, 0, '', '24', 'Active', '44,067', '7,933', '52000', '26,000', '', '26,000 ', '', 'Blitzkrieg Audio Video Pvt Ltd', '9945152054/9611166119', '', '', '', 'blitzkriegav.com', '', '', 'Customer', '', 'MEDIA AND ENTERTAINMENT', 10, '7800', '998314', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage', '#1070, K R Square, 30th main, 15th cross, BSK 2nd stage', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560070', '560070', 'India', 'India', 'Our bangalore office neighbour wants custom website and CRM', 'Shashank', 'Managing Director', 'ACTIVE', '0000-00-00', '2019-01-31', '2018-12-06', '29AAHCB8526A1ZR', 'shashank.ks@blitzkriegav.com', 'Client Side', 'Client Side', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (537, 80, 71, 0, 0, 0, '', '80', 'Active', '14,000', '2520', '16,520', '', '', '16,520(Complete)', '', 'Cosmos Clean System', '9243122549/ 8050563339', '', '', '', 'www.cosmosclean.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560087', '560087', 'India', 'India', 'Domain Purchased by client. Dynamic Website.', 'Srinivasa reddy', 'owner', 'ACTIVE', '0000-00-00', '2018-12-21', '2018-12-07', '29AAGFC6323E1ZM', 'cosmosclean@gmail.com', 'Client Side', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (538, 80, 71, 0, 0, 0, '', '80', 'Active', '7000', '1260', '8260', '4000', '', '8000 (260rs round off)', '', 'SkyDreamzee', '9880750817', '', '', '', 'http://www.skydreamzee.in/', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', 'Near KA 41 Rto office Near upkar layout Jnanabharathi', 'Near KA 41 Rto office Near upkar layout Jnanabharathi', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560056', '560056', 'India', 'India', 'Static Website', 'Surendra Ullal', '', 'ACTIVE', '2018-12-17', '2018-12-17', '2018-12-13', '', 'skydreamzee@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (539, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '', '', '', '', '', 'Indigo Plastics', '9606099900', '', '', '', 'http://indigoplastics.com/', '', '', '', '', 'MANUFACTURING', 0, '', '998314', 'Plot No- 23, Survey No- 68, Sheegehalli, Magadi Main Road.', '', 'Bangalore', '', '', 'Karnataka', '', '560091', '', '', '', 'Logo, Visiting Card and Brochure. Later have to develop Dynamic Website', 'T.S.Rao', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-12-12', '', 'rao@indigoplastics.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (540, 80, 71, 0, 0, 0, '', '80', 'Active', '15000', '2700', '17700', '6520', '', '17700(cleared)', '', 'Sri Venu Glass', '9606119911', '', '', '', 'www.srivenuglass.com', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '998314', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank,', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560043', '560043', 'India', 'India', 'Dynamic Website. Domain purchased by client.Need to transfer the domain.( we had chared 1K + GSt extra)', 'Ranju Gowda', '', 'ACTIVE', '2019-01-21', '2019-01-29', '2018-12-17', '29ADZFS0863K1Z3', 'sales@srivenuglass.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-17', '', '', '', 0, 1); INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (541, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '', '', '', '', '', 'Nature Homecare Products', '9986889949', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '', '', '', '', '', '', '', '', '', '', '', '', 'Anand', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2018-12-17', '', 'naturehomecareproduct@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (542, 36, 57, 50, 0, 0, '', '36', 'INACTIVE', '11000', '0', '11000', '0', '0', '11,000(cleared)', 'None', 'St.Anns Public School', '9449834541', '', '', '', 'www.stannsenglishschool.in', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', 'No. 143/144/87, 100, ft ring road, Veerabhadranagar, BSK 3rd stage ', 'No. 143/144/87, 100, ft ring road, Veerabhadranagar, BSK 3rd stage ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560085', '560085', 'India', 'India', 'Dynamic Website\r\nHe din\'t do the payment,its expired....080 - 26725556', 'Narayana', 'Owner', 'ACTIVE', '2019-01-02', '2019-01-29', '2018-12-18', 'No gst number', 'stannspublic2004@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (543, 80, 71, 0, 0, 0, '', '80', 'Active', '13,000', '2340', '15340', '7500', '7840 (26/3/2019)', '15340 - Cleared', '', 'FDOT', '8951117439', '', '', '', 'www.fdotclothing.com', '', '', 'Customer', '', 'TEXTILES', 0, '', '', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027', 'BANGALORE', '', 'BANGALORE', 'KARNATAKA', 'KARNATAKA', '560027', '560027', 'INDIA', 'INDIA', 'Dynamic Website', 'Suresh Kumar', '', 'ACTIVE', '0000-00-00', '2019-03-26', '2018-12-19', '29AAEFF0091N1Z5', 'sureshsullia@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (544, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Alert Global Security Service', '9980009296', '', '', '', 'www.alertglobal.in', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114', 'Hoskote', '', 'Hoskote', 'Karnataka', 'Karnataka', '562114', '562114', 'India', 'India', 'Dynamic Website (alternative number - 9483706541) - 5 email ID\r\n2-1-2019: Purchased the Domain.', 'Srinivas V', 'Proprietor', 'ACTIVE', '2019-01-02', '2019-01-03', '2018-12-22', '', 'agssblr@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-08-19', '', '', '', 0, 1), (545, 36, 57, 0, 0, 0, '', '36', 'Active', '10000', '0', '10000', '5000', '4000', '10,000( cleared)', '', 'Guardian Care Taker', '8880030528', '', '', '', ' www.guardiancaretaker.com', '', '', 'Customer', '', 'NGO', 0, '', '998314', '48/A Xavier Layout 3rd Cross, Austin Town,', '48/A Xavier Layout 3rd Cross, Austin Town,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560047', '560047', 'India', 'India', 'Static Website - Logo Design,she doesn\'t need it.', 'Farah', 'Owner', 'ACTIVE', '2018-12-28', '2019-01-02', '2018-12-19', 'No gst number', 'farah.zaina@yahoo.in', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (546, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Jazz Antique Metals', '9108909150', '', '6384743033', '', 'www.jazzantiquemetals.com', '', '', 'Customer', '', 'SCIENCE AND TECHNOLOGY', 0, '', '998314', '13/1, 3rd main,11th cross, Koramangala 1st block', '13/1, 3rd main,11th cross, Koramangala 1st block', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560034', '560034', 'India', 'India', 'Converted in 2nd sitting. for 12k, dynamic website. 5k advance received.(Call only this number : 8148693223 Abdul Khalil)', 'Ramesh', 'Partner', 'ACTIVE', '2018-12-28', '2018-12-31', '2018-12-26', '62FGJZH2162Z1GH', 'ramesh.mtsbml@gmail.com/', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-01-06', '', '', '', 0, 1), (547, 80, 71, 0, 0, 0, '', '80', 'Active', '12,000', '0', '12,000', '6,000', '6,000', '12,000( Cleared) ', '', 'Navakruthee Enterprises', '7259988289', '', '', '', 'www.navakruthee.com', '', '', 'Customer', '', '', 0, '', '998314', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560062', '560062', 'India', 'India', 'Dynamic Website.', 'Chandrashekar', '', 'ACTIVE', '2018-12-28', '2019-01-02', '2018-12-26', '29AJJPD3161H1ZA', 'navakruthee@yahoo.in', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-19', '', '', '', 0, 1), (548, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Veshma Infratech', '9686675113', '', '', '', 'veshmainfratech.com', '', '', 'Customer', '', 'INFRASTRUCTURE', 570023, '5900', '998314', '#130, 6th cross, 4th main road, BHCS Layout, Padmanabha nagar, bangalore-560061 ', '#130, 6th cross, 4th main road, BHCS Layout, Padmanabha nagar, bangalore-560061 ', 'Bangalore', '', 'Bangalore', 'KARNATAKA', 'KARNATAKA', '560061', '560061', 'India', 'India', 'Dynamic Website.', 'Lt. Col. Srinivas M N (Retd)', '', 'ACTIVE', '2019-01-02', '0000-00-00', '2019-01-02', 'Yet to give', 'murundisrini@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (550, 36, 57, 0, 0, 0, '', '36', 'Active', '5000', '900', '5900', '2000', '', '5900(cleared)', '', 'Steel Man Security Force', '9739646503/9591096556', '', '', '', 'www.steelmansecurityforce.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli.', '#18,1st main,2nd cross,Munisubba Reddy layout,Hongasandra,Bommanahalli.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560068', '560068', 'India', 'India', 'Static Website ', 'Shivanna', '', 'ACTIVE', '2019-01-12', '2019-02-14', '2019-01-07', '29ATEPA4430H2ZZ', 'smsforce25@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (551, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '21500', '0', '21500', '12000', '', '9500(balance)', '', 'Jus Prudens Advocates & Solicitors', '9742155499', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '', '#5, Attimabbe Road,30th main, Next to Sri hari Kalyana mantappa,Banashankari 3rd Stage.', '#5, Attimabbe Road,30th main, Next to Sri hari Kalyana mantappa,Banashankari 3rd Stage.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560085', '560085', 'India', 'India', 'Static Website', 'Meghachandra D Narasimhamurthy', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-01-09', '', 'meghachandra.dn@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (553, 36, 57, 0, 0, 0, '', '36', 'Active', '5000', '900', '5900', '3540', '', '5900( Cleared)', '', 'Branils Enterprises', '9008327295', '', '', '', 'www.branils.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78', 'L.A.Balram, 62/1, 2ndFloor, 21st \'A\' main, JPnagar 2ndPh, Next to Marenahalli Kalabhavana, Bangalore-78', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '570078', '570078', 'India', 'India', 'Static - single page website -training and workshop ', 'Ramu', '', 'ACTIVE', '2019-01-16', '2019-01-16', '2019-01-10', '29AAMFB4789M1ZI', 'lab737@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-16', '', '', '', 0, 1), (554, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Smart geo engineering services', '8880720246/ 8073608878', '', '', '', 'smartgeoengineering.com', '', '', 'Customer', '', 'IT & ITES', 0, '', '998314', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040', '#18/32, 1st main road marenahalli, Vijayanagar, Bangalore-560040', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic website - Rs.11000', 'Basavaraju M', 'Chief Consultant Geotechnical Engineer', 'ACTIVE', '2019-01-17', '2019-01-24', '2019-01-10', '29CMYPB9950LIZZ', 'smartgeoengg@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (556, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Optimetz', '9964774539', '', '', '', 'www.optimetz.com/in', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'Seshadripuram', 'Seshadripuram', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website - Domain and hosting client side - only developing', 'prakash Kumar', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-01-11', '', 'prakash@optimetz.com', 'Client Side', 'Client Side', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (557, 36, 57, 62, 0, 0, '', '36', 'Active', '15000', '0', '17700', '7500', '10200 ( 22/3/2019 )- SBI', '177000 ( Cleared )', '', 'Kou-Chan technologies Pvt Ltd', '9036008829/ 9686444895', '', '', '', 'www.kouchanindia.com', '', '', 'Customer', '', 'SERVICES', 0, '', '998314', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001', 'Kou-Chan Knowledge Convergence Pvt Ltd 205 Brigade Gardens Church Street Bangalore 560001', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560001', '560001', 'India', 'India', 'Dynamic Website', 'puneeth / bilgi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-01-11', '29AAACE7439E1ZL', 'puneeth@kouchanindia.com / bilgi@kouchanindia.com', 'Client Side', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (558, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'The giz shop pvt ltd ', '9686778254', '', '', '', 'https://thegizshop.com/', '', '', 'Customer', '', '', 0, '', '998314', 'H b r layout 3rd block', 'H b r layout 3rd block', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E-commerce Website - 21,000', 'Syed', '', 'ACTIVE', '0000-00-00', '2019-02-20', '2019-01-12', '', 'syed@thegizshop.com', 'Client Side', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (559, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Nuagefarm ', '9512505389', '', '', '', 'http://www.nuag%C3%A9farm.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', '', '', '', '', '', '', '', '', '', 'Single page website (address not given from client ) + Domain - 1200 \r\nTotal - 6200 advance-2000, Balance - 4200', 'Devendra', 'Pega Administrator @Nuagefarm ', 'ACTIVE', '2019-01-26', '2019-01-28', '2019-01-14', 'No', 'devendra.meena@outlook.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 77, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (560, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Healing Touch', '9497778756 - 7025699236', '', '', '', 'http://healingtouchsoc.com/', '', '', 'Customer', '', 'OTHERS', 0, '', '998314', 'Grace T. Napoleon G.b. lankmark apartment Nagarbhavi – Banglore', 'Grace T. Napoleon G.b. lankmark apartment Nagarbhavi – Banglore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website - Rs. 8000', 'Nepolian', '', 'ACTIVE', '2019-02-05', '2019-02-05', '2019-01-18', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (561, 36, 57, 0, 0, 0, '', '36', 'Active', '12,000', '0', '12,000', '6,000 (21/1/2019)', '6000(7/3/2019)', '12000(cleared)', '', 'Land Marq', '8660191194/7019711066', '', '', '', 'landmarq.in', '', '', '', '', '', 0, '', '', 'No: 14, 4th floor,Krishna Complex, Museum Road,Off St. Marks Road, (opp. SBI Headoffice),', 'No: 14, 4th floor,Krishna Complex, Museum Road,Off St. Marks Road, (opp. SBI Headoffice),', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560001', '560001', 'India', 'India', 'Dynamic Website - RS.12,000.00', 'Vishwa', '', 'ACTIVE', '1970-01-01', '2019-03-11', '2019-01-19', '29AAECH3760K1Z9', 'Shekar2889@gmail.com, vishwa.drd@gmail.com', 'Client Side', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (562, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Advaith Motors', '9916156775', '', '', '', 'www.royalenfieldadvaithmotors.com', '', '', 'Customer', '', 'AUTOMOBILES', 0, '', '998314', 'No. 1021, Maruthi nagar, near railway bridge munnekolala, Marathalli, p.o Bangalore-560037', 'No. 1021, Maruthi nagar, near railway bridge munnekolala, Marathalli, p.o Bangalore-560037', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website - RS.8000', 'Shivu', '', 'ACTIVE', '2019-01-31', '1970-01-01', '2019-01-19', '29AHSPB0250E1ZM', 'advaithmotors@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (563, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Actovive', '9620899777', '', '', '', '', '', '', '', '', '', 0, '', '998314', '10th Main 6th Cross Gururaja Layout Banashankari 2nd Stage Bangalore', '10th Main 6th Cross Gururaja Layout Banashankari 2nd Stage Bangalore', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560085', '560085', 'India', 'India', 'Static Website ', 'Sandeep G V', 'Owner', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-01-21', '29CIEPS1924B1ZD', 'gvimportsinfra@gmail.com', 'Client Side', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (564, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '12711', '2289', '15000', '7000', '4000 (7/2/2019)', '4000 ( Balance)', '', 'Skill Tree Academy', '7899128234', '', '', '', 'www.skilltreeacademy.com', '', '', 'Customer', '', '', 0, '', '998314', 'Sahakar Nagar ', 'Sahakar Nagar ', 'Banagalore', '', 'Banagalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website : 15K inclusive of Tax\r\nAdvance Paid : 11000 Balance : 4000\r\n\r\n', 'Manjula Naidu', '', 'ACTIVE', '0000-00-00', '2019-02-07', '2019-01-22', '', 'jayaram@neutrinossolutions.com/ manjuneutrinos@gmail.com', 'Client Side', 'Client Side', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (565, 36, 57, 0, 0, 0, '', '36', 'Active', '', '', '', '', '', '', '', 'Victory Vivin', '9916111562 - 9620850935', '', '', '', 'www.victoryvivin.com', '', '', 'Customer', '', '', 0, '', '998314', 'Uthralli', 'Uthralli', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website : Total Amount :11000\r\nAdvance paid: 5500 Balance: 5500', 'Venkatesh', '', 'ACTIVE', '2019-01-31', '1970-01-01', '2019-01-23', '29AVNPV2799K1ZB', 'venkatesha6488@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 77, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (566, 77, 61, 0, 0, 0, '', '77', 'INACTIVE', '', '', '', '', '', '', '', 'Vedic Vedant', '9818848249', '', '', '', '', '', '', '', '', 'Astrology', 0, '', '998314', 'Gurgaon', 'Gurgaon', '', '', '', '', '', '', '', 'India', 'India', 'CodeIgniter', 'Sanjay Tiwari', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-01-29', '', 'tiwari_san@rediffmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 77, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (567, 36, 57, 0, 0, 0, '', '36', 'Active', '10,000', '0', '10,000', '5000 (check) - 1/2/2019', '', '', '', 'Sunlight Cloth drying ceiling hangers industries bangalore', '9986768002', '', '', '', 'http://sunlightclothdryingceilinghangers.com/', '', '', 'Customer', '', '', 0, '', '998314', 'No. S-9, PSR Pavilion,Halleguddadahalli Main road, Hebbal, Bangalore - 560024', 'No. S-9, PSR Pavilion,Halleguddadahalli Main road, Hebbal, Bangalore - 560024', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560024', '560024', 'India', 'India', 'Static Website', 'Mahadevaswamy', '', 'ACTIVE', '0000-00-00', '2019-07-01', '2019-02-01', '29ALTPB7834M1ZB', 'mahadevswamyswamy@gmail.co', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (568, 24, 69, 0, 0, 0, '', '24', 'Active', '63,000', '11,340', '74,340', '10,000', '', '', '', 'SAP CECC', '9886130383', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', '#30/1A, MSG Complex, 1st floor, Shop no. 11, Chunchagatta cross, Yelachenahalli', '', 'Bangalore', '', '', 'Karnataka', '', '560078', '', 'India', '', 'MLM software and Zomato like application', 'Baburaj K', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-04', '29BEMPB5380R2ZO', 'k.baburaj12@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 24, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', '', 'NO', '', '', '', '', 0, 1), (569, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '20,000', '0', '20,000', '', '', '20,000', '', 'Aanya INC', '9535555996', '', '', '', 'aanyainc.in', '', '', 'Customer', '', 'TEXTILES', 0, '', '998314', 'Chamrajpet', 'Chamrajpet', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E-commerce - (complete account transfered to Client )', 'Rakesh', '', 'ACTIVE', '2019-02-05', '2019-02-07', '2019-02-02', '29ABNFA4663P1ZL', 'aanyaincblr@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (570, 36, 57, 0, 0, 0, '', '36', 'Active', '5,000', '0', '5,000', '2400', '', '2500(cleared ) 6/3/2019 ( 100 rs round up)', '', 'Vision Tutorials', '7259987101 - 9900837226', '', '', '', 'www.visiontutorials.in', '', '', 'Customer', '', '', 0, '', '998314', 'VISION TUTORIALS @ VIDYA VAIBHAV PUBLIC SCHOOL NEAR SBI BANK, MATHIKERE, BANGALORE-560054', 'VISION TUTORIALS @ VIDYA VAIBHAV PUBLIC SCHOOL NEAR SBI BANK, MATHIKERE, BANGALORE-560054', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Single page static Website', 'Soana', '', 'ACTIVE', '2019-02-08', '2019-03-06', '2019-02-03', 'No', 'soanamekali1982@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (571, 36, 57, 0, 0, 0, '', '24', 'Active', '29000', '5220', '34220', '15,000', '19220(11/3/2019)', '34220 ( Cleared )', '', 'Snoring and sleep annea clinic.', '9663304961', '', '', 'american Smiles', 'www.snoringandsleepapneacentre.com', '', '', 'Customer', '', '', 0, '', '998314', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035', '#10/3, 2055 Kaikondrahalli, 3rd floor, Above Stoner Ice Cream, Sarjapur Main Road, Bengaluru 560035', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website', 'Dr. Niveditha', 'Doctor', 'ACTIVE', '0000-00-00', '2019-03-09', '2019-02-04', '', 'kumarnivi01@gmail.com / americansmiles01@gmail.com', 'Client Side', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-12-29', '', '', '', 0, 1), (572, 36, 57, 0, 0, 0, '', '36', 'Active', '8,000', '0', '8,000', '', '', '8,000 ( full received)', '', 'Shree Chowdeshwari Travells', ' 9066682599', '', '', '', 'http://shrichowdeshwaritravel.com/', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '998314', ' Hebbal', ' Hebbal', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Pille', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-04', '', 'pilleg9@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (573, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '15,000', '0', '15,000', '7,000', '', '', '', 'Secure 360', '9845099293', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'Jayanagar', 'Jayanagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Pramod D', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-01-25', '', 'secure360.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (574, 36, 57, 0, 0, 0, '', '36', 'Active', '11000', '0', '11000', '5000', '', '6000 (Balance)', '', 'SK Infrastructure', '9986930981', '', '', '', 'skinfrastructures.co.in', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '998314', 'Malleshwaram', 'Malleshwaram', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website with LOGO', 'Anand Gowda', '', 'ACTIVE', '2019-02-05', '0000-00-00', '2019-02-05', '', 'skinfrastructure1@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (575, 36, 57, 0, 0, 0, '', '36', 'Active', '5,000', '0', '5,000', '2,500', '', '2500 (cleared)', '', 'Kracker Jack', '9742617399', '', '', '', 'krackerjack.in', '', '', 'Customer', '', '', 0, '', '998314', '#34 ,2nd floor ,jp Nagar 9th phase Bangalore 83', 'Bannergatta', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Single page static Website', 'Karuna', '', 'ACTIVE', '2019-02-12', '2019-02-20', '2019-02-06', '', 'aruna15aug@gmail.com / mskarunab@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (576, 36, 57, 0, 0, 0, '', '36', 'Active', '10,000', '0', '10,000', '5000 (cash - 8/2/2019)', '5000 (cash - 20/3/2019)', '10,000 (cleared )', '', 'National Human Rights', '9945852936', '', '9844003786', '', 'www.nationalhumanrightswt.com', '', '', 'Customer', '', 'NGO', 0, '', '998314', 'Indranagar', 'Indranagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website(domain and Hosting client side)', 'Imran Khan', 'Proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-08', 'Yet to give', 'imrankhanb037@gmail.com', 'Client Side', 'Client Side', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (577, 36, 57, 0, 0, 0, '', '36', 'Active', '5000', '900', '5900', '3000(cash - 9/2/2019)', '', '', '', 'Sri Manjunatha civil Constructions', '9945184064', '', '', '', 'www.smcconstruction.in and greenwoodconstruction.in', '', '', 'Customer', '', '', 0, '', '998314', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100', '#64/65 NO 126 Madhura Garments Behind Parapana Agrahara Bangalore 560100', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560100', '560100', 'India', 'India', 'Single page static Website', 'subramani N', '', 'ACTIVE', '2019-02-12', '0000-00-00', '2019-02-09', '29ESBPS5141D1ZP', 'subramani7823@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-02-09', '', '', '', 0, 1), (578, 36, 57, 0, 0, 0, '', '36', 'Active', '11,000', '0', '11,000', '5000(paytm) 9/2/2019', '', '6000 - (20/2/2019) amount cleared', '', 'AB Squares', '9686554646', '', '', '', 'www.absquares.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '998314', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India.', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website-Interior ', 'pradip', 'owner', 'ACTIVE', '0000-00-00', '2019-02-21', '2019-02-09', '29AAOCA7919F1Z8', 'pradipr007@gmail.com', 'Client Side', 'Client Side', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (579, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '12,000', '2,160', '14,160', '7,160 (check - 11/2/2019)', '', '', '', 'SS Properties 786', '9402084330', '', '', '', '', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '', 'Avenu road', 'Avenu road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website with 2 email ID', 'Mujeeb', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-04', '', 'mujeebulla1@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (580, 36, 57, 0, 0, 0, '', '36', 'Active', '8000', '1440', '9440', '4000(check - 13/2/2019)', '', '9440(cleared)', '', 'Koncept Kreation', '9845073159', '', '', '', '', '', '', 'Customer', '', '', 0, '', '', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560043', '560043', 'India', 'India', 'Static Website ', 'Ruksana', '', 'ACTIVE', '0000-00-00', '2019-02-22', '2019-02-13', '', ' ruksanaali@gmail.com,ruksana@konceptklothing.com', 'Client Side', 'Client Side', 0, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (581, 36, 57, 0, 0, 0, '', '36', 'Active', '7000', '0', '7000', '2000(cash - 18/2/2019)', '', '7000 ( cleared) 26/2/2019', '', 'Super shine wash', '9886657104', '', '', '', 'supershinecarwash.in', '', '', 'Customer', '', '', 0, '', '', 'No.14 ', 'No.14 ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Adiveppa', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-02-18', 'No', 'rajuakki1988@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (582, 36, 57, 0, 0, 0, '', '36', 'Active', '12,000', '2,160', '14,160', '5000( Check)', '', '9160(paid)', '', 'Pragathi Polymers', '9739995626', '', '', '', 'http://pgp.co.in', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '', '342/15, opp to satellite bus stand, bapuji nagar, mysore road', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560026', '', 'India', 'India', 'Dynamic Website', 'Vikas Jain', '', 'ACTIVE', '0000-00-00', '2019-05-13', '2018-02-19', '29AAXPV7858E1ZJ', 'pragatipolymers@gmail.com / info@pgp.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (583, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '11,000', '0', '11,000', '3000 - 21/2/2019 Balance 8000', '', '', '', 'Calieo Properties Care Taker', '9739454120', '', '', '', '', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '', ' Banashankari 6th Stage', ' Banashankari 6th Stage', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website', 'Suhas', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-21', '', 'calieo@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (584, 36, 57, 0, 0, 0, '', '36', 'Active', '6000', '0', '6000', '3000 - cash(nithin) - 21/2/2019', '', 'balance 3000(paid)', '', 'Excel Technologies', '9844045740 / 7483428621', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'Excel House\', No.463, 14th main, Bank Colony, Srinivas Nagar, B.S.K. 1st stage, Bangalore - 560050)', 'Excel House\', No.463, 14th main, Bank Colony, Srinivas Nagar, B.S.K. 1st stage, Bangalore - 560050)', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560050', '560050', 'India', 'India', 'Static Website ', 'N. Uday ', 'Owner', 'ACTIVE', '2019-05-22', '2019-05-22', '2019-02-21', '', 'excel2001@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (585, 36, 57, 0, 0, 0, '', '36', 'Active', '7000', '0', '7000', '3000 - Cash (22/2/2019)', '', '7000(cleared ) - 14/3/2019', '', 'Sadhguru puja', '9164091646', '', '', '', 'www.sadhgurupuja.com', '', '', 'Customer', '', '', 0, '', '', 'Rajarajeshwari Nagar', 'Rajarajeshwari Nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Ashwath Kumar', '', 'ACTIVE', '2019-03-05', '1970-01-01', '2019-02-22', '', 'ashwathkaipu@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (587, 36, 57, 0, 0, 0, '', '36', 'Active', '17300', '3114', '20414', '10,000 - Check(23/2/2019)', '', '10,414( Balance)', '', 'Avyukt Pharmaceuticals', '80953 09359', '', '', '', '', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021', 'Banagalore', '', 'Banagalore', 'Karnataka', 'Karnataka', ' 560021', ' 560021', 'India', 'India', 'Dynamic Website', 'Ragini', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-23', '29AJDPC699INIZK', 'avproductpromo@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (588, 36, 57, 0, 0, 0, '', '36', 'Active', '7500', '1350', '8850', '', '', '8850(check) - 22/2/2019', '', 'Turbmax', '8892130171', '', '', '', 'http://turbmax.com/', '', '', 'Customer', '', '', 0, '', '998314', 'Batrahalli near ICiC bank', 'Batrahalli near ICiC bank', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website - 5 pages ', 'Madhusudhan', '', 'ACTIVE', '0000-00-00', '2019-03-01', '2019-02-22', '', 'smadhu714@gmail.com', 'Client Side', 'Jayblues Hosting', 36, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (589, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '25000', '0', '25000', '1000 - Cash ( 23/2/2019)', '', '24000 ( Balance)', '', 'Sai Charan', '9591950122', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', 'UB City', 'UB City', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E-commerce Website', ' Charan', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-02-23', '', 'saicharancs44@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (590, 36, 57, 0, 0, 0, '', '24', 'Active', '1,50,000', '0', '1,50,000', '22500', '', '127500 (Balance)', '', 'Livsys Devices India Pvt Ltd', '9986039205', '', '', '', '', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '560 062', '560 062', 'India', 'India', '', 'Dilip Malinur Ramesh', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-02-25', '29AADCL7404P1ZZ', 'dilip@lifesys.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (591, 36, 57, 0, 0, 0, 'Decision Maker', '36', 'Active', '6500', '0', '6500', '3000 - Cash (25/2/2019)', '', '3500 -Done', '', 'Century pools', '7676771046', '', '', '', 'centurypools.in', '', '', '', '', 'Sports', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website - 5 pages', 'Puneeth shivamanth', '', 'ACTIVE', '2019-02-26', '2019-04-10', '2019-02-25', '', 'centurypoolsindia@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-02-26', '', '', '', 0, 1), (592, 36, 57, 43, 0, 0, '', '24', 'INACTIVE', '45000', '8100', '53100', '', '', '', 'Ms.', 'Sampoorna Group of Institutions', '9945503369', '', '', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '998314', ' #171/1, 4B, Chiranjeevi Rescidency, 12th A Cross Rd, 1st Phase, JP Nagar, Bengaluru, Karnataka 560078', ' #171/1, 4B, Chiranjeevi Rescidency, 12th A Cross Rd, 1st Phase, JP Nagar, Bengaluru, Karnataka 560078', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560078', '560078', 'India', 'India', 'Dynamic Website ', 'Vasantha', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-02-26', '', 'sathya.ananya@gmail.com ', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (593, 36, 57, 0, 0, 0, '', '20', 'Active', '17300', '3114', '20414', '1000 ( 25/2/2019) online payment', '7500(6/6/2019)', '19414( Balance)', '', 'Siddhi Coaching', '9880521470', '', '', '', 'http://siddhicoaching.in', '', '', 'Customer', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Ajay Vishwanath', '', 'ACTIVE', '2019-02-20', '2019-06-06', '2019-02-25', '', 'lifecoachajay14@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (594, 36, 57, 0, 0, 0, '', '36', 'Active', '45000', '0', '45000', '25000', '', '20000 (balance)', '', 'VS Ugrappa KPCC', '9742707076', '', '', '', 'www.vsugrappa.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Ballari', '', 'Ballari', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website', 'Nagaraj', '', 'ACTIVE', '2019-03-12', '2019-03-12', '2019-02-27', '', 'nagarajgowdaca79@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (595, 36, 57, 0, 1875, 0, '', '36', 'Active', '10,000 + 1000( Brocuher, VC, Id card)', '0', '10,000', '1,500 -28/2/2019 - google pay', '1,500 - 1/3/2019(cash)', '11,000 ( Cleared)', '', 'Unity Strength Associates', '9844886000', '', '', '', 'www.unitystrengthassociates.com', '', '', 'Customer', '', 'SERVICES', 0, '', '', '#04, M.N Tower Hinkal Signal above Savi Ruchi Hotel Hinkal Mysore - 570017', '#04, M.N Tower Hinkal Signal above Savi Ruchi Hotel Hinkal Mysore - 570017', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '570017', '570017', 'India', 'India', 'Static Website with Logo , Broucher, Visiting Card, Identity Card', 'Yeshwanth Gowda', '', 'ACTIVE', '2019-03-25', '0000-00-00', '2019-02-28', '', 'reply2yashboss@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (596, 36, 57, 0, 1997, 0, '', '36', 'INACTIVE', '45000', '6300', '41300', '15000', '', '', '', 'Veena Group', '9844237303', '', '', '', 'atozbangalore.com', '', '', 'Customer', '', '', 0, '', '998314', 'Basaveshwara nagar', 'Basaveshwara nagar', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'E- commerce', 'Harish', '', 'ACTIVE', '2019-03-06', '0000-00-00', '2019-03-06', '', 'harish303paapu@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (597, 1, 1, 0, 2001, 0, '', '40', 'INACTIVE', '', '', '', '', '', '', '', 'Prakruthi', '9123456789', '', '', '', '', '', '', '', '', 'MEDIA AND ENTERTAINMENT', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'prakruthi.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (598, 1, 1, 0, 0, 0, '', '36', 'Active', '40000', '0', '40000', '20,000 (cash) - 12/3/2019', '', '20,000 ( Balance)', '', 'BN Chandrappa KPCC', '9742707076', '', '', 'VS Ugrappa KPCC', '', '', '', '', '', '', 0, '', '998314', '', '', '', '', '', '', '', '', '', '', '', 'Dynamic Website (Converted for 40K but sharing the invoice share as 45K)', 'Nagaraj', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-03-12', '', 'nagarajgowdaca79@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 1, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (600, 36, 57, 0, 1962, 0, '', '36', 'Active', '14000', '2520', '16520', '9000 ( online payment - 12/3/2019)', '', '7520( online payment - 09/04/2019)', '', 'Indo Swiss Anti - Shock Limited', '9844856050', '', '', '', 'indoswissltd.com', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '998314', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103.', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', ' 572103.', ' 572103.', 'India', 'India', 'Dynamic Website ( Domain from Client side)\r\nFull payment done.', 'Yash Patel', 'proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-03-12', '29AAACI5889G1Z3', 'yash.patel@aerocisionindia.com', 'Client Side', 'Jayblues Hosting', 0, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (601, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '2,94,000', '52,920', '3,46,920', '10,000 - Online payment (16/3/2019)', '', '3,36,920 ( Balance)', '', 'Uninox', '9008812345', '', '', '', '', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', ' ERP Application alternative mail ID ---------> ( hemalatha.m@uniox.co.in / kirankumar.ts@uniox.co.in )', 'Mohammed Ali', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-03-16', '', 'mohammedali@uniox.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (602, 36, 57, 0, 91, 0, '', '36', 'Active', '15,000', '0', '15,000', '5,000 (16/3/2019) - Check', '5,000 (27/3/2019) - online pay - SBI', '5,000 ( paid )', '', 'Caremycar', '9008301698', '', '', '', 'caremycar.co.in', '', '', 'Customer', '', 'AUTOMOBILES', 0, '', '998314', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic website - payment gateway', 'Ashok', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-03-16', '', 'ashokhalesh15@gmail.com', 'Client Side', 'Jayblues Hosting', 0, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (603, 36, 57, 0, 0, 0, '', '36', 'Active', '15000', '0', '15000', '5000 - 16/3/2019( Nithin)', '5,000 - 28/3/2019 - Cash', '5,000 - Balance', '', 'Shashidhar Hebbal KPCC', '9742707076', '', '', 'VS Ugrappa KPCC', 'shashidharhebbal.com', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website', 'Lakshmi', '', 'ACTIVE', '2019-03-28', '2019-03-29', '2019-03-16', '0', 'lakshmi.bavge@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (605, 36, 57, 0, 2061, 0, '', '36', 'Active', '10,000', '0', '10,000', '5000(cash)- nithin- 19/3/2019', '', '5000- Balance', '', 'Theorangecountyspa', '9384170585', '', '', '', 'theorangecountyspa.com', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '998314', 'SN 13/16 &17, 2nd Floor,intermediate ring road, Egipura, Koramangala, near Sony world signal, Bangalore 560095. Karnataka.India', 'SN 13/16 &17, 2nd Floor,intermediate ring road, Egipura, Koramangala, near Sony world signal, Bangalore 560095. Karnataka.India', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Vinay Kumar', '', 'ACTIVE', '2019-03-21', '2019-03-25', '2019-03-19', '', 'vinaykumar@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 36, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (606, 36, 57, 0, 0, 0, '', '36', 'INACTIVE', '2500', '0', '2500', '', '', '2500(21/3/2019) Cleared', '', 'RangaNayaki Food Products', '9535207001', '', '', 'AB Square', '', '', '', 'Customer', '', '', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Logo Design (shared cdr file on 22/3/2019) ', 'Anjali Pradip', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-03-21', '', 'anjalibindu@absquares.in', 'Jayblues Godaddy', 'Jayblues Hosting', 36, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (607, 36, 57, 0, 2063, 0, '', '36', 'INACTIVE', '12000', '2160', '14160', '7000 ( Online pay- SBI ) 23/3/2019', '', 'Rs. 7160 (paid)', '', 'Think of Green', '8105133444', '', '', '', 'http://thinkofgreen.co/', '', '', 'Customer', '', '', 0, '', '998314', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static Website', 'Indradip', '', 'ACTIVE', '0000-00-00', '2019-06-17', '2019-03-23', '29ADSPD8422E2ZD', 'ithinkofgreen@gmail.com', 'Client Side', 'Client Side', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (608, 24, 69, 0, 606, 0, '', '24', 'INACTIVE', '', '', '', '', '', '', '', 'Principal', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'principal.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (609, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '10,385', '', '20650', '10325', '', '10325+2000(paid)', '', 'Yume Tools', '9108014551', '', '', '', '', '', '', 'Customer', '', 'MANUFACTURING', 0, '', '', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area', 'Shop No 41, 7th Main, 2nd Stage, Peenya Industrial Area', 'Bengaluru ', '', 'Bengaluru ', 'Karnataka', 'Karnataka', '560058', '560058', 'India', 'India', 'Static Website', 'Anitha', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-04-04', '29AAAFY2529C1ZA', 'anitha@macindia.in', 'Client Side', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (610, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '15000', '5000', '', '10000(paid)', '', 'Hanuman Astrologer', '9986857894', '', '', '', '', '', '', '', '', '', 0, '', '', 'Kengeri', '', '', '', '', '', '', '', '', '', '', 'Dynamic Website', '', '', 'ACTIVE', '2019-05-10', '2019-05-11', '2019-04-04', '', 'raagu.padagale@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (611, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '42000', '21000', '', '21000', '', 'AADI QUIPO STYLE PRIVATE LTD', '7892629425', '', '', '', 'www.aadiquipostyle.com', '', '', 'Customer', '', 'TEXTILES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'E-Commerce Website', 'Sunil', '', 'ACTIVE', '2019-08-20', '2019-08-20', '2019-04-12', '29AASCA3321K1ZD', 'aryangowda6666@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (612, 36, 57, 0, 0, 0, '', '36', 'Active', '10000', '1800', '11800', '6000 - 13/4/2019', '', '5800 - balance ', '', 'NIRVANBODHI Yoga', '8880618477', '', '', '', 'http://www.nirvanbodhi.com/', '', '', 'Customer', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Ranjeeth Kumar ', '', 'ACTIVE', '1970-01-01', '2019-06-12', '2019-04-13', '', 'ranjeetonline2008@gmail.com', 'Client Side', 'Client Side', 36, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (613, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '15000', '8000', '', '7000(paid)', '', 'Astrologer Gururaj', '9535086443', '', '', '', 'astrologergururaj.in', '', '', 'Customer', '', 'Astrology', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Dynamic Website', 'Vijay', '', 'ACTIVE', '2019-05-10', '2019-05-11', '2019-04-27', '', 'vijaydani1432@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (614, 80, 71, 0, 0, 0, '', '80', 'Active', '9000', '', '9000', '5000', '', '', '', 'Nadiger Cabs', '9354047149', '', '', '', 'Nadigercabs.com', '', '', 'Customer', '', 'SERVICES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Rishi Kapoor', '', 'ACTIVE', '2019-05-06', '1970-01-01', '2019-05-06', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (615, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '1,20,000', '10,000', '', '', '', 'BlueIndia', '9686261102', '', '', '', 'blueindia.co', '', '', 'Customer', '', 'CONSUMER DURABLES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Harish', '', 'ACTIVE', '2019-05-06', '1970-01-01', '2019-04-19', '', '', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 159, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (616, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '5000', '5000', '', '', '', 'Sphoorthi Jyothi Foundation', '9108533336', '', '', '', 'spoorthijyothi.org', '', '', 'Customer', '', 'NGO', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Harish GR', '', 'ACTIVE', '2019-05-10', '1970-01-01', '2019-04-30', '', 'harishkumargr996@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-04-30', '', '', '', 0, 1), (617, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '8500+600', '2000', '3000', '4100', '', 'Pandit Rm Rao Guruji', '9901291033', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-04-03', '', 'PanditRmRaoGuruji.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (618, 80, 71, 0, 0, 0, '', '80', 'Active', '22000/-', '', '25960/-', '12000', '', '13960', '', 'Elite Canals Dental Clinic', '9844407963', '', '', '', 'http://elitecanalsdental.com/', '', '', 'Customer', '', 'HEALTHCARE', 0, '', '', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2,', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Dynamic Website', 'Lekshmi Prasad', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-05-20', '', 'elitecanalsdental.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-08-02', '', '', '', 0, 1), (619, 36, 57, 0, 890, 0, '', '36', 'INACTIVE', '', '', '', '', '', '', '', 'Rajeev', '9123456789', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', 'Bagalkot', '', 'Bagalkot', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'ERP converted for 300000 plus gst', 'Rajeev', 'CEO', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'raju.barkol@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1); INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (620, 24, 69, 0, 0, 0, '', '24', 'Active', '6700', '1206', '7906', '', '', '7906', '', 'UPJ Infotech Pvt Ltd', '9448179135', '', '', '', 'upjinfotech.in', '', '', 'Customer', '', '', 0, '', '', '1st floor, No47, Savadappa, magadi Main Road, Agrahara Dasarahalli', '1st floor, No47, Savadappa, magadi Main Road, Agrahara Dasarahalli', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560079', '560079', 'India', 'India', 'Website hosting and email id.', 'Padma Raj', 'CEO', 'ACTIVE', '1970-01-01', '2019-05-23', '1970-01-01', '29AACCU3188N1ZM', 'padmarajgl@gmail.com', 'Client Side', 'Jayblues Hosting', 24, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (621, 24, 69, 0, 0, 0, '', '24', 'Active', '26000', '4680', '30680', '5000', '', '', '', 'Favorito', '8368557333', '', '', '', 'https://www.favoritoonline.com', '', '', 'Customer', '', 'OTHERS', 0, '', '', 'G-15, 2nd Floor, Sector-3, G B Nagar,', 'G-15, 2nd Floor, Sector-3, G B Nagar,', 'Noida', '', 'Noida', 'Uttar Pradesh', 'Uttar Pradesh', '201301', '201301', 'India', 'India', 'Static website with 20 pages and blog integration. Converted for Rs. 26000 plus GST- HR Consultancy', 'Manoj Singh', 'CEO', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-05-24', '', 'mksingh@favoritoonline.com', 'Client Side', 'Client Side', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (623, 24, 69, 0, 0, 0, '', '24', 'Acquired', '10000', '1800', '11800', '4000', '', '', '', 'Yantrik Machine Tools', '9845087217', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', '', '', 'Website was converted for 11800 from exitsing customer YUME Tools', 'Anitha', 'Marketing Manager', 'ACTIVE', '1970-01-01', '1970-01-01', '1970-01-01', '', 'anitha@macindia.in', 'Client Side', 'Jayblues Hosting', 24, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (624, 80, 71, 0, 0, 0, '', '80', 'Active', '20000', '3600', '23600', '7500', '', '14500-paid', '', 'LASO ', '7411180666', '', '', ' ', 'www.laso.world', '', '', 'Customer', '', 'ECOMMERCE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'E-commerce Website (phone number 79813 69523 , +91 74111 80666)', 'Vigneshwar', '', 'ACTIVE', '1970-01-01', '2019-06-24', '2019-06-06', '', 'foldbelt@gmail.com/vigneswar.b@gmail.com ', 'Client Side', 'Jayblues Hosting', 80, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-07-22', '', '', '', 0, 1), (625, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '20000', '3600', '23600', '7500', '', '', '', 'Haomateas', '7981369523', '', '', '', 'www.haomateas.com', '', '', 'Customer', '', 'ECOMMERCE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'E-Commerce Website', 'Vigneshwar', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-06', '', 'http://www.haomateas.com/', 'Client Side', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (626, 36, 57, 5, 0, 0, '', '36', '', '', '', '', '', '', '', '', 'Arvind', '', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'ERP application ', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (628, 80, 71, 0, 0, 0, '', '80', 'Active', '22420', '3420', '19000', '10000', '', '12420', '', 'Leenik Biotech', '6309675646 6309188899', '', '', '', 'http://leenikbiotechs.com', '', '', 'Customer', '', 'SCIENCE AND TECHNOLOGY', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website: 10-12 pages @ 15000 + 5 zoho mails at Rs. 4000', '', '', 'ACTIVE', '2019-07-11', '2019-07-11', '2019-06-11', '', 'director.leenikgroup@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (629, 80, 71, 0, 0, 0, '', '80', 'Active', '10000', '1800', '11800', '6000 - 12/4/2019', '', '5800 - balance ', '', 'Build Wick Ventures', '9900097318', '', '', '', 'buildwickventure.com', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static website', 'Rakesh', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-13', '', 'kamals.0309@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (630, 80, 71, 0, 0, 0, '', '80', 'Active', '20000+1000', '', '', '10000(paid)', '', '10000(balance)+1000', '', 'SIRI Global Services', '9900162212', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road', '', 'Bangalore', '', '', 'Karnataka', '', '560061', '', 'India', '', 'Dynamic Website', 'Varaprasad Reddy', '', 'ACTIVE', '2019-06-26', '1970-01-01', '2019-06-14', '', 'sirihousing@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (631, 80, 71, 0, 0, 0, '', '80', 'Active', '10000', '', '', '5000', '', '12000', '', 'Sky Autoparts', '9739587531', '', '', '', 'http://skyautoparts.us', '', '', 'Customer', '', 'SERVICES', 0, '', '', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560061', '', 'India', 'India', 'Word press', 'Varaprasad Reddy', '', 'ACTIVE', '2019-06-29', '2019-07-11', '2019-06-14', '', 'joshua.stalinautoparts@gmail.com', 'Client Side', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (632, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '7000', '2000', '', '5000', '', 'Olive Money', '9036777600', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-17', '', 'OliveMoney.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (633, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '9600', '3500(Paid)', '', '', '', 'Black Leaf', '8123166616', '', '', '', '', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '', 'Ramurthynagar', '', '', '', '', '', '', '', '', '', '', 'Static Website-6000, Brochure- 3200, VC- 400', 'Sathish', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-18', '', 'blackleaf@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (634, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '', '', '', '', '', 'Zurie Developers', '9739009008', '', '', '', ' zuriedevelopers.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Zurie Developers(6 pages, Home, about us, project- on going and completed, services, contact us)\r\n', 'Syed', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-18', '', 'zurie.developers@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-06-18', '', '', '', 0, 1), (635, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '12000', '10000', '', '', '', 'Nyshamedia Pvt Ltd', '9620864731', '', '', '', 'Nyshamedia.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'static website ref: pankajsiracademy.com', '', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-19', '', 'nyshamedia@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (636, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '', '25000', '', '', '', 'Skytek', '9972448899', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '', '', '#20 Vivekananda Colony, Kanakapura Main Road,JP Nagar, Bangalore- 560078', '#20 Vivekananda Colony, Kanakapura Main Road,JP Nagar, Bangalore- 560078', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560078', '560078', 'India', '', '', 'Kamalnath.Y', '', 'ACTIVE', '1970-01-01', '2019-06-22', '2019-06-20', '', 'kamal@skytekindia.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (637, 80, 71, 0, 0, 0, '', '80', 'Active', '9440', '1440', '8000', '4000', '', '5440', '', 'B4B Data Solutions', '+91 90601 09454', '', '', '', 'http://www.b4bdatasolutions.com', '', '', 'Customer', '', 'SERVICES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Venkat', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-06-28', '', 'vm2633@gmail.com', 'Client Side', 'Jayblues Hosting', 80, 80, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (638, 80, 71, 0, 0, 0, '', '80', 'Active', '', '', '18880', '10000(paid)', '', '8800(paid)', '', 'Kshathriya royal food and The Creams Corner', '8971790805', '', '', '', 'kshatriyarf.com & tccreams.com', '', '', 'Customer', '', 'Food Industry', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '2 Static Websites', 'Rakesh', '', 'ACTIVE', '2019-07-01', '2019-07-02', '2019-07-01', '', 'rakichandru91@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-07-01', '', '', '', 0, 1), (639, 164, 61, 0, 2561, 0, '', '24', 'INACTIVE', '6000', '1080', '7080', '3500(Paid)', '', '3580', '', 'Star Cover', '9014675458', '', '', '', '', '', '', '', '', 'INSURANCE', 0, '', '', 'Bommanahalli', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Chandra', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-07-04', '', 'rchandra03@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (640, 164, 61, 0, 2564, 0, '', '24', '', '', '', '', '', '', '', '', 'Kiran', '', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Need Development for his already existing Website.have an appointment 03.07.2019 ', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (641, 164, 61, 0, 2586, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'Gangadhar Raj', '9111111112', '', '', '', '', '', '', '', '', 'REAL ESTATE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'He need website for his real estate business & Meeting fixed 10.07.2019 Morning.project finalized amt=10000/-\r\nadvance 5000/-paid (ref#:919311105986)(to:62439776675)', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'GangadharRaj.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (642, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '9000', '1620', '10620', '5000', '', '', '', 'Trishul Builders & Developers', '7406588889', '', '', '', '', '', '', 'Customer', '', 'REAL ESTATE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Dynamic Website', 'Gangadhar', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-07-15', '', 'trishulbuilders&developers.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (644, 80, 71, 0, 0, 0, '', '80', 'Active', '5000', '900', '5900', '2000', '', '3900(paid)', '', 'Pearl Wedding and Events', '9742166149', '', '', '', 'www.pearlsweddingnevents.com', '', '', 'Customer', '', 'SERVICES', 0, '3500', '', 'No 111,Ramaswamy Palya,Near Indian Oil Corporation Fly Over, Kammanahalli Main Road, ', 'No 111,Ramaswamy Palya,Near Indian Oil Corporation Fly Over, Kammanahalli Main Road, ', 'Bangalore,', '', 'Bangalore,', 'Karnataka', 'Karnataka', '560033', '560033', 'India', 'India', 'Static website', 'ZABI', '', 'ACTIVE', '1970-01-01', '2019-07-27', '2019-07-16', '', 'zabzz64@gmail.com', 'Client Side', 'Jayblues Hosting', 80, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (645, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '41300+7000(Instagram)', '6300', '35000', '15000', '', '', '', 'Visista', '9380813583', '', '', '', '', '', '', 'Customer', '', 'TEXTILES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Ci project', 'Kumar', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-07-18', '', 'info.visista@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (646, 164, 61, 0, 2638, 0, '', '164', 'Active', '9000', '', '', '4500', '', '4500', '', 'Shreenidhi Tours and Travels', '9900443989', '', '8453943123', '', 'http://shreenidhitravels.com/', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '4000', '998314', '# 3, 6th Main, 4th Stage, Nandhini Layout', '# 3, 6th Main, 4th Stage, Nandhini Layout', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560096', '560096', 'India', 'India', 'Static Website', 'Srinivas', '', 'ACTIVE', '2019-08-19', '0000-00-00', '2019-07-22', '', 'hv.swamy83@gmail.com cabsatshreenidhi@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-08-19', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (647, 80, 71, 0, 0, 0, '', '80', 'Active', '10000', '', '', '5000', '', '', '', 'silicon Education', '9743444763', '', '', '', 'http://siliconeducation.in/', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Mohan Nimbalkar', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-07-19', '', 'theharmonyprojects@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (648, 80, 71, 0, 0, 0, '', '80', 'INACTIVE', '', '', '', '', '', '', '', 'Rathna Enterprises', '9960601122', '', '', '', 'rathnaenterprises.co', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', '', '', 'ACTIVE', '1970-01-01', '1970-01-01', '1970-01-01', '', 'rathna.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (649, 164, 61, 0, 2666, 0, '', '164', 'Active', '', '', '11800', '6000', '', '5800', '', 'Royal Electricals', '9986063683', '', '', '', 'www.royalelectricals.co', '', '', 'Customer', '', 'SERVICES', 0, '4000', '', '3rd main Road, Near balaji Kalyana mantappa, bannerghatta', '3rd main Road, Near balaji Kalyana mantappa, bannerghatta', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '560083', '560083', 'India', 'India', 'Static Website ', 'Jagan', '', 'ACTIVE', '2019-08-07', '0000-00-00', '2019-07-30', '29AJKPJ5251H1Z0', 'royalelectricalsj7@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-08-07', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (651, 159, 73, 0, 0, 0, '', '24', 'Active', '220000', '', '', '', '', '', '', 'Account Bazaar', '9740749749', '', '', '', 'https://accountbazaar.in', '', '', 'Customer', '', 'FINANCIAL SERVICES', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', '', '', '', '', '', '', 'Account bazaar application', '', '', 'ACTIVE', '1970-01-01', '1970-01-01', '2019-09-06', '', 'adarshakg@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 159, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (653, 24, 69, 0, 0, 0, '', '24', 'Active', '22000', '3960', '25960', '', '', '', '', 'DR\'S DESK', '9986699068', '', '', '', 'http://apimysore.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '8000 + tax', '', '#83 Divya Paradise T G Layout ittamadu', '#83 Divya Paradise T G Layout ittamadu', 'Banashankari 3rd stage Bengaluru', '', 'Banashankari 3rd stage Bengaluru', 'Karnataka ', 'Karnataka ', '560085', '560085', 'India', 'India', 'API mysore website for doctor association.', 'chethan B G', '', 'ACTIVE', '2019-07-29', '0000-00-00', '2019-07-29', '29AAHCD9450H1ZA', 'drdesk21@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-07-29', '', '', '', 0, 1), (654, 164, 61, 0, 2696, 0, '', '164', 'Active', '10000', '', '', '5000', '', '', '', 'SLV Scientific Supplies', '9591590281', '', '6366504888', '', 'www.slvscientificsupplies.com ', '', '', 'Customer', '', 'PHARMACEUTICALS', 0, '4000', '', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road ', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road ', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '570026', '570026', 'India', 'India', 'Static Website(6366704888 -official mobile number)', 'Manjunath', '', 'ACTIVE', '2019-08-05', '0000-00-00', '2019-08-05', '29ALVPM9461F2Z9', 'slvscientificsupplies@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-08-05', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (655, 164, 61, 0, 2667, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'Charan Kumar', '6361740396', '', '9590231231', '', 'http://uk9squares.com', '', '', '', '', 'REAL ESTATE', 0, '', '', 'K R Puram', 'K R Puram', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Need Application like Magic Bricks.Have sent Demo Links', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'charankumar8080@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (656, 24, 69, 0, 2738, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Feel Good Moments', '9741277857', '', '', '', 'www.feelgoodmoments.in', '', '', '', '', '', 0, '', '', '#44, 3rd cross, Sachidananda nagar, RR Nagar', '#44, 3rd cross, Sachidananda nagar, RR Nagar', 'Bangalore', '#44, 3rd cross, Sachidananda nagar, RR Nagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560098', '560098', 'India', 'India', 'MLM application', 'Krishnan N S', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAECJ6225D1ZO', 'goalsonline.ns@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"MLM Application\"]', '[\"16-08-2019\"]', '[\"\"]', 0, 1), (657, 164, 61, 0, 2734, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Travel Mitra', '9980255888', '', '', '', '', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 0, '', '', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap)', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap)', 'Bangalore ', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap),Bangalore ,Karnataka,India', 'Bangalore ', 'Karnataka', 'Karnataka', '560056', '560056', 'India', 'India', '5-6 Pages of Dynamic Website,Meeting finalized for 13K+GST,and whatsapp chat 1800 extra if he need', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'bhaskar.n.murthy@gmail.com', 'Client Side', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (658, 164, 61, 0, 2752, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'The Chief Traders ', '7406017976', '', '', '', 'www.thechieftraders.com', '', '', 'Customer', '', '', 0, '5000', '', '235 o/2, 2 floor, bommasandra industrial area phase 3 , housor road, bommasandra', 'Electronic city', 'Bangalore', 'Electronic city,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560099', '0', 'India', 'India', '6-7 pages dynamic website,Meeting 21.08.2019 12PM', 'Naveen Tarak', '', 'ACTIVE', '2019-08-28', '0000-00-00', '0000-00-00', '', 'Sandipsenapati1@gmail.com/dakshin.m@thechieftraders.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-08-28', '[\"Dynamic website\",\"\"]', '[\"\",\"\"]', '[\"\",\"\"]', 0, 1), (659, 164, 61, 0, 2748, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'SLN Tours & Travels ', '9620685797', '', '', '', '', '', '', '', '', '', 0, '', '', 'Muddinapalya', 'Muddinapalya', 'Bangalore', 'Muddinapalya,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'need 4-5 pages of travels website,he will visit office 20.08.2019 at 9.30am', 'Rohith', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'prohit322@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (660, 164, 61, 0, 2756, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Vlight Services Private Limited', '6364320666', '', '', '', '', '', '', '', '', '', 0, '', '', 'K R Puram', 'K R Puram', 'Bangalore', 'K R Puram,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website,meeting fixed 21.08.2019 ', 'Shylaja/Aiyanna', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'aianadevaiah123@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (661, 164, 61, 0, 2760, 0, '', '164', '', '', '', '', '', '', '', '', 'BHARATHIYA BELAKU PARTY ', '9110450298', '', '', '', 'www.bbpindia.org', '', '', '', '', 'OTHERS', 0, '4000', '', '#11, 13th Main Road B.S.k 1st Stage Raghavendra Block, Srinagar,', '#11, 13th Main Road B.S.k 1st Stage Raghavendra Block, Srinagar,', 'Bangalore', 'Jayanagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560050', '560050', 'India', 'India', 'need 5 pages of political website ,Meeting fixed 22.08.2019 at 10.30am', 'Puttaswamy', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'bharathiyabelakuparty@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (662, 164, 61, 0, 2685, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'CMS Bike Service', '9742029111', '', '', '', 'www.cmsbikeservice.com', '', '', '', '', 'SERVICES', 0, '4000', '', '100 Feet Road,Indranagar', '100 Feet Road,Indranagar', 'Bangalore', '100 Feet Road,Indranagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website for Bike Service ,meeting fixed today 30.07.2019 4PM.', 'Rajendran', '', 'ACTIVE', '2019-08-28', '0000-00-00', '0000-00-00', '', 'cmsrajendran@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-08-28', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (663, 164, 61, 0, 2745, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'J P Constructions ', '9886451307', '', '', '', '', '', '', '', '', '', 0, '', '', 'Kathriguppe ', 'Kathriguppe ', 'Bangalore', 'Kathriguppe ,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'he need website & told me to call by 2.30PM ,He will visit office tomorrow 20.08.2019', 'Sampath', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'sampath_janu@rediffmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (664, 164, 61, 0, 2777, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'POVI Events ', '7760807780', '', '', '', 'www.povievents.com', '', '', '', '', 'MEDIA AND ENTERTAINMENT', 0, '5000', '', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi', 'Bangalore', '#3,2nd B Main Road,Bairaveshwaranagar,Nagarabhavi,Bangalore,karnataka,India', 'Bangalore', 'karnataka', 'karnataka', '560072', '0', 'India', 'India', 'He will call after 15 min,He will visit office & have sent location ', 'Yatheesh', '', 'ACTIVE', '2019-09-04', '0000-00-00', '0000-00-00', '', 'yatheesh991@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-09-04', '[\"Dynamic website\"]', '[\"31-08-2019\"]', '[\"\"]', 0, 1), (665, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'TOG Services', '8105133444', '', '', '', 'www.togservices.co', '', '', '', '', '', 0, '', '', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase ', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560078', '560078', 'India', 'India', 'Website and email id', 'Indradip Das', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29ADSPD8422E2ZD', 'togservices27@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2020-08-31', '[\"Website Development\",\"Email id\"]', '[\"31-08-2019\",\"31-08-2019\"]', '[\"14000\",\"1500\"]', 0, 1), (666, 80, 71, 0, 0, 0, '', '80', '', '', '', '', '', '', '', '', 'Eszero project private limited ', '9945553032', '', '', '', ' eszeroindia.com', '', '', 'Customer', '', 'SERVICES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', 'Static Website', 'Pradeep', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-08-31', '', 'Eszero@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 80, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-09-03', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (667, 164, 61, 0, 2803, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'CAM India', '9686045287', '', '', '', '', '', '', '', '', 'EDUCATION AND TRAINING', 0, '', '', '#029,2nd cross,Ramamurthy nagar', '#029,2nd cross,Ramamurthy nagar', 'Bangalore`', '#029,2nd cross,Ramamurthy nagar,Bangalore`,Karnataka,India', 'Bangalore`', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website for personal use.meeting today', 'Rashmi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '87rashu@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (668, 164, 61, 0, 2595, 0, '', '24', 'INACTIVE', '', '', '', '', '', '', '', 'Scientific Thought Publications', '9880013922', '', '', '', '', '', '', '', '', '', 0, '', '', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase', 'Bangalore', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Subbu sir spoke. Meeting fixed 11.07.2019(10AM)\r\n', 'Manju Bhaskar', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'bhaskar18663@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (669, 164, 61, 0, 2757, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'A J Sports Enterprises', '9148430877', '', '', '', '', '', '', '', '', 'RETAIL', 0, '', '', '#6/20,2nd cross,St.Thomas town,Lingarajpuram', '#6/20,2nd cross,St.Thomas town,Lingarajpuram', 'Bangalore', '#6/20,2nd cross,St.Thomas town,Lingarajpuram,Bangalore,Karnataka,India`', 'Bangalore', 'Karnataka', 'Karnataka', '84', '84', 'India`', 'India`', 'Need website for sports shop.Meeting fixed 21.08.2019', 'Andrew Anthony', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'ajsports2019@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (670, 164, 61, 0, 2686, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'SAMOURK IMPORTS & EXPORTS', '9108788848', '', '', '', '', '', '', '', '', '', 0, '', '', 'BTM layout', 'BTM layout', 'Bangalore', 'BTM layout,Bangalore,karnataka,India', 'Bangalore', 'karnataka', 'karnataka', '0', '0', 'India', 'India', 'He has sent E-mail id & i have sent P & L', 'Khaleel Nagarchi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'nagarchikhaleel@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '', '', '', 0, 1), (671, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'SGL Properties', '9880510851', '', '', '', 'sglproperties.com', '', '', '', '', '', 0, '', '', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel', 'Bengaluru', '', 'Bengaluru', 'Karnataka', 'Karnataka', '560068', '560068', 'India', 'India', 'Website with booking engine from Resavenue. Domain and hosting with 1 web mail id', 'Bhaskar', 'Manager', 'ACTIVE', '2019-09-09', '0000-00-00', '0000-00-00', '', 'bhaski1969@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2020-09-09', '[\"Domain & Hosting\",\"Website with booking engine\"]', '[\"09-09-2019\",\"09-09-2019\"]', '[\"3500\",\"36500\"]', 0, 1), (672, 164, 61, 0, 2867, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'IN-FIN solutions', '7871087767', '', '', '', 'www.in-finsolution.com', '', '', '', '', 'RETAIL', 0, '4000', '', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli', 'Bangalore', 'SVR Residency,2nd cross,munireddy layout,panatthur main road,Kadubeesanahalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560103', '560103', 'India', 'India', 'Need static website.Meeting fixed 17.09.2019\r\n', 'Karthik', '', 'ACTIVE', '2019-09-30', '0000-00-00', '0000-00-00', '', 'fruityranjitha77@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'Karnataka', 'Karnataka', 'YES', '2020-09-30', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (673, 164, 61, 0, 2905, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'SCP INFRA ', '9886454338', '', '', '', '', '', '', '', '', 'SERVICES', 0, '', '', '#32/2,Bilwaradahalli,Bannerghatta road', '#32/2,Bilwaradahalli,Bannerghatta road', 'Bangalore', '#32/2,Bilwaradahalli,Bannerghatta road,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '83', '83', 'India', 'India', 'Need website with logo & ERP for Ready mix concrete Meeting fixed tomorrow call 25.09.2019', 'Kishore,Shridhar', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'srenterprises84@yahoo.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Static website\"]', '[\"25-09-2019\"]', '[\"\"]', 0, 1), (674, 24, 69, 0, 2907, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Narayani Holidays and Conferences Pvt Ltd', '9741492828', '', '9845691734', '', 'narayaniholidays.com', '', '', 'Customer', '', 'TOURISM AND HOSPITALITY', 560079, '7000', '', '#24, ', '#24, ', 'Bangalore', '#24, \"Balaji Plaza\" 2nd floor, 2nd cross, Kirloskar HBCS 2nd stage, Basaveshvara nagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560079', '560079', 'India', 'India', '', 'Princy K D', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-11-01', '29BCLPK8908B1ZE', 'princy@narayaniholidays.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'Karnataka', 'Karnataka', 'YES', '2020-11-01', '[\"Tours package website\"]', '[\"25-09-2019\"]', '[\"75000\"]', 0, 1), (675, 164, 61, 0, 2913, 0, '', '20', '', '', '', '', '', '', '', '', 'Shree Mahalakshmi Enterprises', '9901780150', '', '', '', 'shreemahalakshmi.in', '', '', '', '', 'SERVICES', 0, '4000', '', '#237/8,2nd floor , ', '#237/8,2nd floor , ', 'Bidadi,Ramanagar', '#237/8,2nd floor , \" Sri Vinayaka Nilaya\",Kethiganahalli Road,Bidadi,Ramanagar,Karnataka,India', 'Bidadi,Ramanagar', 'Karnataka', 'Karnataka', '562109', '562109', 'India', 'India', '5 Page static website with Logo, Envelop,Visiting Card,Letter head', 'Nuthan Kumar K S', 'Proprietor', 'ACTIVE', '2019-11-05', '2019-11-21', '0000-00-00', '', 'smenuthan@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-05', '[\"Static website\"]', '[\"27-09-2019\"]', '[\"12000\"]', 0, 1), (676, 164, 61, 0, 2916, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Yashas Narayan', '9738404534', '', '', '', '', '', '', '', '', 'SCIENCE AND TECHNOLOGY', 0, '', '', 'Mysore', 'Mysore', 'Mysore', 'Mysore,Mysore,Karnataka,India', 'Mysore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website,Portpoliyo, Social media integration (Instagram),Proffesional E-mail Id(2).', 'Yashas', '', 'ACTIVE', '2019-10-02', '0000-00-00', '0000-00-00', '', 'narayan.yashas@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-10-02', '[\"\"]', '[\"01-10-2019\"]', '[\"\"]', 0, 1), (677, 164, 61, 0, 2936, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Vivek Tours and Travels', '7353720005', '', '', '', 'vivektourandtravels.com', '', '', '', '', 'TOURISM AND HOSPITALITY', 0, '4000', '', 'Malleshwaram', 'Malleshwaram', 'Bangalore', 'Malleshwaram,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', '', 'Dhananjay', '', 'ACTIVE', '2019-10-16', '2019-10-18', '0000-00-00', '', 'vivekranjanshantu2@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-10-16', '[\"Static website\"]', '[\"09-10-2019\"]', '[\"\"]', 0, 1), (678, 164, 61, 0, 2958, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Maxvel Enterprises ', '9632533376', '', '', '', 'maxvelenterprise.com', '', '', 'Customer', '', 'REAL ESTATE', 0, '3000(only hosting)', '', 'K R Puram', 'K R Puram', 'Bangalore', 'K R Puram,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Website for Interiors Meeting fixed on 15.10.2019 ', 'Shri Hari ', '', 'ACTIVE', '0000-00-00', '2019-10-16', '0000-00-00', '', 'srihari.sssh22@gmail.com', 'Client Side', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-10-17', '[\"website \"]', '[\"15-10-2019\"]', '[\"\"]', 0, 1), (679, 164, 61, 0, 2960, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'LSH Tech Productions Premium Pvt. Ltd ', '7996005308', '', '', '', 'www.lshtech.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '4000', '', 'K R Puram', 'K R Puram', 'Bangalore', 'K R Puram,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website adwords logo Meeting fixed on 15.10.2019 ', 'Nalini', '', 'ACTIVE', '2019-12-06', '0000-00-00', '0000-00-00', '', 'nalinimmohan@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-12-06', '[\"Static website\"]', '[\"17-10-2019\"]', '[\"10170\"]', 0, 1), (681, 164, 61, 0, 2975, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Paneetha Consulting Engineering ', '9535683862', '', '', '', '', '', '', '', '', 'REAL ESTATE', 0, '', '', 'Nagarabhavi', 'Nagarabhavi', 'Bangalore', 'Nagarabhavi,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need Dynamic website for construction company have sent P & L of related', 'Ashok ', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AMXPA1783B1ZX', 'pgashok@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Dynamic website\"]', '[\"18-10-2019\"]', '[\"\"]', 0, 1), (682, 24, 69, 0, 0, 0, '', '24', 'INACTIVE', '', '', '', '', '', '', '', 'SUKRUTA', '9566099149', '', '', '', 'www.asiapacificfertility.com', '', '', '', '', '', 0, '', '998314', '347,3rd Floor,MN Complex,Puttenahalli Main Road, J P Nagar 7th Phase', '347,3rd Floor,MN Complex,Puttenahalli Main Road, J P Nagar 7th Phase', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560078', '560078', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29BRCPK2594M1Z7', 'katteras@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'NO', '', '[\"Digital Marketing\"]', '[\"18-10-2019\"]', '[\"32000\"]', 0, 1), (683, 164, 61, 0, 2989, 0, '', '164', '', '', '', '', '', '', '', '', 'Sri Maruthi Enterprises', '8884868758', '', '', '', 'srimaruthienterprises.co', '', '', '', '', 'MANUFACTURING', 0, '5000', '', 'Nayandahalli', 'Nayandahalli', 'Bangalore', 'Nayandahalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Dynamic website', 'Kallappa', 'Proprietor', 'ACTIVE', '2019-11-08', '2019-11-26', '0000-00-00', '29EBBPK7876J1ZX ', 'lunatcyashu8055@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-08', '[\"Dynamic website\"]', '[\"22-10-2019\"]', '[\"\"]', 0, 1), (684, 164, 61, 0, 2991, 0, '', '164', '', '', '', '', '', '', '', '', 'Karthik Enterprises', '7019199336', '', '', '', 'karthikenterprises.org', '', '', '', '', 'RETAIL', 0, '4000', '', 'Banasawadi', 'Banasawadi', 'Bangalore', 'Banasawadi,Bangalore,Karnataka,', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', '', '', 'Static website', 'Karthik Reddy', '', 'ACTIVE', '2019-11-04', '2019-11-11', '2019-10-23', '29AXUPK7575R1ZX', 'reddykarthik458@gmail.com ', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-04', '[\"Static website\"]', '[\"23-10-2019\"]', '[\"\"]', 0, 1), (685, 164, 61, 0, 2959, 0, '', '164', '', '', '', '', '', '', '', '', 'Megha Welfare Association', '9742936667', '', '', '', 'meghaspandana.com', '', '', '', '', 'NGO', 0, '4000', '', 'Kathriguppe ', 'Kathriguppe ', 'Bangalore', 'Kathriguppe ,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need website ,Meeting fixed on 15.10.2019 ', 'Sagar', '', 'ACTIVE', '2019-10-31', '2020-01-08', '2019-10-25', '', 'incsag@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-10-31', '[\"Static website\"]', '[\"25-10-2019\"]', '[\"\"]', 0, 1), (686, 164, 61, 0, 2952, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'TOBIK LIFELINE NIG.LTD', '9591711278', '', '', '', 'www.tobiklifeline.com', '', '', '', '', 'PHARMACEUTICALS', 0, '5000', '', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli', 'Bangalore', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560077', '560077', 'India', 'India', 'Need website for pharmaceuticals Have told basic st 10K basic dy 12K & Premium st-16K & Pr Dy 18K+gst ', 'Shirinerose', '', 'ACTIVE', '2019-12-25', '0000-00-00', '0000-00-00', '', 'info@tobiklifeline.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-12-24', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (687, 164, 61, 0, 3039, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Essence Home Decor Pvt Ltd', '9845010901', '', '', '', '', '', '', '', '', 'MANUFACTURING', 0, '', '', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli', 'Bangalore', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'J-Fiber soft product', 'Prabhakaran V', 'Managing Partner', 'ACTIVE', '0000-00-00', '0000-00-00', '2019-11-14', '29AAECE7048P1ZX', 'prabhakaran@artisanhome.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"ERP Solution\"]', '[\"14-11-2019\"]', '[\"\"]', 0, 1), (688, 164, 61, 0, 3072, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'INFO CARE INDIA GLOBAL SOLUTIONS', '9620850935', '', '', '', 'www.infocareindiaglobal.com', '', '', '', '', 'EDUCATION AND TRAINING', 0, '4000', '', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage', 'Bangalore', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need changes in his old website siri global solutions as Info care india global solutions and the address,contact details, have finalised for 5K,and he has given 2K as advance.', 'Venkatesh', '', 'ACTIVE', '2019-11-26', '2020-01-02', '0000-00-00', '', 'infocareindia077@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-26', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (689, 164, 61, 0, 3073, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'Ararat Group', '7619574531', '', '', '', 'www.araratdairyfarm.com', '', '', '', '', 'AGRICULTURE AND ALLIED INDUSTRIES', 0, '5000', '', 'Madanayakanahalli', 'Madanayakanahalli', 'Bangalore', 'Madanayakanahalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', '', 'Sathish', '', 'ACTIVE', '2019-11-26', '2019-12-28', '0000-00-00', '', 'sathishhr1950@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-11-26', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (690, 20, 1, 0, 3115, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'VSP ENTERTAINMENT PVT LTD', '9880977789', '', '', '', '', '', '', '', '', '', 0, '', '', '1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South', '1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South', 'Mysore', ',,,', 'Mysore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAGCV1857M1ZN', 'rakeshadagur@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (691, 164, 61, 0, 3118, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Dayakar Poly clinic', '9902232573', '', '', '', '', '', '', '', '', 'HEALTHCARE', 0, '', '', 'Chikkamagaluru', 'Chikkamagaluru', 'Chikkamagaluru', 'Chikkamagaluru,Chikkamagaluru,Karnataka,India', 'Chikkamagaluru', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Healthcare website', 'Dr.Hemanth Naik', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'bhairaweshwarapoliclinic@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-17', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (693, 164, 61, 0, 3117, 0, '', '164', '', '', '', '', '', '', '', '', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', '9845759501', '', '', '', '', '', '', '', '', 'IT & ITES', 0, '', '', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar ', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar ', 'Bangaluru', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar ,Bangaluru,Karnataka,India', 'Bangaluru', 'Karnataka', 'Karnataka', '560043', '560043', 'India', 'India', 'Need to re-design of Eldaas website with Word press', 'PrakashReddy', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAFCT8568C1ZX', 'prakash.reddy@eldaas.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2020-12-17', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (694, 164, 61, 0, 3132, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Mother\'s Choice Bangalore', '9986648497', '', '', '', '', '', '', '', '', 'RETAIL', 0, '', '', '#1262/B,19th \'B\' Main Road', '#1262/B,19th \'B\' Main Road', 'Bangalore', '#1262/B,19th \'B\' Main Road,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560050', '560050', 'India', 'India', 'Static website converted for 8K', 'Veeraiah ', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'nomail@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (695, 164, 61, 0, 3138, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'PEOPLESOFT MANAGEMENT CONSULTANCY SERVICES(OPC)PRIVATE LIMITED', '9700100660', '', '', '', 'www.mysoftskills.in', '', '', '', '', 'EDUCATION AND TRAINING', 0, '3000(only hosting)', '', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli', 'Bangalore', '#2 A,2nd Floor,11th \'A\' Cross,Near Corporation bank ATM,Kodichikkanahalli road,Bommanahalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560068', '560068', 'India', 'India', 'Static website with 2 enquiry form=9K +tax', 'Hemanth Kumar P', 'CEO', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'helpdesk_pcs@yahoo.com', 'Client Side', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (696, 164, 61, 0, 3145, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Hokkaidobliss', '9342552697', '', '', '', 'hokkaidobliss.com', '', '', '', '', '', 0, '', '', 'Banashankari ', 'Banashankari ', 'Bangalore', 'Banashankari ,Bangalore,Karnartaka,India', 'Bangalore', 'Karnartaka', 'Karnartaka', '0', '0', 'India', 'India', '', 'Vijay ', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2020-02-06', '', 'hnvijayasimha@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-27', '[\"Static website with 2 dynamic page\"]', '[\"\"]', '[\"\"]', 0, 1), (697, 164, 61, 0, 3168, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'C R FABRICATOR', '9449544782', '', '9743435431', '', '', '', '', '', '', 'METALS AND MINING', 0, '', '', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra', 'Bangalore', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560068', '560068', 'India', 'India', 'Static website - 8K+tax(+Domain -2400 /-if the old vendor not give the credentials ) ', 'Saravanan', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AIGPR8697G1ZC', 'saravanan_crelectricals@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-27', '[\"Static website\"]', '[\"\"]', '[\"\"]', 0, 1), (698, 164, 61, 0, 3197, 0, '', '164', '', '', '', '', '', '', '', '', 'Linen Hub', '7338470707', '', '', '', 'linenhub.co.in', '', '', '', '', 'TEXTILES', 0, '', '', '#86,2nd main,Vidyaranyanagar,Magadi road', '#86,2nd main,Vidyaranyanagar,Magadi road', 'Bangalore', '#86,2nd main,Vidyaranyanagar,Magadi road,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560023', '560023', 'India', 'India', 'Re-design of static website with google adwords & a single webmail', 'Ramesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', '', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Static website with google adwords \"]', '[\"\"]', '[\"\"]', 0, 1); INSERT INTO `new_account` (`account_id`, `user_id`, `role_id`, `potentail_id`, `lead_id`, `contact_id`, `contact_roles`, `account_owner`, `rating`, `net_amount`, `gst_18`, `total_amount`, `initial_paid1`, `initial_paid2`, `final_pay`, `name_type`, `account_name`, `phone`, `account_site`, `fax`, `parent_account`, `website`, `account_number`, `ticker_symbol`, `account_type`, `ownership`, `industry`, `employees`, `annual_revenue`, `sic_code`, `billing_street`, `shipping_street`, `billing_city`, `address`, `shipping_city`, `billing_state`, `shipping_state`, `billing_code`, `shipping_code`, `billing_country`, `shipping_country`, `description`, `contact_person`, `designation`, `delete_status`, `domain_purchase_date`, `website_live_date`, `opened_on`, `gst_code`, `email_id`, `domain`, `hosting`, `created_by`, `updated_by`, `created_at`, `updated_at`, `type`, `billing_state_code`, `shipping_state_code`, `amc_date`, `due_date`, `service_name`, `service_date`, `service_amount`, `old_account_id`, `view_status`) VALUES (699, 164, 61, 0, 3231, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'NONAHomes ', '9901777007', '', '', 'Swan texture private limi', '', '', '', '', '', 'ECOMMERCE', 0, '', '', 'Bangalore', 'Bangalore', 'Bangalore', 'Bangalore,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'E-commerce website with Megento Platform', 'Navin K', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'navin@swansilk.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"E-commerce website with Megento platform\"]', '[\"\"]', '[\"\"]', 0, 1), (700, 164, 61, 0, 3220, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'Transe Vision Care Pvt.Ltd', '9845366406', '', '', '', '', '', '', '', '', 'RETAIL', 0, '', '', '#814,23rd main,2nd phase,J p Nagar', '#814,23rd main,2nd phase,J p Nagar', 'Bangalore', '#814,23rd main,2nd phase,J p Nagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', '2 Dynamic website(domain,hosting from client)', 'Geetha K', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAECT1398P1ZH', 'mcm@varnacreations.in', 'Client Side', 'Client Side', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (701, 164, 61, 0, 3234, 0, '', '164', 'INACTIVE', '', '', '', '', '', '', '', 'Varna Creations', '9845366406', '', '', '', '', '', '', '', '', 'SERVICES', 0, '', '', '#814,23rd main,2nd phase,J p Nagar', '#814,23rd main,2nd phase,J p Nagar', 'Bangalore', '#814,23rd main,2nd phase,J p Nagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Dynamic Website (only design & Development)(Domain & hosting by client)', 'Geetha K', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'mcm@varnacreations.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Dynamic website\"]', '[\"\"]', '[\"\"]', 0, 1), (702, 164, 61, 0, 3069, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Vikas milk diary', '9845073830', '', '', '', '', '', '', 'Customer', '', 'Food Industry', 30, '35000', '', 'Nanjangud', 'Nanjangud', 'Mysore', 'Nanjangud,Mysore,Karnataka,India', 'Mysore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', 'Need application for milk diery ,have sent details watsapp ', 'Nagaraj', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2020-02-12', '', 'nomail@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-04-02', '[\"ERP APPLIATION\"]', '[\"12-02-2020\"]', '[\"200000\"]', 0, 1), (703, 164, 61, 0, 3238, 0, '', '21', 'INACTIVE', '', '', '', '', '', '', '', 'Start up', '9742333699', '', '', '', '', '', '', '', '', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'Garvabhavipalya Banglore', 'Garvabhavipalya Banglore', '', 'Garvabhavipalya Banglore,,Karnataka,india', '', 'Karnataka', 'Karnataka', '0', '0', 'india', 'india', 'social media', 'Vijendra gowda ', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'viji7259521592@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"social media\"]', '[\"\"]', '[\"\"]', 0, 1), (704, 164, 61, 0, 3239, 0, '', '21', 'INACTIVE', '', '', '', '', '', '', '', 'Start up', '9743555771', '', '', '', 'dynamic', '', '', '', '', 'SERVICES', 0, '', '', 'kalyan Nagar Banglore', 'kalyan Nagar Banglore', 'Banglore', 'kalyan Nagar,Banglore,karnataka,india', 'Banglore', 'karnataka', 'karnataka', '0', '0', 'india', 'india', 'Dynamic website', 'Vamika', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'rachnasdezain@gmil.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (705, 164, 61, 0, 3240, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'Start up', '9743555771', '', '', '', '', '', '', '', '', 'SERVICES', 0, '', '', 'kalyan Nagar', 'kalyan Nagar', 'Bangalore', 'kalyan Nagar,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560023', '560023', 'India', 'India', 'Dynamic website', 'Vamika', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'rachnasdezain@gmil.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (706, 164, 61, 0, 3241, 0, '', '21', 'INACTIVE', '', '', '', '', '', '', '', 'Start up', '9739001729', '', '', '', '', '', '', '', '', 'MEDIA AND ENTERTAINMENT', 0, '', '', 'Bommanhalli', 'Bommanhalli', 'Bangalore', 'Bommanhalli,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '560004', '560004', 'India', 'India', 'Static website', 'Raja ', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'graja1303@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (707, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'Kaaryaka Singapore Pte Ltd', '9090090909', '', '+65 900042845', 'Karyaka ', '', '', '', 'Investor', '', 'BANKING', 0, '', '', '10, Anson Road, #29-02A International Plaza,', '10, Anson Road, #29-02A International Plaza,', ' Singapore - 079903 ', '', ' Singapore - 079903 ', '', '', '179094', '179094', 'Singapore', 'Singapore', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'paritosh@kaaryaka.com', 'Client Side', 'Client Side', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Application Development \"]', '[\"06-04-2020\"]', '[\"2000000\"]', 0, 1), (708, 164, 61, 0, 0, 0, '', '164', 'Active', '', '', '', '', '', '', '', 'Mosim', '9880130726', '', '', '', ' srmg.in', '', '', '', '', 'SERVICES', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Mosim', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', ' Info@srmg.in', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-05-18', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (709, 164, 61, 0, 3253, 0, '', '20', '', '', '', '', '', '', '', '', 'Kshitij', '9980473772', '', '', '', '', '', '', '', '', 'SERVICES', 0, '', '', '', '', 'Banglore', ',Banglore,,', 'Bangalore', '', '', '0', '0', '', '', '', 'kshitij', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'kshitij@coachkshitij.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (710, 164, 61, 0, 0, 0, '', '164', '', '', '', '', '', '', '', '', 'Start up', '9980473772', '', '', '', '', '', '', 'Others', '', 'OTHERS', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'karnataka', 'karnataka', '', '', 'india', 'india', '', 'kshitij', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'rekha@jayblues.org', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-05-19', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (711, 164, 61, 70, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'LivSys Devices India Pvt ltd', '8733652085', '', '', '', 'https://www.livsys.in', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', ',Bangalore,,', 'Bangalore', '', '', '', '', '', '', '', 'Dilip', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AADCL7404P1ZZ', 'dilip@lifesys.co.in', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-01-01', '[\"Health care Application\"]', '[\"\"]', '[\"\"]', 0, 1), (713, 20, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Medusys Pty Ltd', '9686200393', '', '+61 424357122', '', 'Medusys.in', '', '', 'Customer', '', 'HEALTHCARE', 0, '50000', '', 'No 36, Caloroga St,', 'No 36, Caloroga St,', 'Wattle Park', '', 'Wattle Park', 'SA - 5066 Australia', 'SA - 5066 Australia', '', '', 'Australia', 'Australia', 'Dr Gurunath Murthy', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'prashanth@medusys.in,drgmurthy@medusys.in,hnvijayasimha@gmail.com', 'Client Side', 'Client Side', 20, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-06-08', '[\"Custom Application\"]', '[\"\"]', '[\"520000\"]', 0, 1), (714, 164, 61, 0, 0, 0, '', '38', 'Active', '', '', '', '', '', '', '', 'Udupi bakery', '9591224718', '', '', '', 'www.udupibakery.com', '', '', 'Others', '', 'Food Industry', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Aditya', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'adityad111@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-06-30', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (715, 164, 61, 0, 0, 0, '', '38', 'Active', '', '', '', '', '', '', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', '9538855451', '', '', '', 'freskochoice.com', '', '', 'Customer', '', 'OTHERS', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Subramanya', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2020-08-17', '', 'freskochoice@gmail.com / sales.freshchoice@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-08-17', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (716, 164, 61, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Nishkal Shetty', '9591949132', '', '', '', '', '', '', '', '', 'OTHERS', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Nishkal Shetty', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'info@nishkalshetty.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-07-21', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (717, 164, 61, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'The Dental Square Multispeciality Dental clinic', '9845945726', '', '', '', 'www.thedentalsquare.in', '', '', 'Others', '', 'HEALTHCARE', 0, '', '', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1', 'Bangalore-560 100', '', 'Bangalore-560 100', 'karnataka', 'karnataka', '', '', 'India', 'India', '', 'Dr Jayanthi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'thedentalsquare@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (718, 164, 61, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Ankush Rajpurohit', '9591261135', '', '', '', 'http://mummaslunchbox.in/', '', '', 'Customer', '', 'Food Industry', 0, '', '', '370,6th cross Kamakshi Hospital road', '370,6th cross Kamakshi Hospital road', 'Mysuru-570 009', '', 'Mysuru-570 009', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', 'Ankush Rajpurohit', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'mansarovarinternational@gmail.com/Ankushsarath@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-12-18', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (719, 164, 61, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Start up', '9535576720', '', '', '', '', '', '', 'Others', '', 'HEALTHCARE', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'athmika ramesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'athmikaramesh@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-10-06', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (720, 164, 61, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'athmika ramesh', '9535576720', '', '', '', '', '', '', 'Others', '', 'HEALTHCARE', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'india', '', 'athmika ramesh', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'athmikaramesh@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 164, 164, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2021-10-06', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (721, 164, 61, 0, 3257, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'MMG Constructions LLP', '9900486815', '', '', '', 'https://www.mmgconstructions.com/', '', '', '', '', 'OTHERS', 0, '', '', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara ', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara ', 'Mysore ', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara ,Mysore ,Karnataka 570022,India', 'Mysore ', 'Karnataka 570022', 'Karnataka 570022', '0', '0', 'India', 'India', '', 'Jayaram', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'www.mmgconstructions.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (722, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Sadhguru\'s Dental', '9845198890', '', '', '', 'www.bangaloreoralmedicine.com', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', '', '', 'Karnataka', '', '', '', '', '', 'Have taken website domain and hosting. not taken any website redesign charges as bigger project is expected', 'Dr. Srinivas', '', 'ACTIVE', '2021-01-06', '2021-01-06', '0000-00-00', '', 'srinivasthedentist@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-01-06', '[\"Website hosting and domain with AMC\"]', '[\"06-01-2021\"]', '[\"5970\"]', 0, 1), (723, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Erigo Associates', '9008732727', '', '', '', 'erigoassociates.com', '', '', '', '', '', 0, '', '998314', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', 'Static website design with hosting. Domain with client. ', 'Vishwa', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2021-01-06', '29BXPPM1700A1ZR', 'erigoassociates@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-08-03', '[\"Website with hosting\"]', '[\"06-01-2021\"]', '[\"15000\"]', 0, 1), (724, 24, 69, 0, 3261, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Plumage Technology Private Limited', '9845087399', '', '', '', 'viewpakerindia.com', '', '', '', '', '', 0, '', '', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune', ' Pondicherry', '84. 4th cross, Panduranganagar, Bannergatta road,Bangalore,Karnataka,India', ' Pondicherry', 'Pondicherry', 'Pondicherry', '605009', '605009', 'India', 'India', 'Total Rs. 125000 plus GST. Rs. 25000 per year AMC', 'View paker India Pvt Ltd', 'CEO', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '34AAFCV0265N1Z3', 'shalini@viewpakerindia.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'PN', 'PN', 'NO', '', '[\"ERP Implementation\"]', '[\"18-02-2021\"]', '[\"125000\"]', 0, 1), (725, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Farah\'s Foundation', '8880030528', '', '', '', 'www.farahsfoundationtrust.com', '', '', '', '', '', 0, '', '', 'Flat no 302,4th floor, 3rd cross, Xavier layout, ', 'Flat no 302,4th floor, 3rd cross, Xavier layout, ', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560047', '560047', 'India', 'India', 'Rs. 8000 AMC per year', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'farah.zaina@yahoo.in', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2022-03-03', '[\"Dynamic website with payment gateway\"]', '[\"23-02-2021\"]', '[\"30000\"]', 0, 1), (726, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Saghamithra Rural Financial Services', '9480697107', '', '', '', 'sanghamithra.org', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560008', '560008', 'India', 'India', 'Website for 14K and 3.5K for hosting', 'Dileep', '', 'ACTIVE', '0000-00-00', '2021-03-17', '0000-00-00', '', 'sanghamithra.it@gmail.com', 'Client Side', 'Jayblues Hosting', 24, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2022-03-10', '[\"Dynamic Website\"]', '[\"\"]', '[\"17000\"]', 0, 1), (727, 24, 69, 0, 0, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'Sanghamithra Rural Financial Services', '9480697107', '', '', '', 'sanghamithra.org', '', '', '', '', '', 0, '', '', '', '', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560008', '560008', 'India', 'India', 'Website for 14k and hosting for 3.5K', 'Dileep M S', 'IT Admin', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAECS0038H1ZG', 'sanghamithra.it@gmail.com', 'Client Side', 'Jayblues Hosting', 24, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2022-03-10', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (728, 24, 69, 0, 0, 0, '', '24', '', '', '', '', '', '', '', '', 'Sri Krishna Sevashrama Hospital', '9980056305', '', '', '', '', '', '', '', '', '', 0, '5900', '', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus,', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus,', ' Bengaluru', '', ' Bengaluru', 'Karnataka', 'Karnataka', '560011', '560011', 'India', 'India', 'Dentics application with AMC', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'drsheshaprasad@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 24, 24, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2022-03-22', '[\"Dentics AMC\"]', '[\"23-03-2017\"]', '[\"5900\"]', 0, 1), (729, 188, 70, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Bittex Forex Ltd', '9251231111', '', '', '', 'bittexforex.com', '', '', '', '', '', 0, '', '', 'Bellandur', 'Bellandur', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '', '', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'jhabar@bittexforex.com', 'Jayblues Godaddy', 'Jayblues Hosting', 188, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'KA', 'KA', 'YES', '2022-04-12', '[\"Website+payment gateway+UI Development+Content writing+AWS configuration\"]', '[\"08-04-2021\"]', '[\"5,00,000\"]', 0, 1), (730, 20, 1, 0, 0, 0, '', '20', 'INACTIVE', '', '', '', '', '', '', '', 'iSmart Technologies', '9886051505', '', '', '', '', '', '', 'Customer', '', 'IT & ITES', 0, '25000', '', 'Jayalakshmipuram', 'jayalakshmipuram', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', '', '', '', 'Vijay', 'CEO', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'info.toismarnline@gmail.com, jnsoffice@gmail.com,', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-10-01', '[\"Application Development\"]', '[\"02-08-2021\"]', '[\"150000\"]', 0, 1), (731, 20, 1, 0, 3271, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Sadguru’s Facial & Dental Clinic', '9845198890', '', '', '', '', '', '', 'Customer', '', 'HEALTHCARE', 0, '5,000', '', '240, 1st Floor, Besides Hitech Kidney Stone Hospital 32nd Cross, 7th Block, Jayanagar', '240, 1st Floor, Besides Hitech Kidney Stone Hospital 32nd Cross, 7th Block, Jayanagar', 'Bangalore ', ',,,', 'Bangalore ', 'Karnataka', 'Karnataka', '560082', '560082', '', '', '', 'Dr Srinivas', 'Proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'srinivas@xyz.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', ' India', ' India', 'NO', '', '[\"Dentics Software\"]', '[\"\"]', '[\"66000 including GST\"]', 0, 1), (732, 190, 70, 0, 0, 0, '', '190', 'Active', '', '', '', '', '', '', '', 'AeroCision Aerocomp India Pvt. Ltd.', '9844856050', '', '', '', '', '', '', '', '', '', 0, '', '', '143-A1, Bommasandra Industrial Area, Bommasandra, Bangalore 560-099', '', '', '', '', '', '', '', '', '', '', '', 'Mr.Yash Patel', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'yash.patel@aerocisionindia.com', 'Jayblues Godaddy', 'Jayblues Hosting', 190, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"Website Development\"]', '[\"23-09-2021\"]', '[\"25000\"]', 0, 1), (733, 190, 70, 0, 0, 0, '', '190', 'Active', '', '', '', '', '', '', '', 'Som Trips', '8792338201', '', '', '', 'somtrips.com', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'Mohamud', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'somtripco@gmail.com', 'Client Side', 'Jayblues Hosting', 190, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (734, 190, 70, 0, 0, 0, '', '190', '', '', '', '', '', '', '', '', 'Siri Global Services', '8861536557', '', '', '', 'siriglobalservices.com', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'shane_joseph2003@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 190, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-10-07', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (735, 190, 70, 0, 0, 0, '', '190', 'Active', '', '', '', '', '', '', '', 'Siri Global Logistics', '8861536557', '', '', '', 'siriglobalservices.com', '', '', '', '', '', 0, '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'shane_joseph2003@yahoo.com', 'Jayblues Godaddy', 'Jayblues Hosting', 190, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2022-10-11', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (736, 190, 70, 0, 0, 0, '', '190', 'Active', '', '', '', '', '', '', '', 'SS TECHNOLOGIES', '9940077625', '', '', '', '', '', '', '', '', '', 0, '', '', 'Residency Apartments, No.6, VOC Road, Cantonment, Trichy, Tamilnadu – 620001', '', '', '', '', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '33CPSPK0843J2ZM', 'karthik_sr@hotmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 190, 190, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (737, 20, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Medusys', '9686200393', '', '9686200393', '', 'medusys.in', '', '', 'Vendor', '', 'HEALTHCARE', 0, '', '', 'Bangalore', 'Bangalore', '', '', '', '', '', '', '', '', '', '', 'Prashanth Magadi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29ABAFM9225E3Z7', 'prashanth@medusys.in', 'Client Side', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2023-02-01', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (738, 20, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'Apt Hr Consultancy', '9686793916', '', '9480077168', 'Raghavendra bidding ', 'https://www.apthrconsultancy.in', '', '', 'Customer', '', 'SERVICES', 0, '25000', '', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage,', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage,', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560038', '560038', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'support@apthrconsultancy.in', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2023-04-11', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (739, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'Government PU College Tumkur', '9448190096', '', '7829186794', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', 'Government PU college', 'Government PU college', 'Tumkur', '', 'Tumkur', '', '', '', '', '', '', '', 'Anand', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'gpucuu010.tumkur@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2023-05-12', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (740, 20, 1, 0, 3274, 0, '', '24', 'Active', '', '', '', '', '', '', '', 'St Josephs Central school', '9731622442', '', '', '', '', '', '', '', '', 'EDUCATION AND TRAINING', 0, '', '', '', '', 'Mysore', ',Mysore,,', 'Mysore', '', '', '570012', '0', '', '', '', 'Principal', 'Principal , St Josephs Central school', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'social.jayblues@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 0, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (741, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'Anjanadri Interiors ', '9845074822', '', '', '', 'thedessein.in', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '10000', '', '', '', 'Bangalore', '', 'Bangalore ', '', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'ramyasunil@thedessein.in', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2023-09-01', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (742, 20, 1, 0, 3273, 0, '', '20', '', '', '', '', '', '', '', '', 'Jyothi Ranjan', '9741111687', '', '', '', '', '', '', '', '', 'IT & ITES', 0, '', '', 'Electronic City', 'Electronic City', 'Bangalore', 'Electronic City,Bangalore,Karnataka,India', 'Bangalore', 'Karnataka', 'Karnataka', '0', '0', 'India', 'India', '', 'Jyothi', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'jyotiranjan_m@yahoo.com', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 1), (743, 193, 58, 0, 0, 0, '', '193', 'Acquired', '', '', '', '', '', '', '', 'Sumukha Diabetes Centre and Poly Clinic', '9448055503', '', '', '', 'drravikumar.in', '', '', 'Customer', '', 'HEALTHCARE', 15, '5000', '', 'No. 107, 1, 4th Main 11th Cross Rd, Vidyaranyapura', 'No. 107, 1, 4th Main 11th Cross Rd, Vidyaranyapura', 'Mysuru', '', 'Mysuru', 'Karnataka', 'Karnataka', '570008', '570008', 'India', 'India', '', 'Dr Ravi Kumar Y S', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'drravikumarys@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 193, 193, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2023-11-15', '[\"Webiste Development and Maintenance \"]', '[\"02-11-2022\"]', '[\"15000\"]', 0, 1), (744, 20, 1, 0, 0, 0, '', '20', 'Active', '', '', '', '', '', '', '', 'AMCAD International', '9448063607', '', '', '', '', '', '', 'Customer', '', '', 0, '', '', 'Mysore', 'Mysore', '', '', '', '', '', '', '', '', '', '', 'Chethan Ram', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'iamchethanram26@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2024-05-03', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (745, 20, 1, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Parivarthana School & College', '9448063607', '', '', '', 'http://parivarthanaschool.com', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', 'Srirangapatna', 'Srirangapatna', '', '', '', 'Karnataka', 'Karnataka', '571438', '571438', '', '', '', 'Chethan Ram', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'iamchethanram26@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (746, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'TEKZEN Systems', '9148660470', '', '7975974695', '', 'https://www.tekzensys.com', '', '', 'Partner', '', 'IT & ITES', 0, '10000000', '', 'Plot No 1348 & 1349, vijaynagar 1st stage ', 'Plot No 1348 & 1349, vijaynagar 1st stage ', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '570017', '570017', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AATFT0152H1ZV', 'guru@tekzensys.com', 'Client Side', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2024-07-02', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (747, 20, 1, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'AMCAD', '9448063607', '', '', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', 'Rajakamal Estate, Bannur Main Road Halagayyanahundi, near R R Wedding Bells', 'Rajakamal Estate, Bannur Main Road Halagayyanahundi, near R R Wedding Bells', 'Mysuru', '', 'Mysuru', 'Karnataka', 'Karnataka', '570028', '570028', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'iamchethanram26@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2024-07-03', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (748, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'MRK ENTERPRISES', '9148660470', '', '', '', '', '', '', 'Distributor', '', '', 0, '', '', '', '', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '', '', '', '', '', 'Guru Prakash', '', 'ACTIVE', '0000-00-00', '0000-00-00', '2023-10-05', '29BHWPK6331A2Z5', 'guru@tekzensys.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (749, 20, 1, 0, 0, 0, '', '24', '', '', '', '', '', '', '', '', 'Rotary Brindavan', '9880626176', '', '9448246745', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', 'Brindavan Extension 1st stage ', 'Brindavan Extension 1st stage ', 'Mysore', '', 'Mysore', 'Karnataka', 'Karnataka', '570020', '570020', 'India', 'India', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'rotarybrindavanschoolmysore@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (750, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'Dishaa laundromat PVT LTD', '7975199862', '', '', '', '', '', '', 'Customer', '', 'SERVICES', 0, '50000', '', 'No1First floor,1STCross,Prakruthi layout Singapura,VidyaranyapuraPost', 'No1First floor,1STCross,Prakruthi layout Singapura,VidyaranyapuraPost', 'Bangalore', '', 'Bangalore', 'Karnataka', 'Karnataka', '560097', '560097', 'India', 'India', '', 'Shailesh Narayanappa', 'Director', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'dishaalaundromat@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2024-12-01', '[\"ERP Services\"]', '[\"\"]', '[\"\"]', 0, 0), (751, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'JSS Science and Technology University ', '9739733993', '', '', '', '', '', '', '', '', '', 0, '', '', '', '', 'Mysore', '', '', 'Karnataka', '', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '2PAAATJ2722Q1Z8', 'astreg@jssstuniv.in', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (752, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'IKENREG CONSULTANCY SERVICES', '9686793916', '', '9480077168', 'Intiprocure Private Limit', 'www.intiprocure.com', '', '', 'Customer', '', 'ENGINEERING AND CAPITAL GOODS', 0, '', '998314', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First', 'Stage, Bangalore, Bengaluru (Bangalore) Urban,,', '', 'Stage, Bangalore, Bengaluru (Bangalore) Urban,,', '', '', '560038', '560038', 'India', 'India', '', 'Raghavendra', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AAJFI0538E1ZG', 'nraghub@live.com,info@ikenreg.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', 'Karnataka', 'Karnataka', 'YES', '2025-02-21', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (753, 195, 61, 74, 0, 0, '', '195', '', '', '', '', '', '', '', '', 'Bharath', '6360184276', '', '', '', '', '', '', '', '', 'OTHERS', 0, '', '', '', '', '', ',,,', '', '', '', '0', '0', '', '', '', 'Bharath', 'Proprietor', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'bindutravelz01@gmail.com', '', '', 0, 0, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (754, 20, 1, 0, 0, 0, '', '20', '', '', '', '', '', '', '', '', 'Handithavalli Grama Panchayat', '9743826081', '', '', '', '', '', '', 'Customer', '', 'EDUCATION AND TRAINING', 0, '', '', 'Handithavalli Grama', 'Handithavalli Grama', 'Periyapatana taluk Mysore Dist', '', 'Periyapatana taluk Mysore Dist', 'Karnataka ', 'Karnataka ', '', '', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '', 'Anil@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'NO', '', '[\"\"]', '[\"\"]', '[\"\"]', 0, 0), (755, 20, 1, 0, 0, 0, '', '20', 'Acquired', '', '', '', '', '', '', '', 'Mysore Nirmithi Kendra ', '7259019532', '', '7259019535', '', 'https://nirmithikendramysore.com/', '', '', 'Customer', '', 'INFRASTRUCTURE', 0, '', '', '#98, Behind Regional College Bogadi 2nd Stage ', '#98, Behind Regional College Bogadi 2nd Stage ', 'Mysuru', '', 'Mysuru', 'Karnataka', 'Karnataka', '570026', '570026', '', '', '', '', '', 'ACTIVE', '0000-00-00', '0000-00-00', '0000-00-00', '29AABAM3623M1ZD', 'mnkmys@gmail.com', 'Jayblues Godaddy', 'Jayblues Hosting', 20, 20, '0000-00-00 00:00:00', '0000-00-00', 'Account', '', '', 'YES', '2025-09-25', '[\"ERP Application\"]', '[\"01-09-2025\"]', '[\"65000\"]', 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `new_contact` -- CREATE TABLE `new_contact` ( `contact_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `contact_owner` text NOT NULL, `lead_source` text NOT NULL, `name_type` varchar(20) NOT NULL, `first_name` text NOT NULL, `last_name` text NOT NULL, `account_name` text NOT NULL, `title` text NOT NULL, `Email` varchar(60) NOT NULL, `department` text NOT NULL, `aniversary_date` date NOT NULL, `phone` varchar(60) NOT NULL, `home_phone` varchar(60) NOT NULL, `other_phone` varchar(60) NOT NULL, `fax` varchar(60) NOT NULL, `mobile` varchar(60) NOT NULL, `DOB` date NOT NULL, `assistant` text NOT NULL, `asst_phone` varchar(60) NOT NULL, `report_to` text NOT NULL, `email_otp_out` varchar(60) NOT NULL, `skype_id` varchar(60) NOT NULL, `secondary_email` varchar(60) NOT NULL, `twitter` varchar(60) NOT NULL, `mailing_street` varchar(250) NOT NULL, `other_street` varchar(250) NOT NULL, `mailing_city` text NOT NULL, `other_city` text NOT NULL, `mailing_state` varchar(250) NOT NULL, `other_state` varchar(250) NOT NULL, `contact_type` varchar(256) NOT NULL, `mailing_zip_code` varchar(250) NOT NULL, `other_zip_code` varchar(250) NOT NULL, `mailing_country` text NOT NULL, `other_country` text NOT NULL, `description` varchar(250) NOT NULL, `contact_roles` text NOT NULL, `created_at` datetime NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `new_contact` -- INSERT INTO `new_contact` (`contact_id`, `user_id`, `role_id`, `potential_id`, `account_id`, `contact_owner`, `lead_source`, `name_type`, `first_name`, `last_name`, `account_name`, `title`, `Email`, `department`, `aniversary_date`, `phone`, `home_phone`, `other_phone`, `fax`, `mobile`, `DOB`, `assistant`, `asst_phone`, `report_to`, `email_otp_out`, `skype_id`, `secondary_email`, `twitter`, `mailing_street`, `other_street`, `mailing_city`, `other_city`, `mailing_state`, `other_state`, `contact_type`, `mailing_zip_code`, `other_zip_code`, `mailing_country`, `other_country`, `description`, `contact_roles`, `created_at`, `delete_status`) VALUES (1, 1, 1, 0, 0, '20', 'Existing Client Reference', 'Mr.', 'Shanmuka', 'Ragav', '186', '', 'shanmukha26@yahoo.com', '', '0000-00-00', '9901084243', '', '', '', '9901084243', '1970-01-01', '', '', '', '', '', '', '', 'Bangalore ', 'Bangalore ', 'Bangalore', 'Bangalore', 'Bangalore', 'Bangalore', 'Customer', '560001', '560001', 'Bangalore', 'Bangalore', 'Nothing', '', '2018-07-25 00:00:00', 'ACTIVE'), (2, 1, 1, 0, 0, '20', 'Existing Client Reference', 'Dr.', 'Sudarshan ', 'Murthy', '487', 'Chairman', 'drsurty@gmail.com', 'General Medicine', '0000-00-00', '9448055503', '', '', '', '9448055503', '1970-01-01', '', '', '', '', '', '', '', 'jss hospital mysore', 'mysore', 'mysore', 'mysore', 'karnataka', 'karnataka', 'Customer', '571110', '571110', 'India', 'India', 'Need to send quotation', '', '2018-07-27 00:00:00', 'ACTIVE'), (3, 1, 1, 0, 0, '20', 'Public Relation', 'Mr.', 'Guruprasad', 'duu', '482', '', 'prasad.gurusn@gmail.com', '', '0000-00-00', '9739399051', '', '', '', '9739399051', '1970-01-01', '', '', '', '', '', '', '', '2/3, Om Shakthi Temple Main Road, Yelachenahalli, Kanakapura Road', '2/3, Om Shakthi Temple Main Road, Yelachenahalli, Kanakapura Road', 'Bangalore ', 'Bangalore ', 'karnataka', 'karnataka', 'Customer', ' 560078', ' 560078', 'India', ' india', 'Static website', '', '2018-07-30 00:00:00', 'ACTIVE'), (4, 1, 1, 0, 0, '24', '', 'Mr.', 'Mohammed', 'Imran', '76', '', 'goodrichpestcontrol@gmail.com', '', '0000-00-00', '08042177775', '', '', '', '9743658497', '1970-01-01', '', '', '', '', '', '', '', '#3, 4th cross, 1st main, Maruthi nagar, Madivala', '#3, 4th cross, 1st main, Maruthi nagar, Madivala', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', 'Customer', '560068', '560068', 'India', 'India', 'Good rich pest control', '', '2018-08-31 00:00:00', 'ACTIVE'), (5, 36, 57, 0, 0, '20', 'Seminer Partner', 'Mr.', 'Mohinder .N', 'Raj', '', 'G Madhegowda Institute of Technology', 'placementcellgmit@gmail.com', 'Assistant professor', '1970-01-01', '9986062109', '', '', '', '9986062109', '1970-01-01', '', '', '', '', '', '', '', 'Bharathinagar,maddur taluk', 'Bharathinagar,maddur taluk', 'mandya', 'mandya', 'karnataka', 'karnataka', 'HR and Consultants', '571422', '571422', 'India', 'India', 'for Nparrots', '', '2018-09-25 00:00:00', 'ACTIVE'), (6, 1, 1, 0, 0, '24', 'Online Store', 'Mr.', 'Raghavendra', 'N', '', '', 'nraghub@live.com', '', '1970-01-01', '9480077168', '', '', '', '9686793916', '1970-01-01', '', '', '', '', '', '', '', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar, ', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar, ', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', 'Customer', '560010', '560010', 'India', 'India', 'Online bidding appication', '', '2018-10-01 00:00:00', 'ACTIVE'), (7, 36, 57, 0, 0, '20', '', 'Mr.', 'Avinash', ' V . R', '', 'Info Edge(india) Ltd', 'avinash.r@naukri.com', '', '1970-01-01', '0821 4281103', '', '', '080 25325082', '7829303077', '1970-01-01', '', '', '', '', '', '', '', 'N0 2/A \'Honneru\' adichunchanagiri road, JTK layout, 5th phase ,Kuvempunagar', 'N0 2/A \'Honneru\' adichunchanagiri road, JTK layout, 5th phase ,Kuvempunagar', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', 'Vendor', '570023', '570023', 'India', 'India', 'naukri.com', '', '2018-10-02 00:00:00', 'ACTIVE'), (8, 36, 57, 0, 0, '20', '', 'Mr.', 'Amjad ', 'Pathan', '', '', 'amjad.pathan@arkinfo.co.in', 'Territory Manager', '1970-01-01', '9122 42018000', '', '', '', '8939921091', '1970-01-01', '', '', '', '', '', '', '', '12 & 13, janki center, off vera Desai Rd,Andheri(w),', '12 & 13, janki center, off vera Desai Rd,Andheri(w),', 'Mubai ', 'Mubai ', 'India', 'India', 'Reseller', '400053', '400053', 'India', 'India', 'Manager', '', '2018-10-02 00:00:00', 'ACTIVE'), (9, 36, 57, 0, 0, '20', '', 'Mr.', 'Amogh', 'R', '', '', 'amogh@gmail.com', 'Furnitures', '1970-01-01', '9731939284', '', '', '', '7204405844', '1970-01-01', '', '', '', '', '', '', '', '#53, NGO\'s Colony, Rajendranagar', '#53, NGO\'s Colony, Rajendranagar', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570007', '570007', 'India', 'India', 'Seller', '', '2018-10-02 00:00:00', 'ACTIVE'), (10, 36, 57, 0, 0, '20', '', 'Mr.', 'vasavamba', 'super Bazaar', '', '', 'vasamba@gmail.com', 'Groceries', '1970-01-01', '0821 2423517', '', '', '', '08212423517', '1970-01-01', '', '', '', '', '', '', '', '97, D D Urs Road ', '97, D D Urs Road ', 'Mysore', 'Mysore', 'karnataka', 'karnataka', '', '570001', '570001', 'India', 'India', 'seller', '', '2018-10-02 00:00:00', 'ACTIVE'), (11, 36, 57, 0, 0, '20', '', 'Dr.', 'Akila', 'B.M', '', 'Sapthagiri Dental Clinic', 'drakila15@rediffmail.com', 'B.D.S', '1970-01-01', '0821 2462223', '', '', '', '0821 2544693', '1970-01-01', '', '', '', '', '', '', '', 'No.2 , Adichunchangiri road , 5th phase, J.T.K. Layout, Kuvempunagar', 'No.2 , Adichunchangiri road , 5th phase, J.T.K. Layout, Kuvempunagar', 'Mysore', 'Mysore', 'karnataka', 'karnataka', 'HR and Consultants', '570023', '570023', 'India', 'India', 'Dentist', '', '2018-10-02 00:00:00', 'ACTIVE'), (12, 36, 57, 0, 0, '20', '', 'Ms.', 'Joshua', 'N', '', 'Rehoboth', 'joshuna@thesiswritingsupport.com', 'academic service', '1970-01-01', '9731988227', '', '', '', '9731988227', '1970-01-01', '', '', '', '', '', '', '', '45, 3rd floor, old race Course road Austin Town ', '45, 3rd floor, old race Course road Austin Town ', 'Bangalore', 'Bangalore', 'karnataka', 'karnataka', '', '560047', '560047', 'India', 'India', 'Cheif exeutive officer', '', '2018-10-02 00:00:00', 'ACTIVE'), (13, 36, 57, 0, 0, '20', '', 'Mr.', 'Prashanth', 'A R', '', 'Vivaswann Elevate', 'prashanth@vivaswann.in', 'Bussiness Development', '1970-01-01', '0821 4194419', '', '', '', '9632227787', '1970-01-01', '', '', '', '', '', 'info@visaswann.in', '', '#376/B, 2nd floor sahukar Channaiah Road T. K Layout', '#376/B, 2nd floor sahukar Channaiah Road T. K Layout', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570009', '570009', 'India', 'India', 'Services and It solution', '', '2018-10-02 00:00:00', 'ACTIVE'), (14, 36, 57, 0, 0, '20', '', 'Mr.', 'Avinash', 'seetharam', '', 'Yakawa India Private Limited', 'avinash_s@yaskawa.in', 'Manager', '1970-01-01', '080 42441900', '', '', '080 42441901', '9480027149', '1970-01-01', '', '', '', '', '', '', '', '17/A, 2nd main, Electronic city, Phase 1 hosur Road ', '17/A, 2nd main, Electronic city, Phase 1 hosur Road ', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', '', '560100', '560100', 'India', 'India', 'Mangaer', '', '2018-10-02 00:00:00', 'ACTIVE'), (15, 36, 57, 0, 0, '20', '', 'Mr.', 'Abhinandan', 'H', '', 'Docket Law Associates', 'advabhinandan@gmail.com', 'Lawoyr - High court of karnataka', '1970-01-01', '8105796222', '', '', '', '9964426903', '1970-01-01', '', '', '', '', '', '', '', 'n0. 7/4 - E, %th main, !st cross, Jayanagar', 'n0. 7/4 - E, %th main, !st cross, Jayanagar', 'Mysore', 'Mysore', 'karnataka', 'karnataka', '', '570014', '570014', 'India', 'India', 'Advocate and legal Constultant', '', '2018-10-02 00:00:00', 'ACTIVE'), (16, 36, 57, 0, 0, '20', '', 'Mr.', 'Anand ', 'K', '', 'GSK', 'anand.x.k@gsk.com', 'sales manager', '1970-01-01', '04430571108', '', '04430571118', '044 3057 1100', '9008056591', '1970-01-01', '', '', '', '', '', '', '', 'KRM Tower , 6th Floor #1, Harrington Road , Chetpet', 'KRM Tower , 6th Floor #1, Harrington Road , Chetpet', 'Chennai', 'Chennai', 'Karnataka', 'Karnataka', '', '600031', '600031', 'India', 'India', 'Zonal Expert Sales manager', '', '2018-10-02 00:00:00', 'ACTIVE'), (17, 36, 57, 0, 0, '20', '', 'Mr.', 'Srinivas', 'M N', '', 'Trishul Generators', 'trishul_electric@yahoo.co.in', 'sales and service', '1970-01-01', '9845118777', '', '', '', '9845118777', '1970-01-01', '', '', '', '', '', '', '', '#1665/3, seetha rama rao Road K.R Mohalla', '#1665/3, seetha rama rao Road K.R Mohalla', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570004', '570004', 'India', 'India', 'sales and service', '', '2018-10-02 00:00:00', 'ACTIVE'), (18, 36, 57, 0, 0, '20', '', 'Mr.', 'Sudarshan', 'K', '', 'Aditya Birla Financial Service', 'sudarshan.k@birlasunlife.com', 'Financial company', '1970-01-01', '9164003444', '', '', '', '9164003444', '1970-01-01', '', '', '', '', '', '', '', '#2918/51, patel mansion ,second floor , 1B, 1st main, saraswathi puram', '#2918/51, patel mansion ,second floor , 1B, 1st main, saraswathi puram', 'mysore', 'mysore', 'karnataka', 'karnataka', '', '570009', '570009', 'India', 'India', 'financial service', '', '2018-10-02 00:00:00', 'ACTIVE'), (19, 36, 57, 0, 0, '20', '', 'Dr.', 'Hemalatha', 'Sanjay', '', 'Ashirwad Dental Clinic', 'iamdrhema@gmail.com', 'orthodontist', '1970-01-01', '080 - 26638291', '', '080 65342714', '', '080 26657884', '1970-01-01', '', '', '', '', '', 'ashirwadclinicjpnagar@gmail.com', '', '680,17th cross , 26th main, 6th phase Jp nagar', '680,17th cross , 26th main, 6th phase Jp nagar', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', '', '560078', '560078', 'India', 'India', 'existing client', '', '2018-10-02 00:00:00', 'ACTIVE'), (20, 36, 57, 0, 0, '20', '', 'Mr.', 'Shashidhar ', 'Jakkali', '', 'Lets start', 'shashidhargj@lets-start.in', 'event organiser', '1970-01-01', '9916175969', '', '', '', '9916175969', '1970-01-01', '', '', '', '', '', '', '', '3rd floor, S A Arcade, No.205, 24th main, JP nagar, 5th phase, ', '3rd floor, S A Arcade, No.205, 24th main, JP nagar, 5th phase, ', 'Bangalore', 'Bangalore', 'karnataka', 'karnataka', '', '560078', '560078', 'India', 'India', 'event organisation', '', '2018-10-02 00:00:00', 'ACTIVE'), (21, 36, 57, 0, 0, '20', '', 'Mr.', 'Abhishek', 'R', '', 'Heritage Sports', 'heritagesportsmysuru@gmail.com', 'sports', '1970-01-01', '0821 4851808', '', '', '', '7022942893', '1970-01-01', '', '', '', '', '', '', '', '#656/c,2nd floor, 17th cross, opp , mohan bandar , saraswati puram', '#656/c,2nd floor, 17th cross, opp , mohan bandar , saraswati puram', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570009', '570009', 'India', 'India', 'sports', '', '2018-10-02 00:00:00', 'ACTIVE'), (22, 36, 57, 0, 0, '20', '', 'Mr.', 'Raghavendra', 'H V', '', 'Media links', 'medialinksmysore@gmail.com', 'Media', '1970-01-01', '0821 4266424', '', '', '', '9845623035', '1970-01-01', '', '', '', '', '', '', '', '#2271,Adichunchanagiri Road \'K\' Block, Kuvempunagar', '#2271,Adichunchanagiri Road \'K\' Block, Kuvempunagar', 'Mysore', 'Mysore', 'karnataka', 'karnataka', '', '570023', '570023', 'India', 'India', 'Media', '', '2018-10-02 00:00:00', 'ACTIVE'), (23, 36, 57, 0, 0, '20', '', 'Mr.', 'Anand Kumar', 'V', '', 'Orb energy', 'mysore@orbenergy.com', '', '1970-01-01', '0821 2540200', '', '', '', '9482860895', '1970-01-01', '', '', '', '', '', '', '', '#CH18, 6th main , 3rd cross, Saraswathipuram ', '#CH18, 6th main , 3rd cross, Saraswathipuram ', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570009', '570009', 'India', 'India', 'Project manager', '', '2018-10-02 00:00:00', 'ACTIVE'), (24, 36, 57, 0, 0, '20', '', 'Mr.', 'Prathap kumar', 'p', '', 'ESS & ESS ', 'prathapkumar@essandess.in', 'Business Development Executive', '1970-01-01', '0821 2566789', '', '', '', '9008618333', '1970-01-01', '', '', '', '', '', 'mktdept@essandess.in', '', '#13, 1st floor, New Udaya Ravi main road JT Koppal, Kuvempunagar', '#13, 1st floor, New Udaya Ravi main road JT Koppal, Kuvempunagar', 'Mysore', 'Mysore', 'karnataka', 'karnataka', '', '570023', '570023', 'India', 'India', 'Existing client', '', '2018-10-02 00:00:00', 'ACTIVE'), (25, 36, 57, 0, 0, '20', '', 'Mr.', 'shivappa', 'K', '', 'Computer plaza', 'computer_plaza2000@yahoo.com', 'Dealers', '1970-01-01', '0821 4264735', '', '', '', '9448049735', '1970-01-01', '', '', '', '', '', '', '', '#1767, Lakshmipuram Complex, 1st Floor, Behind vani vilas market, Beside Navagraha Ganapathi temple K R mohalla', '#1767, Lakshmipuram Complex, 1st Floor, Behind vani vilas market, Beside Navagraha Ganapathi temple K R mohalla', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570004', '570004', 'India', 'India', 'Business Head', '', '2018-10-02 00:00:00', 'ACTIVE'), (26, 36, 57, 0, 0, '20', '', 'Mr.', 'santosh ', 'P S', '', 'sansu Inc', 'sansuinc@gmail.com', 'Interior Decorators', '1970-01-01', '9964060500', '', '', '', '9964060500', '1970-01-01', '', '', '', '', '', '', '', '#7 , 1st cross, Muneshwara Nagar, Bommanahalli, ', '#7 , 1st cross, Muneshwara Nagar, Bommanahalli, ', 'Bangalore', 'Bangalore', 'karnataka', 'karnataka', '', '560068', '560068', 'India', 'India', 'Decorators', '', '2018-10-02 00:00:00', 'ACTIVE'), (27, 36, 57, 0, 0, '20', '', 'Mr.', 'Imran', 'Pasha', '', 'IBS ', 'ammysore@ibsindia.org', 'Assistant Manager', '1970-01-01', '9901599859', '', '', '', '9901599859', '1970-01-01', '', '', '', '', '', '', 'twitter.com/ibsindia 1', '#361, Sterling Arcade, 3rd floor,1st main,7th block,Kormangala', '#361, Sterling Arcade, 3rd floor,1st main,7th block,Kormangala', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', '', '560095', '560095', 'India', 'India', 'Assistant Manager\r\n', '', '2018-10-03 00:00:00', 'ACTIVE'), (28, 36, 57, 0, 0, '20', '', 'Mr.', 'Shiva', 'Jayagopal', '', 'Win Vinaya Info Systems', 'shiva.jayagopal@winvinaya.com', 'Director', '1970-01-01', '9676433359', '', '', '', '9676433359', '1970-01-01', '', '', '', '', '', '', '', 'xxxxx', 'xxxxx', 'xxxx', 'xxxx', 'Karnataka', 'Karnataka', '', 'xxxx', 'xxxx', 'India', 'India', 'software Test Consulting', '', '2018-10-03 00:00:00', 'ACTIVE'), (29, 36, 57, 0, 0, '20', '', 'Mr.', 'Murali', 'B K', '', 'GRS Fantasy Park', 'grsmktg@yahoo.in', 'Marketing Executive', '1970-01-01', '8277346011', '', '', '', '9902136861', '1970-01-01', '', '', '', '', '', 'info@grsfantasypark.com', '', 'KRS Road, Metagalli', 'KRS Road, Metagalli', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570016', '570016', 'India', 'India', 'Amusement Park', '', '2018-10-03 00:00:00', 'ACTIVE'), (30, 36, 57, 0, 0, '20', '', 'Mr.', 'Shivanna', 'S', '', 'IDBI Bank', 'www,idbi.com', 'Sales Executive', '1970-01-01', '08212545424', '', '', '', '9900372728', '1970-01-01', '', '', '', '', '', '', '', 'Anand arcade, M I G - 11,Saraswathipuram , Vm Double Rd, Kuvempunagar', 'Anand arcade, M I G - 11,Saraswathipuram , Vm Double Rd, Kuvempunagar', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570009', '570009', 'India', 'India', 'Assignment', '', '2018-10-03 00:00:00', 'ACTIVE'), (31, 36, 57, 0, 0, '20', '', 'Mr.', 'Mahendra', 'Jain', '', '', 'mahendrafootline@yahoo.com', 'sports', '1970-01-01', '9448721138', '', '', '', '9449825160', '1970-01-01', '', '', '', '', '', '', '', '#100, D.devaraja urs Road', '#100, D.devaraja urs Road', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570001', '570001', 'India', 'India', 'sports', '', '2018-10-03 00:00:00', 'ACTIVE'), (32, 36, 57, 0, 0, '20', '', 'Mr.', 'Ashvin', 'A', '', '', 'speedprintservice64@gmail.com', 'print services', '1970-01-01', '0821 4006458', '', '', '', '9632019096', '1970-01-01', '', '', '', '', '', '', '', '#121, \'N\' Block, Near Bus - deport , Kuvempunagar', '#121, \'N\' Block, Near Bus - deport , Kuvempunagar', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570023', '570023', 'India', 'India', 'print services', '', '2018-10-03 00:00:00', 'ACTIVE'), (33, 36, 57, 0, 0, '20', '', 'Mr.', 'Yashas ', 'narayan', '', '', 'yashas@jyestaconstructions.com', 'constuction', '1970-01-01', '9738404534', '', '', '', '9164427777', '1970-01-01', '', '', '', '', '', '', '', '#336, T. K Layout, opp kamakshi Hospital sarawathi puram', '#336, T. K Layout, opp kamakshi Hospital sarawathi puram', 'Mysore', 'Mysore', 'karnataka', 'karnataka', '', '570009', '570009', 'India', 'India', 'Exisiting client', '', '2018-10-03 00:00:00', 'ACTIVE'), (34, 36, 57, 0, 0, '20', '', 'Mr.', 'Anil Kumar', 'S.S', '', 'Hi Tech System', 'anilkumar@gmail.com', 'solor services', '1970-01-01', '9964733988', '', '', '', '9449990513', '1970-01-01', '', '', '', '', '', '', '', '#95/B, 9th main, @nd cross, Saraswathipuram ', '#95/B, 9th main, @nd cross, Saraswathipuram ', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', '', '570009', '570009', 'India', 'India', 'UPS , Sale and service', '', '2018-10-03 00:00:00', 'ACTIVE'), (35, 36, 57, 0, 0, '20', '', 'Ms.', 'Vani', 'K', '', '', 'vani@visparktechnologies.com', 'Managing Director', '1970-01-01', '8042244836', '', '', '', '8042244836', '1970-01-01', '', '', '', '', '', '', '', '17/1, SVNR Complex, 2nd floor , 24th main road, Jp nagar 5th phase ', '17/1, SVNR Complex, 2nd floor , 24th main road, Jp nagar 5th phase ', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', '', '560078', '560078', 'India', 'India', 'Managing director', '', '2018-10-03 00:00:00', 'ACTIVE'), (36, 36, 57, 0, 0, '20', '', 'Mr.', 'Venkata', 'Krishna', '', 'Pro eDGE', 'venkat.k@proedge.co', '', '1970-01-01', '7760889222', '', '', '', '7760889222', '1970-01-01', '', '', '', '', '', '', '', 'No.1854, 11th \'A\' main,39th cross, 4th \'T\' Block Jayanagar', 'No.1854, 11th \'A\' main,39th cross, 4th \'T\' Block Jayanagar', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', '', '560011', '560011', 'India', 'India', 'SKILL DEVELOPMENT', '', '2018-10-03 00:00:00', 'ACTIVE'), (37, 36, 57, 0, 0, '36', 'Others', 'Mr.', 'Chidanand', 'ABCD', '', 'Shrenzo careers', 'chidanand@shrenzocareers.com', 'Solution Manager', '1970-01-01', '7847841056', '', '0821 426399', '', '7847841056', '1970-01-01', '', '', '', '', '', '', '', '#1091, Near Law Court, Lakshmipuram', '#1091, Near Law Court, Lakshmipuram', 'Mysore', 'Mysore', 'Karnataka', 'Karnataka', 'Customer', '570005', '570005', 'India', 'India', 'Client visited Office for change in website (www.shrenzocareers.com)', '', '2018-12-17 00:00:00', 'ACTIVE'), (38, 36, 57, 0, 0, '36', '', 'Mr.', 'Ranjan', 'Ranjan', '', '', 'XYZ@gmail.com', '', '1970-01-01', '000000000000', '', '', '', '9606065566', '1970-01-01', '', '', '', '', '', '', '', 'Magadi Road', 'Magadi Road', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', 'Customer', '000000', '000000', 'India', 'India', 'Contact this person in the interval (printing press he has more Requirements)', '', '2018-12-21 00:00:00', 'ACTIVE'), (39, 36, 57, 0, 0, '36', '', 'Ms.', 'Ragini', 'G', '', 'Avyukt Pharmaceutical', 'avproductspromo@gmail.com', 'Pharmaceuticals', '1970-01-01', '8095309359', '', '080-23523878', '', '8095309359', '1970-01-01', '', '', '', '', '', '', '', 'No. 929, 3rd cross road, 8th \" A\" Main Road, praksh nagar, 3rd stage, Rajajinagar,', 'No. 929, 3rd cross road, 8th \" A\" Main Road, praksh nagar, 3rd stage, Rajajinagar,', 'Bangalore', 'Bangalore', 'Karnataka', 'Karnataka', 'Customer', '560021', '560021', 'India', 'India', 'http://www.ayuuktpharmaceutical.co.in/ - Redesign', '', '2019-01-28 00:00:00', 'ACTIVE'), (40, 20, 1, 0, 0, '20', 'External Reference', 'Mr.', 'sanjay', 'kumar', '', '', 'sanjay@jayblues.com', '', '1970-01-01', '989898989898', '', '', '', '98987987987987', '1970-01-01', '', '', '', '', '', '', '', 'mysore', 'mysore', 'mysore', 'mysore', 'mysore', 'mysore', 'Analyst', 'mysore', 'mysore', 'mysore', 'mysore', 'demo', '', '2019-06-25 00:00:00', 'ACTIVE'); -- -------------------------------------------------------- -- -- Table structure for table `new_potential` -- CREATE TABLE `new_potential` ( `potential_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `role_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `potential_owner` text NOT NULL, `amount` varchar(250) NOT NULL, `potential_type` varchar(50) NOT NULL, `potential_status` varchar(250) NOT NULL, `potential_name` text NOT NULL, `closing_date` date NOT NULL, `account_name` text NOT NULL, `stage` varchar(250) NOT NULL, `type` text NOT NULL, `probability` varchar(250) NOT NULL, `next_step` varchar(250) NOT NULL, `expected_revenue` varchar(250) NOT NULL, `lead_source` varchar(250) NOT NULL, `campaign_source` varchar(250) NOT NULL, `contact_name` text NOT NULL, `description` varchar(250) NOT NULL, `contact_id` int(11) NOT NULL, `address` text NOT NULL, `email_id` varchar(256) NOT NULL, `phone_number` varchar(25) NOT NULL, `p_type` enum('POTENTIAL') NOT NULL, `website` text NOT NULL, `reason` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `sec_email` text NOT NULL, `street` text NOT NULL, `city` text NOT NULL, `state` text NOT NULL, `ratings` text NOT NULL, `zip_code` text NOT NULL, `country` text NOT NULL, `service_name` text NOT NULL, `service_date` text NOT NULL, `service_amount` text NOT NULL, `converted_next_level` text NOT NULL, `annual_revenue` text NOT NULL, `fax` text NOT NULL, `industry` text NOT NULL, `designation` text NOT NULL, `no_of_employees` text NOT NULL, `email_otp` varchar(100) NOT NULL, `skype_id` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `new_potential` -- INSERT INTO `new_potential` (`potential_id`, `user_id`, `role_id`, `account_id`, `potential_owner`, `amount`, `potential_type`, `potential_status`, `potential_name`, `closing_date`, `account_name`, `stage`, `type`, `probability`, `next_step`, `expected_revenue`, `lead_source`, `campaign_source`, `contact_name`, `description`, `contact_id`, `address`, `email_id`, `phone_number`, `p_type`, `website`, `reason`, `delete_status`, `sec_email`, `street`, `city`, `state`, `ratings`, `zip_code`, `country`, `service_name`, `service_date`, `service_amount`, `converted_next_level`, `annual_revenue`, `fax`, `industry`, `designation`, `no_of_employees`, `email_otp`, `skype_id`) VALUES (1, 1, 1, 0, '20', '', 'Dr.', '', 'Sudarshan', '1970-01-01', '487', 'Value Proposition', 'New Business', '80', '', '30000', 'Employee Referral', '', 'Sudarshan', 'immediate', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (2, 1, 1, 0, '20', '20000', 'Mr.', '', 'Guruprasad', '2018-08-06', '482', 'Proposal/Price Quote', 'Existing Business', '80', '', '60000', 'Public Relations', '', 'Guru prasad', '', 3, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (3, 1, 1, 487, '20', '60000', 'Mr.', '', 'sadanand', '2018-08-10', '487', 'Negotiation/Review', 'Existing Business', '80', 'Send Quotation', '60000', 'Employee Referral', '', 'Sadanand ', 'Send Quotation', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (4, 1, 1, 487, '20', '60000', 'Dr.', '', 'JSS Hospital', '2018-08-10', '487', 'Negotiation/Review', 'Existing Business', '80', 'send proposal', '60000', 'External Referral', '', 'Sadanand', 'send proposal', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (6, 1, 1, 197, '20', '40000', 'Mr.', '', 'Avinash', '2018-08-15', '197', 'Proposal/Price Quote', 'Existing Business', '80', '', '40000', 'Partner', '', 'Pradeep', 'ABP Portal New Requirment ', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (7, 1, 1, 197, '24', '30000', 'Mr.', '', 'pradeep', '2018-08-15', '197', 'Proposal/Price Quote', 'Existing Business', '70', '', '30000', 'Partner', '', 'pradeep', 'Robotics', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (9, 36, 57, 0, '20', '4720', 'Mr.', '', 'Nithin', '1970-01-01', '286', 'Proposal/Price Quote', 'Existing Business', '10', '', '4720', 'Public Relations', '', 'Nithin', 'Additional changes for bulk sms and logo ', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (10, 1, 1, 159, '20', '', 'Mr.', '', 'Navin', '2018-08-20', '159', 'Closed Won', 'Existing Business', '70', '', '43000', 'Partner', '', 'Navin', 'server Renewal 6 months .', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (11, 1, 1, 297, '20', '', 'Mr.', 'CONVERTED', 'General Manager', '1970-01-01', '297', 'CLOSED', 'Existing Business', '50', '', '30000', 'Partner', '', 'VENKATESH', 'Changes ', 0, '', '', '', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (12, 1, 1, 207, '20', '', 'Mr.', 'CONVERTED', 'Navin', '2018-08-29', '207', 'CLOSED', 'Existing Business', '100', 'Take amount ', '21500', 'Partner', '', 'Navin', 'Server Renewal .', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (13, 1, 1, 0, '20', '45000', 'Mr.', '', 'Sadanand ', '1970-01-01', '487', 'CLOSED', 'Existing Business', '50', '', '45000', 'Partner', '', 'Sadanand', 'Auditorium Application', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (17, 24, 69, 0, '24', '400000', 'Mr.', '', 'Manjunath', '2018-10-05', '67', 'Proposal/Price Quote', 'Existing Business', '60', '', '400000', 'Employee Referral', '', 'Subramanya', 'Existing ERP upgradation and new server quote', 0, '', '', '', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (19, 36, 57, 0, '36', '20,000', 'Mr.', '', 'Deepak / Selva', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', 'Nithin', 'Same as Yuva sene Website with CMS contact on 5/11/2018,NS, Not Required', 0, '', '', '9606194852', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (20, 24, 69, 0, '24', '', '', '', 'Naveen', '0000-00-00', '', '', '', '', '', '', 'Urban Clap', '', '', 'redesign of website', 0, '', '', '', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (21, 36, 57, 0, '36', '8000', 'Dr.', '', 'Smitha', '1970-01-01', '', '', '', '', '', '', 'Urban Clap', '', '', 'Static Website ( same as ora Dental Care)', 0, '', '', '9986891247 ', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (22, 36, 57, 0, '36', '40,000', 'Mr.', '', 'Sarosh', '1970-01-01', '', 'Proposal/Price Quote', 'New Business', '', '', '', 'Just Dial', '', '', 'Super Market', 0, '', '', '8310139513', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (23, 36, 57, 0, '36', '', 'None', '', 'Prashanth', '1970-01-01', '', '', '', '', '', '', 'Just Dial', '', '', 'Company Address Sent - client will visit office on 5/11/2018 , timing not Fixed,Switch off', 0, '', '', '9591160467', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (24, 36, 57, 0, '36', '', 'None', '', 'Soul', '1970-01-01', '', '', '', '', '', '', 'Just Dial', '', '', 'Executive to meet - 3/11/2018 - schedule before 12', 0, '', '', '9886527606', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (25, 36, 57, 0, '36', '14,000 + GST', 'Mr.', '', 'Ranju Gowda', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'Converted', 0, '', '', '080 40971144/ 9901933233', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (26, 36, 57, 0, '36', '', 'Ms.', '', 'Kavya', '1970-01-01', '', 'CLOSED', '', '10', '', '00000', 'External Referral', '', 'Nithin', 'Will update in 2 Days', 0, '', '', '6363346473', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (27, 36, 57, 0, '36', '25K', 'None', '', 'Monty ', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'Real estate and portal (dynamic website - 35 pages ) 25K - waiting for approval on 22/11/2018,NS,NS\r\n', 0, '', '', '9741669999', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (28, 36, 57, 0, '36', '', 'Mr.', '', 'Sandeep G V', '1970-01-01', '', 'Qualification', '', '60', '', '0000', 'Partner', '', 'Gv imports and Infra', 'Converted', 0, '', '', '9620899777', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (29, 36, 57, 0, '36', '37,000', 'None', '', 'Yogesh', '1970-01-01', '', 'Proposal/Price Quote', 'New Business', '', '', '', 'Just Dial', '', 'Basaveshwara nagar', 'E - commerce website - waiting for approval', 0, '', '', '9611222052', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (30, 36, 57, 0, '24', '30000', 'Mr.', '', 'Pankaj', '1970-01-01', '507', 'Proposal/Price Quote', 'Existing Business', '50', '', '0', 'Partner', '', '0', 'Quotation to be shared for Additional Requirements', 0, 'NO-6,2nd floor,100 feet Road\r\nBTM layout 2nd stage, near udupi garden signal above Oriental Bank Of Commerce Bangalore-560 076.', '', '9632882052', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (31, 36, 57, 0, '24', '30000', 'Mr.', '', 'Pankaj', '1970-01-01', '507', 'Proposal/Price Quote', 'Existing Business', '50', '', '0', 'Partner', '', '0', 'Quotation to be shared for Additional Requirements', 0, 'NO-6,2nd floor,100 feet Road\r\nBTM layout 2nd stage, near udupi garden signal above Oriental Bank Of Commerce Bangalore-560 076.', '', '9632882052', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (32, 36, 57, 0, '36', '15K + GST', 'Ms.', '', 'Ashwini', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', '', 'Executive to meet on 5/12/2018(Contacted), infomred for finalization on 26/12/2018', 0, '', '', '8105263765/9845026217', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (33, 36, 57, 0, '36', '', 'None', '', 'Srinivas Reddy', '1970-01-01', '', '', '', '', '', '', 'Just Dial', '', '', 'Converted', 0, '', '', '9243122549', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (34, 36, 57, 0, '36', '', '', '', 'Srinivas', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'Client visited the office ( Redesign , Digital Marketing, SEO)', 0, 'Banashakari 2nd stage Bangalore Karnataka', '', '9008026679', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (35, 36, 57, 0, '36', '', '', '', 'Venna', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'NS,CW,NS, Digital Marketing - Informed subbu sir ', 0, 'Indiranagar Bangalore Karnataka', '', '9686670264', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (36, 36, 57, 0, '36', '10K', 'Mr.', '', 'Mahadevappa', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'Converted', 0, '', '', '9886011667', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (37, 36, 57, 0, '36', '15K', 'Mr.', '', 'Ravi', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', '', ' Dynamic website(15K), Waiting for approval - the client will visit office on 7/1/2019', 0, '', '', '9449658259', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (38, 36, 57, 0, '36', '7K', 'Mr.', '', 'Srikanth', '2018-12-21', '', 'CLOSED', '', '', '', '', 'Just Dial', '', '', 'Security and House Keeping - Executive to meet -10/12/2018 static website(7K), Quotation shared,(lost lead)', 0, '', '', '9945399172 / 9986996037', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (39, 36, 57, 0, '36', '', 'None', '', 'Madhu', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', '', 'Tourism website , Dynamic , 25 pages informed to Nithin', 0, '', '', '9916166949', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (40, 36, 57, 0, '36', '7K', 'Ms.', '', 'Sherry', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', 'Sherry', 'Quotation for 7K and Company profile , Redesign of the website( contact on 12/12/2018,Contact in eve on 21/12/2018,NS,B', 0, '', '', '9945000776', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (41, 36, 57, 0, '36', '25K and 30K + GST, 59K', 'None', '', 'Panduranaga(donbosco)', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'Informed to CB in next month on Feb - 2019bsite', 0, '', '', '9900097806', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (42, 36, 57, 0, '36', '14,900', 'None', '', 'Rao', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'Converted', 0, '', '', '9606099900', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (44, 36, 57, 0, '20', '', '', '', 'Arjun Venture', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'Visiting card: 600, Letterhead and envelope: 500 , Invoice, quotation and receipts generator: 15000\r\n', 0, 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka', '', '9035036699', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (45, 36, 57, 0, '36', '', 'Mr.', '', 'Suresh', '1970-01-01', '', 'Qualification', '', '', '', '', 'Just Dial', '', '', 'Converted', 0, '', '', '8088880094 / 8951117439', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (46, 36, 57, 0, '36', '7K', 'Mr.', '', 'Kumar', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', '', 'manufacture products -Basic website Executive to meet on 13/12/2018 ,cb on 21/12/2018,NS,NS', 0, '', '', '9483961121', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (47, 36, 57, 0, '36', '33K', 'Mr.', '', 'Nagaraj', '1970-01-01', '', 'Proposal/Price Quote', '', '', '', '', 'Just Dial', '', 'vasanth Nagar', 'Website and watsapp link integration and resource charges during election time - 33K \r\nExecutive to meet(contacted) Web proposal shared .contact on 4/1/2019', 0, '', '', '9742707076', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (48, 24, 69, 0, '24', '20000', 'Mr.', '', 'Kshitij Mehra', '2018-12-27', '', 'Closed Won', '', '70', '', '20000', 'Partner', '', 'Kshitij Mehra', 'video blog website informed to contact on 4/1/2019', 0, '', '', '+9188842 13000', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (49, 36, 57, 0, '36', '18K + GST', 'Mr.', '', 'Chidanand', '1970-01-01', '', 'CLOSED', '', '', '', '', 'Just Dial', '', 'Lakshmipuram near court road', 'B,Client will visit mysore office on 17/12/2018 (https://shrenzocareers.com)', 0, '', '', '8197976143', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (51, 36, 57, 0, '36', '', '', '', 'Satish', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', '1000 products data entry to mhoney.in - 10K + GST', 0, 'Royal corner. 1st floor, door 1,2 flat no103, lalbagh road, Bangalore Karnataka', '', '9900015547', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (52, 36, 57, 0, '20', '', 'Mr.', '', 'Krishna Murthy', '1970-01-01', ' ', 'Need Analysis', 'New Business', '10', '', '0', 'External Referral', 'Krishms459@gmail.com', 'Krishna Murthy', '', 0, 'Bangalore', '', '9845581055', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (53, 36, 57, 0, '20', '', '', '', 'jyestaconstructions', '0000-00-00', '', '', '', '', '', '', 'Existing Client Reference', '', '', '\"Adwords configuration\" - 5K + GST', 0, '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Mysore Karnataka', '', '9738404534', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (54, 36, 57, 0, '36', '', 'Mr.', '', 'Ramesh', '1970-01-01', '', '', '', '', '', '', 'Just Dial', '', 'Bommanahali near silk board', 'Converted', 0, '', '', '6363402221', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (55, 20, 1, 0, '20', '750000', 'Mr.', '', 'Abhishek', '1970-01-01', '339', 'Qualification', 'Existing Business', '20', '', '750000', 'Partner', '', 'Abhishek', '', 0, 'Bengaluru', '', '9686656655', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (56, 36, 57, 0, '36', '', '', '', 'Haripriya', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'Not Required', 0, ' Karnataka', '', '8790854462', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (57, 36, 57, 0, '36', '', '', '', 'Parjwal', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', '', 0, ' Bangalore Karnataka', 'prajwal3@icloud.com', '8762582514', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (58, 36, 57, 0, '36', '', '', '', 'Jithesh', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'Not Required', 0, 'Jayanagar', '', '9741334511', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (59, 36, 57, 0, '36', '', '', '', 'jogishshan', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'B', 0, 'Nagarbavi - BDA Complex', 'purushotam.gv@skandalifesciences.com', '9663399155', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (60, 1, 1, 0, '32', '', '', '', 'dfssdfs', '0000-00-00', '', '', '', '', '', '', 'Advertisement', '', '', 'fgggggggggggggggg', 0, 'mysore', 'admin@gmail.com', '8764646645', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (61, 1, 1, 0, '32', '', '', '', 'nithesh', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', 'dfgdfgdfgdfg', 0, 'mysore', 'admin@gmail.com', '9099999999', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (63, 36, 57, 0, '36', '', 'Mr.', '', 'Syed', '1970-01-01', '558', 'Proposal/Price Quote', '', '', '', '', 'Select', '', '', 'Daily 2 slider design per month - 7500 + GST', 0, '', 'syed@thegizshop.com', '9008181575', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (64, 36, 57, 0, '20', '', 'Mr.', '', 'Corbelo Group', '1970-01-01', '256', 'Proposal/Price Quote', '', '', '', '', 'Select', '', '', '', 0, '', '', '99591 54169', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (65, 24, 69, 0, '24', '', 'Mr.', '', 'Vishwas', '2019-02-28', ' ', 'Proposal/Price Quote', 'Existing Business', '50', '', '1200000', 'Advertisement', '', 'Vishwas', 'ERP application for construction business.', 0, 'Goa', '', '9588416714', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''), (66, 164, 61, 0, '164', '', '', 'Contacted', 'Hemanth Naik', '0000-00-00', '', '', '', '', '', '', 'Website Research', '', '', 'Healthcare cusomized website', 0, 'Chikkamagaluru Chikkamagaluru Karnataka 0', 'bhairaweshwarapoliclinic@gmail.com', '9902232573', 'POTENTIAL', '', '', 'ACTIVE', '', 'Chikkamagaluru', 'Chikkamagaluru', 'Karnataka', '', '0', '', '[\"\"]', '[\"\"]', '[\"\"]', '', '', '', 'HEALTHCARE', '', '0', 'NO', '0'), (67, 20, 1, 0, '21', '', '', 'Contacted', 'Devaraj B', '0000-00-00', '', '', '', '', '', '', 'Just Dial', '', '', '', 0, ' 0', 'devarajrb@gmail.com', '9900687163', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', 'Active', '0', '', '[\"\"]', '[\"\"]', '[\"\"]', '', '', '', 'OTHERS', '', '0', 'NO', '0'), (68, 164, 61, 0, '21', '', '', 'Contacted', 'Start up', '0000-00-00', ' ', 'CLOSED', 'New Business', '', '', '', 'Just Dial', '', 'Vijendra Gowda', '', 0, 'Garvabhavipalya Banglore', 'viji7259521592@gmail.com', '9742333699', 'POTENTIAL', '', '', 'ACTIVE', '', 'Garvabhavipalya Banglore', '', 'karnataka', '', '', '', '[\"social media\"]', '[\"\"]', '[\"\"]', '', '', '', 'MEDIA AND ENTERTAINMENT', '', '0', 'NO', ''), (69, 24, 69, 0, '24', '', '', '', 'Mohan Nimbalkar', '0000-00-00', '', 'CLOSED', '', '', '', '', '', '', '', '1 website redesigning, 1 website changes and hosting', 0, 'No P-5, 31st main, Banagirinagar, BSK 3rd stage Bangalore Karnataka India 560085', 'mohan@siliconeducation.in', '9743444763', 'POTENTIAL', 'siliconeducation.in', '', 'ACTIVE', '', 'No P-5, 31st main, Banagirinagar, BSK 3rd stage', 'Bangalore', 'Karnataka', '', '560085', 'India', '', '', '', '', '', '', '', '', '0', '', '0'), (70, 164, 61, 0, '20', '', '', 'CONVERTED', 'Lifesys', '0000-00-00', ' ', '', 'New Business', '', '', '', 'Just Dial', '', 'Dilip', '', 0, '', 'Dilip@gmail.com', '8733652085', 'POTENTIAL', '', '', 'INACTIVE', '', '', 'Bangalore', '', 'Active', '', '', '[\"\"]', '[\"\"]', '[\"\"]', 'ACONVERT', '', '', '', '', '', 'NO', ''), (71, 164, 61, 0, '20', '', '', 'Contacted', 'Dental clinic', '0000-00-00', ' ', 'CLOSED', 'Existing Business', '', '', '', 'Just Dial', '', 'Sandeep', '', 0, 'Bangalore', 'nomail@gmail.com', '9845945726', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', 'Active', '', '', '[\"\"]', '[\"\"]', '[\"\"]', '', '', '', '', '', '', 'NO', ''), (72, 20, 1, 0, '20', '', '', 'Contacted', 'Bhushan', '0000-00-00', '', 'CLOSED', '', '', '', '', 'Website Research', '', '', '', 0, ' 0', 'patilbhushan309@gmail.com', '9081620165', 'POTENTIAL', '', '', 'ACTIVE', '', '', '', '', 'Active', '0', '', '[\"\"]', '[\"\"]', '[\"\"]', '', '', '', 'AUTOMOBILES', '', '0', 'NO', '0'), (73, 195, 61, 0, '195', '', '', 'Self Generated', 'Bindu tours and travels', '0000-00-00', ' ', 'CLOSED', 'New Business', '100', '', '', 'Public Relations', '', '', '', 0, '', 'bindutravelz01@gmail.com', '6360184276', 'POTENTIAL', '', '', 'INACTIVE', '', '183/B, Kanakanagara, Ilwala Hobali', 'Mysore', 'Karnataka', '', '570026', 'India', '[\"Bindu tours and travels\"]', '[\"\"]', '[\"30000\"]', '', '', '', '', '', '', 'NO', ''), (74, 195, 61, 0, '195', '', '', 'CONVERTED', 'Bharath', '0000-00-00', '', '', '', '', '', '', 'Public Relations', '', 'Bharath', '', 0, ' 0', 'bindutravelz01@gmail.com', '6360184276', 'POTENTIAL', '', '', 'INACTIVE', '', '', '', '', '', '0', '', '[\"\"]', '[\"\"]', '[\"\"]', 'ACONVERT', '', '', 'OTHERS', 'Proprietor', '0', 'NO', '0'), (75, 195, 61, 0, '195', '', '', 'Contacted', 'Basavaraj', '0000-00-00', '', '', '', '', '', '', 'Public Relations', '', 'Basavaraj', '', 0, '428,opp Automotive Axies.LTD Mysore Karnataka India 570018', 'laxmicontrols@yahoo.co.in', '9845333485', 'POTENTIAL', '', '', 'ACTIVE', '', '428,opp Automotive Axies.LTD', 'Mysore', 'Karnataka', '', '570018', 'India', '[\"ERP\"]', '[\"\"]', '[\"\"]', '', '', '', 'OTHERS', 'CEO', '0', 'NO', '0'); -- -------------------------------------------------------- -- -- Table structure for table `new_task` -- CREATE TABLE `new_task` ( `id` int(11) NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `visibality_description` text NOT NULL, `assignee` text NOT NULL, `due_date` text NOT NULL, `due_time` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `modified_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `new_task` -- INSERT INTO `new_task` (`id`, `title`, `description`, `visibality_description`, `assignee`, `due_date`, `due_time`, `delete_status`, `created_at`, `modified_at`) VALUES (5, 'test', '<div>test21312</div>', '5', 's6', '24-01-2019', '18:00', 'ACTIVE', '2019-01-23 00:00:00', '2019-01-23'), (6, ' ', '<div><br></div>', '4', '', '', '18:00', 'ACTIVE', '2019-01-23 00:00:00', '2019-01-23'); -- -------------------------------------------------------- -- -- Table structure for table `old_quotation_details` -- CREATE TABLE `old_quotation_details` ( `id` int(11) NOT NULL, `quotation_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `quo_date` date NOT NULL, `potential_id` int(11) NOT NULL, `response_date` date NOT NULL, `probability` text NOT NULL, `quotation_number` text NOT NULL, `amount` text NOT NULL, `price` text NOT NULL, `comments` text NOT NULL, `description` text NOT NULL, `company` text NOT NULL, `client_name` text NOT NULL, `package_id` int(11) NOT NULL, `convert_status` text NOT NULL, `gst` text NOT NULL, `gst_amount` double NOT NULL, `sgst` text NOT NULL, `sgst_amount` double NOT NULL, `igst` text NOT NULL, `igst_amount` double NOT NULL, `sub_total` double NOT NULL, `quot_end_date` date NOT NULL, `generated_by` text NOT NULL, `quotation_status` enum('WAITING','EXPIRED','CLOSED','REJECTED') NOT NULL, `tax_state` text NOT NULL, `tax_no_tax` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `type` enum('Quotation') NOT NULL, `old_created_at` datetime NOT NULL, `address` text NOT NULL, `old_updated_at` date NOT NULL, `quatetion_from` text NOT NULL, `created_at` datetime NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `old_quotation_details` -- INSERT INTO `old_quotation_details` (`id`, `quotation_id`, `lead_id`, `account_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `price`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `tax_state`, `tax_no_tax`, `delete_status`, `type`, `old_created_at`, `address`, `old_updated_at`, `quatetion_from`, `created_at`) VALUES (1, 237, 2677, 0, '2019-08-02', 0, '0000-00-00', '', '2188', '15340', '', '50% of payment initially and remaining after completion of project', '4 to 5 Pages of Dynamic Website \r\n(Including Domain & Hosting for 1 year)', '', 'Chandru', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-08-17', 'Rekha', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-08-02 13:44:44', 'Koymathoor(office), Bangalore Bangalore Karnataka 0', '0000-00-00', '', '2019-08-13 06:21:52'), (2, 237, 2677, 0, '2019-08-13', 0, '0000-00-00', '', '2188', '15340', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"4 to 5 Pages of Dynamic Website \\r\\n(Including Domain & Hosting for 1 year)\"]', '', 'Chandru', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 15340, '2019-08-28', 'Rekha', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-08-13 11:51:52', 'Koymathoor(office), Bangalore Bangalore Karnataka 0', '0000-00-00', '', '2019-08-13 06:22:40'), (3, 237, 2677, 0, '2019-08-13', 0, '0000-00-00', '', '2188', '12000', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"4 to 5 Pages of Dynamic Website \\r\\n(Including Domain & Hosting for 1 year)\"]', '', 'Chandru', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '2019-08-28', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-13 11:52:40', 'Koymathoor(office), Bangalore Bangalore Karnataka 0', '0000-00-00', '', '2019-08-13 06:22:40'), (4, 237, 2677, 0, '2019-08-13', 0, '0000-00-00', '', '2188', '12000', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"4 to 5 Pages of Dynamic Website \\r\\n(Including Domain & Hosting for 1 year)\"]', '', 'Chandru', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '2019-08-28', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-13 11:52:40', 'Koymathoor(office), Bangalore Bangalore Karnataka 0', '0000-00-00', '', '2019-08-13 06:23:39'), (5, 240, 2722, 0, '2019-08-21', 0, '0000-00-00', '', '2191', '177000', '[\"150000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.Classified web application for 3 categories\r\n1.Hotel room booking\r\n2.Travels\r\n3.Real Estate \r\nalong with Native application for android mobile \r\n\r\n', '[\"Classified webapplication for 3 categories\\r\\n1.Hotel room booking\\r\\n2.Travels\\r\\n3.Real Estate \\r\\nalong with Hybrid application for android mobile \"]', '', 'Ramesh', 0, 'Waiting For Approval', '9%', 13500, '9%', 13500, '18%', 0, 150000, '2019-09-05', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-21 12:20:09', 'Banasawadi Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-21 06:53:29'), (6, 242, 2595, 0, '2019-08-21', 0, '0000-00-00', '', '2193', '', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"E-commerce website with Payment gateway\"]', '', 'Manju', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 0, '2019-09-05', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-21 15:13:08', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-21 09:47:33'), (7, 242, 2595, 0, '2019-08-21', 0, '0000-00-00', '', '2193', '29500', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"E-commerce website with Payment gateway\"]', '', 'Manju', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 25000, '2019-09-05', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-21 15:17:33', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-21 09:49:58'), (8, 247, 2757, 0, '2019-08-24', 0, '0000-00-00', '', '2198', '9440', '[\"8000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.For 6-7 Pages of Dynamic website\r\nDomain\r\nHosting for one year \r\nPrice:13560+GST=16000/-', '[\"6-7 Pages of Static website\\r\\nDomain\\r\\nHosting for one year\\r\\nMaintanance\"]', '', 'Andrew Anthony', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2019-09-08', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-24 15:41:31', '#6/20,2nd cross,St.Thomas town,Lingarajpuram Bangalore Karnataka 84', '0000-00-00', 'Lead', '2019-08-24 10:12:06'), (9, 247, 2757, 0, '2019-08-24', 0, '0000-00-00', '', '2198', '9440', '[\"8000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.For 6-7 Pages of Dynamic website\r\nDomain\r\nHosting for one year \r\nPrice:13560+GST=16000/-', '[\"6-7 Pages of Static website\\r\\nDomain\\r\\nHosting for one year\\r\\n\"]', '', 'Andrew Anthony', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 8000, '2019-09-08', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-24 15:42:06', '#6/20,2nd cross,St.Thomas town,Lingarajpuram Bangalore Karnataka 84', '0000-00-00', 'Lead', '2019-08-24 10:19:18'), (10, 249, 1640, 0, '2019-08-26', 0, '0000-00-00', '', '2200', '54280', '[\"46000\"]', '50% of payment initially and remaining after completion of project', '[\"Server Renewal- 6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 4140, '9%', 4140, '18%', 0, 46000, '2019-09-10', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-26 17:41:45', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-27 10:35:03'), (11, 253, 1641, 0, '2019-08-27', 0, '0000-00-00', '', '2204', '27140', '[\"23000\"]', '50% of payment initially and remaining after completion of project', '[\"Server renewal-6 months\\r\\n(28-8-19 to 28-2-19)\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2019-09-11', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-27 16:06:10', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-27 10:36:38'), (12, 253, 1641, 0, '2019-08-27', 0, '0000-00-00', '', '2204', '27140', '[\"23000\"]', '50% of payment initially and remaining after completion of project', '[\"Server renewal-6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 23000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-27 16:06:38', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-08-27 10:39:17'), (13, 258, 2825, 0, '2019-09-05', 0, '0000-00-00', '', '2209', '60180', '[\"11000\",\"40000\"]', '50% of payment initially and remaining after completion of project', '[\"Website 1: \\r\\n5 page static website with 2 forms(Resume & Enquiry forms): \",\"Website 2: \\r\\nWeb application with 5 static website: \"]', '', 'Lokeshappa', 0, 'Waiting For Approval', '9%', 4590, '9%', 4590, '18%', 0, 51000, '2019-09-20', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-05 17:41:33', 'R T Nagar Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-05 12:14:48'), (14, 259, 2831, 0, '2019-09-06', 0, '0000-00-00', '', '2210', '14160', '[\"6000\",\"6000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.For 2 dynamic website with domain & Hosting for 1 year cost = 18000+GST(Each 9000+GST)', '[\"3-4 pages of static website for Mineral water factory with Domain for one year\\r\\nHosting for one year\\r\\nEach\",\"3-4 pages of static website for Electrical shop with \\r\\nDomain for one year \\r\\nHosting for one year\"]', '', 'Praveen ', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-09-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-06 11:50:49', 'K R Puram Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-06 06:21:54'), (15, 261, 0, 651, '2019-09-06', 0, '0000-00-00', '', '2212', '35400', '[\"5000\",\"5000\",\"20000\"]', '50% of payment initially and remaining after completion of project', '[\"OTP SMS API-10000 Nos\",\"Service charges\",\"Wallet payment integration\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-09-21', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-06 13:33:02', ' Bangalore ', '0000-00-00', 'Account', '2019-09-06 12:58:39'), (16, 261, 0, 651, '2019-09-06', 0, '0000-00-00', '', '2212', '29500', '[\"2000\",\"3000\",\"20000\"]', '50% of payment initially and remaining after completion of project', '[\"OTP SMS API-10000 Nos\",\"Service charges\",\"Wallet payment integration\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 25000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-06 18:28:39', ' Bangalore ', '0000-00-00', 'Account', '2019-09-06 12:58:42'), (17, 266, 0, 256, '2019-09-12', 0, '0000-00-00', '', '2217', '17700', '[\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website upto 10 pages\"]', '', 'Dsign experts', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-09-27', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-12 18:28:10', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2019-09-17 07:05:17'), (18, 266, 0, 256, '2019-09-12', 0, '0000-00-00', '', '2217', '17700', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website upto 10 pages\"]', '', 'Dsign experts', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 15000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 12:35:17', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2019-09-17 07:05:31'), (19, 270, 2870, 0, '2019-09-17', 0, '0000-00-00', '', '2221', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"SRS Document-Business Analyst(1 nos) for 1 month\"]', '', 'Vishwas', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-10-02', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 17:23:54', ' Dona Paula Goa 0', '0000-00-00', 'Lead', '2019-09-17 11:54:27'), (20, 270, 2870, 0, '2019-09-17', 0, '0000-00-00', '', '2221', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"SRS Document-Business Analyst(1 nos) for 1 month\"]', '', 'Vishwas', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 30000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 17:24:27', ' Dona Paula Goa 0', '0000-00-00', 'Lead', '2019-09-17 11:55:07'), (21, 270, 2870, 0, '2019-09-17', 0, '0000-00-00', '', '2221', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"SRS Document-Business Analyst(1 nos) for 1 month\"]', '', 'Vishwas', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 30000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 17:25:07', ' Dona Paula Goa 0', '0000-00-00', 'Lead', '2019-09-17 11:55:28'), (22, 271, 2866, 0, '2019-09-18', 0, '0000-00-00', '', '2222', '15340', '[\"13000\"]', '50% of payment initially and remaining after completion of project', '[\"5 pages of Dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\n1 year maintanance\\r\\n5 E-mail id\\r\\nSocial media integration\"]', '', 'Diwakar', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-10-03', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-18 11:57:28', 'ITPL main road Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-18 06:29:41'), (23, 278, 2899, 0, '2019-09-24', 0, '0000-00-00', '', '2229', '15340', '[\"13000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nwebsite Design\\r\\nSocial media links integration\\r\\nGoogle map\\r\\nMaintenance 1 year \\r\\n\"]', '', 'Asha ', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-10-09', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-24 10:47:55', 'Konanakunte Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-24 05:18:31'), (24, 280, 0, 671, '2019-09-24', 0, '0000-00-00', '', '2231', '25370', '[\"12500\",\"9000\"]', '50% of payment initially and remaining after completion of project', '[\"5 GSuite email ids\",\"Email portal with different email ids\"]', '', 'SGL Properties', 0, 'Waiting For Approval', '9%', 1935, '9%', 1935, '18%', 0, 21500, '2019-10-09', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-24 16:57:33', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel Bengaluru Karnataka 560068', '0000-00-00', 'Account', '2019-09-24 12:05:03'), (25, 199, 2526, 0, '2019-06-07', 0, '0000-00-00', '', '2153', '22420', '', '50% of payment initially and remaining after completion of project', 'Static website development with Domain and Hosting for 1 year @ Rs. 15000/-\r\nNo of pages: 10-12\r\n\r\n5 Zoho email ids @ Rs. 4000/-', '', 'TLB Rao', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 19000, '2019-06-22', 'Subramanya', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-06-07 14:13:15', ' Hyderabad Andra Pradesh 0', '0000-00-00', '', '2019-09-26 12:53:37'), (26, 283, 4, 0, '2019-09-27', 0, '0000-00-00', '', '2234', '61793', '[\"20000\",\"30000\",\"2367\"]', '50% of payment initially and remaining after completion of the project.', '[\"Demo\",\"D4\",\"D43\"]', '', 'Hemanth', 0, 'Waiting For Approval', '9%', 4713, '9%', 4713, '18%', 0, 52367, '2019-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-27 12:53:24', 'sdsafdsfed Bangalore Karnatka 123456', '0000-00-00', 'Lead', '2019-09-27 07:23:52'), (27, 283, 4, 0, '2019-09-27', 0, '0000-00-00', '', '2234', '64153', '[\"22000\",\"30000\",\"2367\"]', '50% of payment initially and remaining after completion of the project.', '[\"Demo\",\"D4\",\"D43\"]', '', 'Hemanth', 0, 'APPROVED', '', 0, '9%', 0, '18%', 0, 54367, '1970-01-01', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-27 12:53:52', 'sdsafdsfed Bangalore Karnatka 123456', '0000-00-00', 'Lead', '2019-09-27 07:27:53'), (28, 199, 2526, 0, '2019-06-07', 0, '0000-00-00', '', '2153', '17770', '[\"17770\"]', '50% of payment initially and remaining after completion of project', '[\"Static website development with Domain and Hosting for 1 year @ Rs. 15000\\/-\\r\\nNo of pages: 10-12\\r\\n\\r\\n\"]', '', 'TLB Rao', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 17770, '1970-01-01', 'Subramanya', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-09-26 18:23:37', ' Hyderabad Andra Pradesh 0', '0000-00-00', '', '2019-09-27 09:56:57'), (29, 199, 2526, 0, '2019-06-07', 0, '0000-00-00', '', '2153', '17770', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Static website development with Domain and Hosting for 1 year @ Rs. 12000\\/-\\r\\nNo of pages: 10-12\\r\\n\\r\\n\"]', '', 'TLB Rao', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 17770, '1970-01-01', 'Rekha', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-09-27 15:26:57', ' Hyderabad Andra Pradesh 0', '0000-00-00', '', '2019-09-27 09:57:56'), (30, 285, 2914, 0, '2019-09-27', 0, '0000-00-00', '', '2236', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website Includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nWebsite Design\\r\\nGoogle map\\r\\nSocial media link integration\\r\\n1 year maintenance\\r\\n\"]', '', 'Neena', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-10-12', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-27 16:05:52', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-27 10:38:03'), (31, 285, 2914, 0, '2019-09-27', 0, '0000-00-00', '', '2236', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website Includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nWebsite Design\\r\\nGoogle map\\r\\nSocial media link integration\\r\\n1 year maintenance\\r\\n\"]', '', 'Neena', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-27 16:08:03', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-09-30 07:29:00'), (32, 297, 2752, 658, '2019-10-16', 0, '0000-00-00', '', '2248', '6490', '[\"5500\"]', '50% of payment initially and remaining after completion of project', '[\"25 E-mail Id\\r\\n(Per E-mail Id 5 GB Storage)\"]', '', 'The Chief Traders ', 0, 'Waiting For Approval', '9%', 495, '9%', 495, '18%', 0, 5500, '2019-10-31', 'Rekha', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2019-10-16 13:39:34', 'Electronic city,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-16 08:12:14'), (33, 301, 2975, 681, '2019-10-18', 0, '0000-00-00', '', '2251', '12980', '[\"11000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website\"]', '', ' Paneetha Consulting Engineering ', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2019-11-02', 'Rekha', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2019-10-18 11:50:19', 'Nagarabhavi,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-18 06:25:11'), (34, 304, 2989, 683, '2019-10-22', 0, '0000-00-00', '', '2254', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website\"]', '', 'Sri Maruthi Enterprise', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-11-06', 'Rekha', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2019-10-22 17:32:30', 'Nayandahalli,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-22 12:04:41'), (35, 301, 2975, 681, '2019-10-18', 0, '0000-00-00', '', '2251', '12980', '[\"11000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website\"]', '', ' Paneetha Consulting Engineering ', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 11000, '1970-01-01', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-18 11:55:11', 'Nagarabhavi,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-22 13:54:12'), (36, 297, 2752, 658, '2019-10-16', 0, '0000-00-00', '', '2248', '6490', '[\"5500\"]', '50% of payment initially and remaining after completion of project', '[\"25 E-mail Id\\r\\n(Per E-mail Id 5 GB Storage)\"]', '', 'The Chief Traders ', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 5500, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-16 13:42:14', 'Electronic city,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-22 13:54:56'), (37, 285, 2914, 0, '2019-09-27', 0, '0000-00-00', '', '2236', '28320', '[\"24000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website Includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nWebsite Design\\r\\nGoogle map\\r\\nSocial media link integration\\r\\n1 year maintenance(2 nos)\\r\\n\"]', '', 'Neena', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 24000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-30 12:59:00', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:55:25'), (38, 283, 4, 0, '2019-09-27', 0, '0000-00-00', '', '2234', '64153', '[\"22000\",\"30000\",\"2367\"]', '50% of payment initially and remaining after completion of the project.', '[\"Demo\",\"D4\",\"D43\"]', '', 'Hemanth', 0, 'APPROVED', '', 0, '9%', 0, '18%', 0, 54367, '1970-01-01', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-27 12:57:53', 'sdsafdsfed Bangalore Karnatka 123456', '0000-00-00', 'Lead', '2019-10-22 13:55:43'), (39, 280, 0, 671, '2019-09-24', 0, '0000-00-00', '', '2231', '23010', '[\"12500\",\"7000\"]', '50% of payment initially and remaining after completion of project', '[\"5 professional email ids\",\"Email portal with different email ids\"]', '', 'SGL Properties', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 19500, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-24 17:35:03', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel Bengaluru Karnataka 560068', '0000-00-00', 'Account', '2019-10-22 13:56:02'), (40, 280, 0, 671, '2019-09-24', 0, '0000-00-00', '', '2231', '23010', '[\"12500\",\"7000\"]', '50% of payment initially and remaining after completion of project', '[\"5 professional email ids\",\"Email portal with different email ids\"]', '', 'SGL Properties', 0, 'Waiting For Approval', '9%', 1755, '9%', 0, '18%', 0, 19500, '2019-10-09', 'Admin', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-22 19:26:02', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel Bengaluru Karnataka 560068', '0000-00-00', 'Account', '2019-10-22 13:56:19'), (41, 278, 2899, 0, '2019-09-24', 0, '0000-00-00', '', '2229', '15340', '[\"13000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nwebsite Design\\r\\nSocial media links integration\\r\\nGoogle map\\r\\n5 E-mail Id\\r\\nMaintenance 1 year \\r\\n\"]', '', 'Asha ', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 13000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-24 10:48:31', 'Konanakunte Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:56:33'), (42, 271, 2866, 0, '2019-09-18', 0, '0000-00-00', '', '2222', '15340', '[\"13000\"]', '50% of payment initially and remaining after completion of project', '[\"5 pages of Dynamic website includes\\r\\nWebsite Design\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\n1 year maintanance\\r\\n5 E-mail id\\r\\nSocial media integration\"]', '', 'Diwakar', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 13000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-18 11:59:41', 'ITPL main road Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:56:48'), (43, 270, 2870, 0, '2019-09-17', 0, '0000-00-00', '', '2221', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"SRS Document-Business Analyst(1 nos) for 1 month\"]', '', 'Vishwas', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 30000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 17:25:28', ' Dona Paula Goa 0', '0000-00-00', 'Lead', '2019-10-22 13:56:58'), (44, 266, 0, 256, '2019-09-12', 0, '0000-00-00', '', '2217', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website upto 10 pages\"]', '', 'Dsign experts', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-17 12:35:31', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2019-10-22 13:57:15'), (45, 261, 0, 651, '2019-09-06', 0, '0000-00-00', '', '2212', '29500', '[\"2000\",\"3000\",\"20000\"]', '50% of payment initially and remaining after completion of project', '[\"OTP SMS API-10000 Nos\",\"Service charges\",\"Wallet payment integration\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 25000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-06 18:28:42', ' Bangalore ', '0000-00-00', 'Account', '2019-10-22 13:57:25'), (46, 259, 2831, 0, '2019-09-06', 0, '0000-00-00', '', '2210', '14160', '[\"6000\",\"6000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.For 2 dynamic website with domain & Hosting for 1 year cost = 18000+GST(Each 9000+GST)=21240/-', '[\"3-4 pages of static website for Mineral water factory with Domain for one year\\r\\nHosting for one year\\r\\nEach\",\"3-4 pages of static website for Electrical shop with \\r\\nDomain for one year \\r\\nHosting for one year\"]', '', 'Praveen ', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-06 11:51:54', 'K R Puram Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:57:45'), (47, 258, 2825, 0, '2019-09-05', 0, '0000-00-00', '', '2209', '60180', '[\"11000\",\"40000\"]', '50% of payment initially and remaining after completion of project', '[\"Website 1: \\r\\n5 page static website with 2 forms(Resume & Enquiry forms): \",\"Website 2: \\r\\nWeb application with 5 pages of static website: \"]', '', 'Lokeshappa', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 51000, '1970-01-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-09-05 17:44:48', 'R T Nagar Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:58:00'), (48, 253, 1641, 0, '2019-08-27', 0, '0000-00-00', '', '2204', '27140', '[\"23000\"]', '100% payment to be done', '[\"Server renewal-6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 23000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-27 16:09:17', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:58:12'), (49, 249, 1640, 0, '2019-08-26', 0, '0000-00-00', '', '2200', '27140', '[\"23000\"]', '100% of payment to be done', '[\"Server Renewal- 6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 23000, '1970-01-01', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-08-27 16:05:03', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-22 13:58:21'), (50, 199, 2526, 0, '2019-06-07', 0, '0000-00-00', '', '2153', '14160', '[\"14160\"]', '50% of payment initially and remaining after completion of project', '[\"Static website development with Domain and Hosting for 1 year @ Rs. 12000\\/-\\r\\nNo of pages: 10-12\\r\\n\\r\\n\"]', '', 'TLB Rao', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 14160, '1970-01-01', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2019-09-27 15:27:56', ' Hyderabad Andra Pradesh 0', '0000-00-00', '', '2019-10-22 13:58:31'), (51, 296, 2959, 0, '2019-10-16', 0, '0000-00-00', '', '2247', '9440', '[\"8000\"]', '50% of payment initially and remaining after completion of project', '[\"5 Pages of Static website with Domain for 1 Year \\r\\nHosting for 1 year\\r\\n\"]', '', 'Sagar ', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2019-10-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-16 13:33:49', 'Kathriguppe Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-10-25 08:26:46'), (52, 296, 0, 685, '2019-10-16', 0, '0000-00-00', '', '2247', '12862', '[\"10900\"]', '50% of payment initially and remaining after completion of project', '[\"5 Pages of Static website with Domain for 1 Year \\r\\nHosting for 1 year\\r\\n\"]', '', 'Sagar ', 0, 'Waiting For Approval', '9%', 981, '9%', 0, '18%', 0, 10900, '2019-10-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-25 13:56:46', 'Kathriguppe Bangalore Karnataka 0', '0000-00-00', 'Account', '2019-10-25 09:47:39'), (53, 296, 0, 685, '2019-10-16', 0, '0000-00-00', '', '2247', '12862', '[\"10900\"]', '50% of payment initially and remaining after completion of project', '[\"5 Pages of Static website with Domain for 1 Year \\r\\nHosting for 1 year\\r\\n\"]', '', 'Sagar ( Megha Welfare Association) ', 0, 'Waiting For Approval', '9%', 981, '9%', 0, '18%', 0, 10900, '2019-10-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-25 15:17:39', 'Kathriguppe Bangalore Karnataka 0', '0000-00-00', 'Account', '2019-10-25 09:49:29'), (54, 305, 2989, 683, '2019-10-22', 0, '0000-00-00', '', '2254', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website\"]', '', 'Sri Maruthi Enterprises', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-11-06', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2019-10-22 17:38:52', 'Nayandahalli,Bangalore-Karnataka,India', '0000-00-00', 'Account', '2019-10-25 09:54:54'), (55, 307, 2991, 684, '2019-10-23', 0, '0000-00-00', '', '2256', '16520', '[\"6000\",\"8000\"]', '50% of payment initially and remaining after completion of project', '[\"Static website\",\"Google adwords\"]', '', 'Karthik Enterprises', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-11-07', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2019-10-23 12:20:10', 'Banasawadi,Bangalore-Karnataka,', '0000-00-00', 'Account', '2019-10-25 09:55:32'), (56, 309, 0, 169, '2019-10-26', 0, '0000-00-00', '', '2258', '76700', '[\"65000\"]', '50% of payment initially and remaining after completion of project', '[\"ERP Enhancement\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 5850, '9%', 5850, '18%', 0, 65000, '2019-11-10', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-10-26 18:06:04', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2019-10-30 07:02:05'), (57, 315, 0, 651, '2019-11-11', 0, '0000-00-00', '', '2264', '47200', '[\"40000\"]', '100% payment in advance', '[\"SEO Friendly website with Blog integration\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '9%', 3600, '9%', 3600, '18%', 0, 40000, '2019-11-26', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-11-11 12:00:43', ' Bangalore ', '0000-00-00', 'Account', '2019-11-11 06:40:28'), (58, 324, 0, 297, '2019-11-25', 0, '0000-00-00', '', '2273', '354000', '[\"300000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC for 1 year which includes\\r\\n1.support on the existing features \\r\\n2.200 Hrs of new developmental hours \\r\\n3.One dedicated resource is available to address any issues on existing features of the application\"]', '', 'Ess and Ess infrastructure pvt ltd', 0, 'Waiting For Approval', '9%', 27000, '9%', 27000, '18%', 0, 300000, '2019-12-10', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-11-25 12:15:27', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka ', '0000-00-00', 'Account', '2019-11-25 06:46:40'), (59, 325, 3071, 0, '2019-11-26', 0, '0000-00-00', '', '2274', '16520', '[\"11000\",\"3000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.Social Media Marketing Package will be :15,000 per month', '[\"5-6 Pages Static website with Domain & Hosting for 1 Year\",\"Logo Modification\"]', '', 'Raghavan', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-12-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-11-26 11:59:57', 'Kammanahalli Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-11-26 06:30:31'), (60, 346, 3105, 0, '2019-12-10', 0, '0000-00-00', '', '2295', '53100', '[\"45000\"]', '50% of payment initially and remaining after completion of project', '[\"registration module \\r\\nConsultation module \\r\\nPrescription module \\r\\nBilling Module\\r\\nreports also included\"]', '', 'Hemanth Naik', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-12-25', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-10 12:36:31', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00', 'Lead', '2019-12-10 07:09:14'), (61, 347, 0, 520, '2019-12-10', 0, '0000-00-00', '', '2296', '3776', '[\"3200\"]', '50% of payment initially and remaining after completion of project', '[\"Hosting charges for 1 year and AMC for 1 year\"]', '', 'Yuva Sene', 0, 'Waiting For Approval', '9%', 288, '9%', 288, '18%', 0, 3200, '2019-12-25', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-10 13:32:29', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '0000-00-00', 'Account', '2019-12-10 08:02:40'), (62, 351, 3115, 690, '2019-12-12', 0, '0000-00-00', '', '2299', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"event management software with payment gateway\"]', '', 'vsp entirtinment private ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-12-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-12 20:44:17', ' 0', '0000-00-00', 'Account', '2019-12-13 10:57:34'), (63, 351, 3115, 690, '2019-12-12', 0, '0000-00-00', '', '2299', '35400', '[\"30000\"]', '50% of payment initially and remaining after completion of project', '[\"event management software with payment gateway\"]', '', 'VSP ENTERTAINMENT PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2700, '9%', 0, '18%', 0, 30000, '2019-12-27', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-13 16:27:34', ' 1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South\r\nMysore\r\n', '0000-00-00', 'Account', '2019-12-13 11:04:22'), (64, 358, 3120, 0, '2019-12-16', 0, '0000-00-00', '', '2306', '17700', '[\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of dynamic website including Domain for 1 year,Hosting for 1 year,Maintenance for 1 year,\"]', '', 'Jackson', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-16 17:43:42', 'Neelasandra Bangalore Karnataka 0', '0000-00-00', 'Lead', '2019-12-16 12:26:53'), (65, 353, 3117, 0, '2019-12-16', 0, '0000-00-00', '', '2301', '29500', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"Re-design & development of eldaas.com in wordpress\"]', '', 'Prakash', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-16 12:31:26', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar Bangaluru Karnataka 560043', '0000-00-00', 'Lead', '2019-12-17 11:12:45'), (66, 357, 0, 169, '2019-12-16', 0, '0000-00-00', '', '2305', '47200', '[\"40000\"]', '50% of payment initially and remaining after completion of project', '[\"New updation in the application\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 3600, '9%', 3600, '18%', 0, 40000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-16 15:38:59', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2019-12-18 05:57:16'), (67, 353, 0, 693, '2019-12-16', 0, '0000-00-00', '', '2301', '29500', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"Features:\\r\\n\\u2022Professionally Designed Pages\\r\\n\\u2022Up to 3 design revisions for Homepage\\r\\n\\u2022Fully responsive website\\r\\n\\u2022Easy Content Management System\\r\\n\\u2022 Unlimited Pages Management\\r\\n\\u2022 Text Content\\r\\n\\u2022 Links\\r\\n\\u2022 Menu Management\\r\\n\\u2022 Images\\r\\n\\u2022 Videos\\r\\n\\u2022 Gallery\\u2019s\\r\\n\\u2022Product Management System\\r\\n\\u2022Search Engine Submission\\r\\n\\u2022Google Maps\\r\\n\\u2022Integrated careers module\\r\\n\\u2022Contact Form Module\\r\\n\\u2022Inquiry Form Module\\r\\n\\u2022Social Media widgets\\r\\n\\u2022Blog and News Module\\r\\n\\u2022Newsletter Module\\r\\n\\u2022Cross Browser & Device Testing and Compatibility\\r\\n\\u2022Upgrade to a bigger package as our business grows\\r\\n\\r\\nService & Product Management System\\r\\n\\u2022Add New Services or Product\\r\\n\\u2022Edit \\/\\/ Delete Service Product\\r\\n\\u2022Service Management with updates\\r\\n\\u2022Service Category Management\\r\\n\\u2022Service Or Product Details\\r\\n\\u2022Service or Product Inquiry Management\\r\\n\\r\\nProject Development Procedure\\r\\n\\u2022 On the basis of website content, two website mockup designs has to be provided.\\r\\n\\u2022 After the discussions and given approval, you have to move towards HTML and CSS.\\r\\n\\u2022 After our Approval on HTML you have to start the development.\\r\\n\\u2022 After QA & approval the site will be move to live server from the staging.\\r\\n\"]', '', 'Prakash', 0, 'Waiting For Approval', '9%', 2250, '9%', 0, '18%', 0, 25000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-17 16:42:45', '324, 2nd Floor, 1st Cross Lal Bahadur Nagar B.Channasandra, Kasturinagar Bangaluru Karnataka 560043', '0000-00-00', 'Account', '2019-12-24 06:46:18'), (68, 353, 0, 693, '2019-12-16', 0, '0000-00-00', '', '2301', '29500', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"Features:\\r\\n\\u2022Professionally Designed Pages\\r\\n\\u2022Up to 3 design revisions for Homepage\\r\\n\\u2022Fully responsive website\\r\\n\\u2022Easy Content Management System\\r\\n\\u2022 Unlimited Pages Management\\r\\n\\u2022 Text Content\\r\\n\\u2022 Links\\r\\n\\u2022 Menu Management\\r\\n\\u2022 Images\\r\\n\\u2022 Videos\\r\\n\\u2022 Gallery\\u2019s\\r\\n\\u2022Product Management System\\r\\n\\u2022Search Engine Submission\\r\\n\\u2022Google Maps\\r\\n\\u2022Integrated careers module\\r\\n\\u2022Contact Form Module\\r\\n\\u2022Inquiry Form Module\\r\\n\\u2022Social Media widgets\\r\\n\\u2022Blog and News Module\\r\\n\\u2022Newsletter Module\\r\\n\\u2022Cross Browser & Device Testing and Compatibility\\r\\n\\u2022Upgrade to a bigger package as our business grows\\r\\n\\r\\nService & Product Management System\\r\\n\\u2022Add New Services or Product\\r\\n\\u2022Edit \\/\\/ Delete Service Product\\r\\n\\u2022Service Management with updates\\r\\n\\u2022Service Category Management\\r\\n\\u2022Service Or Product Details\\r\\n\\u2022Service or Product Inquiry Management\\r\\n\\r\\nProject Development Procedure\\r\\n\\u2022 On the basis of website content, two website mockup designs has to be provided.\\r\\n\\u2022 After the discussions and given approval, you have to move towards HTML and CSS.\\r\\n\\u2022 After our Approval on HTML you have to start the development.\\r\\n\\u2022 After QA & approval the site will be move to live server from the staging.\\r\\n\"]', '', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-24 12:16:18', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '0000-00-00', 'Account', '2019-12-24 06:47:13'), (69, 362, 138, 0, '2020-01-02', 0, '0000-00-00', '', '2310', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of dynamic website includes:\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance for 1 year\\r\\n6.Support for 1 year\"]', '', 'Swamy', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-01-17', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-02 15:25:57', 'Kanakapura Bangalore karnataka 0', '0000-00-00', 'Lead', '2020-01-02 10:49:56'), (70, 364, 3160, 0, '2020-01-03', 0, '0000-00-00', '', '2312', '29500', '[\"25000\"]', '50% of payment initially and remaining after completion of project', '[\"Static website similar to kmohan.com including \\r\\nDesign\\r\\nDevelopment \\r\\n& Hosting for 1 year\"]', '', 'Thandav Murthy', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-01-18', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-03 15:51:32', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-03 10:22:50'), (71, 367, 3166, 0, '2020-01-06', 0, '0000-00-00', '', '2315', '70800', '[\"60000\"]', '1.50% of payment initially and remaining after completion of project.\r\n2. Duration of the Project development : 2 weeks', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2020-01-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-06 17:51:00', 'Singapore Singapore Singapore 0', '0000-00-00', 'Lead', '2020-01-06 13:07:14'), (72, 367, 3166, 0, '2020-01-06', 0, '0000-00-00', '', '2315', '60000', '[\"60000\"]', '1.50% of payment initially and remaining after completion of project.\r\n2. Duration of the Project development : 2 weeks', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2020-01-21', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-01-06 18:37:14', 'Singapore Singapore Singapore 0', '0000-00-00', 'Lead', '2020-01-06 13:09:21'), (73, 367, 3166, 0, '2020-01-06', 0, '0000-00-00', '', '2315', '60000', '[\"60000\"]', '1.50% of payment initially and remaining after completion of project.\r\n2. Duration of the Project development : 2 weeks', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2020-01-21', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-01-06 18:39:21', 'Singapore Singapore Singapore 0', '0000-00-00', 'Lead', '2020-01-06 13:09:32'), (74, 367, 3166, 0, '2020-01-06', 0, '0000-00-00', '', '2315', '60000', '[\"60000\"]', '1.50% of payment initially and remaining after completion of project.\r\n2. Duration of the Project development : 2 weeks', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2020-01-21', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-01-06 18:39:32', 'Singapore Singapore Singapore 0', '0000-00-00', 'Lead', '2020-01-06 13:10:25'), (75, 368, 3166, 0, '2020-01-06', 0, '0000-00-00', '', '2315', '60000', '[\"60000\"]', '50% of payment initially and remaining after completion of project', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 60000, '2020-01-21', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-01-06 18:41:56', 'Singapore Singapore Singapore 0', '0000-00-00', 'Lead', '2020-01-06 13:14:49'), (76, 370, 3168, 697, '2020-01-09', 0, '0000-00-00', '', '2317', '12272', '[\"10400\"]', '50% of payment initially and remaining after completion of project', '[\"Static website(8000)\\r\\nDomain(2400)\"]', '', 'C R FABRICATOR', 0, 'Waiting For Approval', '9%', 936, '9%', 936, '18%', 0, 10400, '2020-01-24', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-09 17:08:46', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '0000-00-00', 'Account', '2020-01-09 11:39:34'), (77, 369, 3173, 0, '2020-01-08', 0, '0000-00-00', '', '2316', '10620', '[\"9000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of static website including Hosting for 1 year, Design, Development, Maintenance, Support for 1 year \"]', '', 'Rethesh ', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2020-01-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-08 11:42:32', 'M G Road Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-13 12:02:47'), (78, 369, 3173, 0, '2020-01-08', 0, '0000-00-00', '', '2316', '16520', '[\"14000\"]', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of static website including \\r\\nDomain for 1 year Hosting for 1 year, Design, Development, \\r\\nSocial Media links integration\\r\\nGoogle map \\r\\n1 E-mail Id(gmail) Maintenance, Support for 1 year \"]', '', 'Rethesh ', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2020-01-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-13 17:32:47', 'M G Road Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-13 12:03:36'), (79, 375, 3192, 0, '2020-01-14', 0, '0000-00-00', '', '2322', '177000', '[\"150000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.AMC: 20% of the Project amount', '[\"Web application for a career guidence which includes\\r\\n1.Domain \\r\\n2.Hosting\\r\\n3.Assesment Module\\r\\n4.Resume Module\\r\\n5.Counselling Module\\r\\n6.Design\\r\\n7.Development\\r\\n8.Payment Gateway\"]', '', 'Chethan', 0, 'Waiting For Approval', '9%', 13500, '9%', 13500, '18%', 0, 150000, '2020-01-29', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-14 14:02:50', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-16 08:13:43'), (80, 354, 3118, 691, '2019-12-16', 0, '0000-00-00', '', '2302', '53100', '[\"45000\"]', '50% of payment initially and remaining after completion of project', '[\"Healthcare application development\"]', '', 'Dayakar Poly clinic', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-12-31', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2019-12-16 13:17:26', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00', 'Account', '2020-01-17 05:51:14'), (81, 380, 3084, 0, '2020-01-23', 0, '0000-00-00', '', '2327', '188800', '[\"160000\"]', '50% of payment initially and remaining after completion of project', '[\"Kalpavruksha Project Implementation\"]', '', 'Joseph Edwin Prashanth ', 0, 'Waiting For Approval', '9%', 14400, '9%', 14400, '18%', 0, 160000, '2020-02-07', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-23 12:11:20', 'Cambridge Layout,Indiranagar Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-23 09:41:26'); INSERT INTO `old_quotation_details` (`id`, `quotation_id`, `lead_id`, `account_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `price`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `tax_state`, `tax_no_tax`, `delete_status`, `type`, `old_created_at`, `address`, `old_updated_at`, `quatetion_from`, `created_at`) VALUES (82, 382, 3213, 0, '2020-01-24', 0, '0000-00-00', '', '2329', '11800', '[\"10000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.Content should be provided', '[\"5-6 Pages of static website Including\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nMaintenance\\r\\nSupport for 1 year\\r\\nContact form\\r\\n2 design concepts\\r\\nSocial media links integration\\r\\n\"]', '', 'Sindhoori', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2020-02-08', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-24 15:13:41', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-24 09:45:04'), (83, 384, 3220, 0, '2020-01-27', 0, '0000-00-00', '', '2331', '28320', '[\"24000\"]', '1.50% of payment initially and remaining after completion of project\r\n2. For each website Rs.12000+tax', '[\"2 Dynamic website\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Geetha K', 0, 'Waiting For Approval', '9%', 2160, '9%', 2160, '18%', 0, 24000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-27 12:25:37', 'J P Nagar , 2nd Phase Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-27 12:12:16'), (84, 384, 3220, 0, '2020-01-27', 0, '0000-00-00', '', '2331', '14160', '[\"12000\"]', '1.50% of payment initially and remaining after completion of project\r\n2. For each website Rs.12000+tax', '[\" Dynamic website for ZYLUS firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Geetha K', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-27 17:42:16', 'J P Nagar , 2nd Phase Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-27 12:16:15'), (85, 384, 3220, 0, '2020-01-27', 0, '0000-00-00', '', '2331', '14160', '[\"12000\"]', '1.50% of payment initially and remaining after completion of project\r\n', '[\" Dynamic website for ZYLUS firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Geetha K', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-27 17:46:15', 'J P Nagar , 2nd Phase Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-27 12:16:48'), (86, 387, 3217, 0, '2020-01-27', 0, '0000-00-00', '', '2334', '38350', '[\"12000\",\"5000\",\"500\",\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"6-7 Pages of Dynamic website\",\"1. Adwords link \\r\\n2. Google Analytics\",\"E-mail Id 5GB Rs.500\\/Email id\",\"SEO Package starts from Rs.15000\\/- per month\"]', '', 'Raj ', 0, 'Waiting For Approval', '9%', 2925, '9%', 2925, '18%', 0, 32500, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-01-27 18:57:37', 'Jayanagar Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-01-27 13:28:20'), (87, 391, 0, 699, '2020-02-05', 0, '0000-00-00', '', '2338', '501500', '[\"425000\"]', '50% of payment initially and remaining after completion of project', '[\"E-commerce Magento platform \"]', '', 'Navin K', 0, 'Waiting For Approval', '9%', 38250, '9%', 38250, '18%', 0, 425000, '2020-02-20', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-02-05 15:32:08', 'Bangalore Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-02-05 10:26:40'), (88, 396, 3234, 701, '2020-02-10', 0, '0000-00-00', '', '2333', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website for Transe firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\"]', '', 'Varna Creations', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-25', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-02-10 13:23:01', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-02-10 07:54:12'), (89, 396, 3234, 701, '2020-01-27', 0, '0000-00-00', '', '2333', '14160', '[\"12000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website for Transe firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\"]', '', 'Varna Creations', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-02-10 13:24:12', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-02-10 07:57:47'), (90, 396, 3234, 701, '2020-01-27', 0, '0000-00-00', '', '2333', '14160', '[\"12000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting provided by client', '[\"Dynamic website for Transe firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\"]', '', 'Varna Creations', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-02-10 13:27:47', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-02-10 07:58:27'), (91, 397, 3220, 700, '2020-01-27', 0, '0000-00-00', '', '2331', '14160', '[\"12000\"]', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting provided by Client.', '[\" Dynamic website for ZYLUS firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Transe Vision Care Pvt.Ltd', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-02-10 13:26:59', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-02-10 07:59:14'), (92, 418, 0, 328, '2020-05-13', 0, '0000-00-00', '', '2352', '4720', '[\"4000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC for renewal Website domain and hosting \"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-28', 'Ashwini', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-13 12:20:47', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-05-13 06:53:34'), (93, 418, 0, 328, '2020-05-13', 0, '0000-00-00', '', '2352', '4720', '[\"4000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for Website domain and hosting \"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-28', 'Ashwini', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-13 12:23:34', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-05-13 06:54:20'), (94, 418, 0, 328, '2020-05-13', 0, '0000-00-00', '', '2352', '4720', '[\"4000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for domain and hosting \"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-28', 'Ashwini', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-13 12:24:20', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-05-13 07:02:19'), (95, 419, 3253, 709, '2020-05-19', 0, '0000-00-00', '', '2353', '17700', '[\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"Word press website development.\"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-06-03', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-19 10:44:45', ' Banglore 0', '0000-00-00', 'Account', '2020-05-19 06:21:49'), (96, 424, 3254, 0, '2020-05-22', 0, '0000-00-00', '', '2358', '31860', '[\"27000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic web site creation with SEO Keywords Added\"]', '', 'Sushmitha shetty', 0, 'Waiting For Approval', '9%', 2430, '9%', 2430, '18%', 0, 27000, '2020-06-06', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-22 12:43:04', ' Bangalore 0', '0000-00-00', 'Lead', '2020-05-22 07:24:47'), (97, 425, 1640, 0, '2020-05-22', 0, '0000-00-00', '', '2359', '278480', '[\"236000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC for Application\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 21240, '9%', 21240, '18%', 0, 236000, '2020-06-06', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-22 17:20:16', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-05-22 12:19:39'), (98, 426, 0, 63, '2020-05-22', 0, '0000-00-00', '', '2360', '8260', '[\"7000\"]', '100% of payment.', '[\"AMC renewal for website\"]', '', 'Aditi Consultancy', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-06', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-22 17:54:37', ' Bangalore ', '0000-00-00', 'Account', '2020-05-22 12:26:45'), (99, 429, 1641, 0, '2020-05-27', 0, '0000-00-00', '', '2363', '139240', '[\"118000\"]', '100% of payment.', '[\"AMC renewal for Deco-Textil ERP Application May2020-May2021.\\r\\n200 hrs of support\\/Development included.\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 10620, '9%', 10620, '18%', 0, 118000, '2020-06-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-27 13:56:14', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-05-28 05:20:16'), (100, 428, 1640, 0, '2020-05-27', 0, '0000-00-00', '', '2362', '139240', '[\"118000\"]', '100% of payment.', '[\"AMC renewal for Swansilk ERP Application May2020-May2021\\r\\n200 hrs of support\\/Development included.\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 10620, '9%', 10620, '18%', 0, 118000, '2020-06-11', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-27 13:36:52', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-05-28 05:22:04'), (101, 420, 0, 94, '2020-05-19', 0, '0000-00-00', '', '2354', '7080', '[\"6000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for website\"]', '', 'Kids Zone', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-06-03', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-19 10:53:19', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka ', '0000-00-00', 'Account', '2020-05-30 07:10:52'), (102, 432, 0, 487, '2020-05-30', 0, '0000-00-00', '', '2366', '25960', '[\"22000\"]', '100% of payment to be made.', '[\"AMC for website for year 2020-2021\\r\\n\\r\\nAMC Period: 30-05-2020 to 30-04-2021\"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2020-06-14', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-30 15:44:59', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '0000-00-00', 'Account', '2020-05-30 10:30:54'), (103, 423, 0, 630, '2020-05-21', 0, '0000-00-00', '', '2357', '5900', '[\"5000\"]', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for website\"]', '', 'SIRI Global Services', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-06-05', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-05-21 16:51:26', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka 560061', '0000-00-00', 'Account', '2020-06-01 12:53:10'), (104, 423, 0, 630, '2020-06-01', 0, '0000-00-00', '', '2357', '4720', '[\"4000\"]', '100% of payment to be made.', '[\"AMC renewal for website 2020-2021\"]', '', 'SIRI Global Services', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-06-16', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-01 18:23:10', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka 560061', '0000-00-00', 'Account', '2020-06-01 13:00:25'), (105, 169, 2053, 0, '2019-03-11', 0, '0000-00-00', '', '2123', '8260', '', '50% of payment initially and remaining after completion of project', '\r\n\r\n2 web hosting Charges(3500 * 2)', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2019-03-26', 'Shri priya ', 'WAITING', '', '', 'ACTIVE', 'Quotation', '2019-03-11 13:30:01', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 ', '0000-00-00', '', '2020-06-10 12:21:12'), (106, 438, 2053, 264, '2020-06-15', 0, '0000-00-00', '', '2372', '8260', '[\"7000\"]', '100% of payment to be made.', '[\"2 website hosting for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-30', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-15 12:31:34', '#6, Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-15 07:07:49'), (107, 438, 2053, 264, '2020-06-15', 0, '0000-00-00', '', '2372', '8260', '[\"7000\"]', '100% of payment to be made.', '[\"2 website hosting renewal for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-30', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-15 12:37:49', '#6, Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-15 07:10:15'), (108, 438, 2053, 264, '2020-06-15', 0, '0000-00-00', '', '2372', '8260', '[\"7000\"]', '100% of payment to be made.', '[\"2 website hosting renewal for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-30', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-15 12:40:15', '#6, Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-15 12:28:34'), (109, 439, 2053, 264, '2020-06-15', 0, '0000-00-00', '', '2373', '7000', '[\"5932\"]', '100% of payment to be made.', '[\"2 website hosting renewal for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 534, '9%', 534, '18%', 0, 5932, '2020-06-30', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-15 18:03:13', '#6, Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-15 12:33:58'), (110, 440, 0, 197, '2020-06-16', 0, '0000-00-00', '', '2374', '35400', '[\"30000\"]', '100% of payment to be made.', '[\"AMC for ERP\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-07-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-16 13:08:18', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-16 07:42:18'), (111, 440, 0, 197, '2020-06-16', 0, '0000-00-00', '', '2374', '35400', '[\"30000\"]', '100% of payment to be made.', '[\"AMC for ERP\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-07-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-16 13:12:18', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-16 08:14:16'), (112, 440, 0, 197, '2020-06-16', 0, '0000-00-00', '', '2374', '35400', '[\"30000\"]', '100% of payment to be made.', '[\"AMC on ABP Portal\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-07-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-16 13:44:16', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00', 'Account', '2020-06-16 08:14:56'), (113, 444, 116, 0, '2020-06-25', 0, '0000-00-00', '', '2378', '4720', '[\"4000\"]', '100% of payment to be made.', '[\"Domain and Hosting renewal from 25-06-2020 to 25-06-2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-07-10', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-25 11:13:40', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00', 'Lead', '2020-06-25 07:43:18'), (114, 444, 116, 0, '2020-06-25', 0, '0000-00-00', '', '2378', '7080', '[\"6000\"]', '100% of payment to be made.', '[\"Domain and Hosting renewal from 25-06-2020 to 25-06-2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-07-10', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-25 13:13:18', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00', 'Lead', '2020-06-27 09:48:48'), (115, 448, 2952, 686, '2020-07-13', 0, '0000-00-00', '', '2382', '10000', '[\"8474\"]', '100% of payment to be made.', '[\"Chatbot\"]', '', 'TOBIK LIFELINE NIG.LTD', 0, 'Waiting For Approval', '9%', 763, '9%', 763, '18%', 0, 8474, '2020-07-28', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-07-13 11:52:35', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '0000-00-00', 'Account', '2020-07-13 06:59:57'), (116, 452, 0, 169, '2020-07-22', 0, '0000-00-00', '', '2386', '295000', '[\"90000\",\"10000\",\"150000\",\"0\"]', '50% of payment initially and remaining after completion of project', '[\"Android APP Development For Marketing\",\"Hosting Of android App to Android Playstore Fee\",\"Upgradation of GSS ERP.\",\"Annual Maintenance Charge for ERP (waived off as upgradation is in Process)\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 22500, '9%', 22500, '18%', 0, 250000, '2020-08-06', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-07-22 13:46:40', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2020-07-25 07:40:57'), (117, 437, 2756, 660, '2020-06-12', 0, '0000-00-00', '', '2371', '4720', '[\"4000\"]', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Vlight Services Private Limited', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-06-27', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-12 18:34:42', 'K R Puram Bangalore Karnataka 0', '0000-00-00', 'Account', '2020-07-28 09:04:58'), (118, 454, 0, 717, '2020-08-07', 0, '0000-00-00', '', '2388', '45000', '[\"38136\"]', '100% of payment initially and remaining after completion of project', '[\"1. AMC Rs.5000 \\/ month + GST\\r\\n\\r\\n2. The customer to manage the DLT \\r\\n registration and sender ID. Once \\r\\n they get the Sender ID approved, \\r\\n we can configure the same in the \\r\\n PMS software. SMS as per the \\r\\n package they choose. We will send \\r\\n the SMS package tariff soon.\"]', '', 'The Dental Square Multispeciality Dental clinic', 0, 'Waiting For Approval', '9%', 3432, '9%', 3432, '18%', 0, 38136, '2020-08-22', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-07 12:36:50', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka ', '0000-00-00', 'Account', '2020-08-07 12:41:32'), (119, 455, 0, 328, '2020-08-08', 0, '0000-00-00', '', '2389', '20060', '[\"17000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\nMaintenance for 1 year,\\r\\nSupport for 1 year.\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2020-08-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-08 15:12:45', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-08-08 09:43:33'), (120, 455, 0, 328, '2020-08-08', 0, '0000-00-00', '', '2389', '20060', '[\"17000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\nMaintenance for 1 year,\\r\\nSupport for 1 year.\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2020-08-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-08 15:13:33', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-08-08 09:56:06'), (121, 455, 0, 328, '2020-08-08', 0, '0000-00-00', '', '2389', '20060', '[\"17000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\nMaintenance for 1 year,\\r\\nSupport for 1 year.\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2020-08-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-08 15:26:06', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-08-08 10:34:17'), (122, 455, 0, 328, '2020-08-08', 0, '0000-00-00', '', '2389', '20060', '[\"17000\"]', '50% of payment initially and remaining after completion of project', '[\"Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\nMaintenance for 1 year,\\r\\nSupport for 1 year.\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2020-08-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-08 16:04:17', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-08-12 06:53:27'), (123, 455, 0, 328, '2020-08-08', 0, '0000-00-00', '', '2389', '40000', '[\"33898\"]', '50% of payment initially and remaining after completion of project', '[\"1. 20 pages\\r\\n2. Minimum 50 images\\r\\n3. 1 Online form \\r\\n4. 2 sample website designs\\r\\n5. HTML \\/ wordpress\\r\\n6. Inline chat integration\\r\\n7. Unlimited memory\\r\\n8. Cloud hosting\\r\\n9. CMS support\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 3051, '9%', 3051, '18%', 0, 33898, '2020-08-23', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-12 12:23:27', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2020-08-12 06:53:36'), (124, 458, 3256, 0, '2020-08-17', 0, '0000-00-00', '', '2392', '53100', '[\"30000\",\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"Design and Development for Personal coach .\",\"Scheduler and payment gateway.\\r\\n(Payment gateway commission will be 2 percent for every transaction).\"]', '', 'Athar Ali', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2020-09-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-08-17 17:18:32', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2020-08-17 12:42:16'), (125, 459, 0, 715, '2020-08-23', 0, '0000-00-00', '', '2393', '306800', '[\"260000\"]', '50% of payment initially and remaining after completion of project', '[\"e-Commerce Application with Android and iOS application\\r\\nincludes website and shared server charges\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 23400, '9%', 23400, '18%', 0, 260000, '2020-09-07', 'Subramanya', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2020-08-23 11:22:46', 'Bangalore-Karnataka,India', '0000-00-00', 'Account', '2020-08-23 06:34:06'), (126, 460, 0, 715, '2020-08-25', 0, '0000-00-00', '', '2394', '8850', '[\"7500\"]', '100% of payment initially and remaining after completion of project', '[\"3\\\" Thermal Printer includes software applications lifetime license, 1yr motherboard warranty\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 675, '9%', 675, '18%', 0, 7500, '2020-09-09', 'Subramanya', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2020-08-25 16:23:59', 'Bangalore-Karnataka,India', '0000-00-00', 'Account', '2020-08-25 11:04:56'), (127, 465, 0, 718, '2020-09-16', 0, '0000-00-00', '', '2399', '27140', '[\"23000\"]', '50% of payment initially and remaining after completion of project', '[\"1.\\tLogo and Stationery (Letterhead, Envelope, Visiting cards, Flyer)\\r\\n2.\\tDomain and Hosting \\r\\n3.\\t Dynamic website development \\r\\n4.\\t E-mail configuration-1 NOS\\r\\n\"]', '', 'Ankush Rajpurohith', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2020-10-01', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-09-16 14:30:15', '370,6th cross Kamakshi Hospital road Mysuru-570 009 Karnataka ', '0000-00-00', 'Account', '2020-09-18 12:56:37'), (128, 445, 116, 0, '2020-06-27', 0, '0000-00-00', '', '2379', '7080', '[\"6000\"]', '100% of payment to be made.', '[\"AMC renewal for website\\r\\n\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-07-12', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-06-27 15:27:45', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00', 'Lead', '2020-09-24 07:13:51'), (129, 445, 116, 0, '2020-09-24', 0, '0000-00-00', '', '2379', '7080', '[\"6000\"]', '100% of payment to be made.', '[\"AMC renewal for website.\\r\\n\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-10-09', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-09-24 12:43:51', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00', 'Lead', '2020-09-24 09:28:03'), (130, 445, 116, 0, '2020-09-24', 0, '0000-00-00', '', '2379', '7080', '[\"6000\"]', '100% of payment to be made.', '[\"AMC renewal for website.\\r\\n\\r\\nAMC Period: 24-09-2020 to 24-09-2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-10-09', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-09-24 14:58:03', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00', 'Lead', '2020-09-24 09:40:58'), (131, 467, 0, 713, '2020-09-26', 0, '0000-00-00', '', '2401', '1650000', '[\"1650000\"]', '50% of payment initially and remaining after completion of project', '[\"Web Application and Development\"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 1650000, '2020-10-11', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-09-26 16:37:24', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00', 'Account', '2020-09-26 12:47:33'), (132, 467, 0, 713, '2020-09-26', 0, '0000-00-00', '', '2401', '1650000', '[\"1650000\"]', '50% of payment initially and remaining after completion of project', '[\"Web Application and Development\"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 1650000, '2020-10-11', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-09-26 18:17:33', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00', 'Account', '2020-09-26 12:48:05'), (133, 467, 0, 713, '2020-09-26', 0, '0000-00-00', '', '2401', '1650000', '[\"1650000\"]', '50% of payment initially and remaining after completion of project', '[\"Web Application and Development\"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 1650000, '2020-10-11', 'Rekha', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2020-09-26 18:18:05', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00', 'Account', '2020-09-28 13:05:57'), (134, 469, 0, 260, '2020-09-30', 0, '0000-00-00', '', '2403', '1180', '[\"1000\"]', '100% of payment to be made.', '[\"Website changes.\\r\\n1.Updating new address in website.\"]', '', 'Biosite India Pvt Ltd', 0, 'Waiting For Approval', '9%', 90, '9%', 90, '18%', 0, 1000, '2020-10-15', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-09-30 11:28:48', 'jp nagar 7th phase Bangalore Karnataka ', '0000-00-00', 'Account', '2020-09-30 07:23:30'), (135, 472, 0, 720, '2020-10-06', 0, '0000-00-00', '', '2406', '214760', '[\"182000\"]', '50% of payment initially and remaining after completion of project', '[\"1.Dynamic Website with 6 pages\\r\\n2.New patient registration\\r\\n3.Payment gateway integration\\r\\n4.Invoice generation\\r\\n5.Updating diagnostic report\\r\\n6.Appointment booking\\r\\n7.Viewing and downloading result \\r\\n by patient\\r\\n8. SSL Certificate\\r\\n9.Domain and Hosting\"]', '', 'athmika ramesh', 0, 'Waiting For Approval', '9%', 16380, '9%', 16380, '18%', 0, 182000, '2020-10-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-10-06 12:18:47', ' ', '0000-00-00', 'Account', '2020-10-06 07:13:30'), (136, 472, 0, 720, '2020-10-06', 0, '0000-00-00', '', '2406', '204140', '[\"173000\"]', '50% of payment initially and remaining after completion of project', '[\"1.Dynamic Website with 6 pages\\r\\n2.New patient registration\\r\\n3.Payment gateway integration\\r\\n4.Invoice generation\\r\\n5.Updating diagnostic report\\r\\n6.Appointment booking\\r\\n7.Viewing and downloading result \\r\\n by patient\\r\\n8. SSL Certificate\\r\\n9.Domain and Hosting\"]', '', 'Athmika ramesh', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2020-10-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-10-06 12:43:30', ' ', '0000-00-00', 'Account', '2020-10-06 09:59:38'), (137, 473, 0, 720, '2020-10-06', 0, '0000-00-00', '', '2407', '35400', '[\"21000\",\"9000\"]', '50% of payment initially and remaining after completion of project', '[\" Dynamic website for 5 Pages. Including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\nSupport for 1 year\\r\\n\",\"Domain : 1000\\r\\nHosting : 4000\\r\\nSSL Certificate : 4000\"]', '', 'athmika ramesh', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-10-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-10-06 17:03:47', ' Bangalore Karnataka ', '0000-00-00', 'Account', '2020-10-06 11:41:42'), (138, 486, 0, 590, '2020-11-23', 0, '0000-00-00', '', '2427', '35400', '[\"30000\"]', '100% of payment to be made.', '[\"Hosting charges on AWS for Lifesys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage\\r\\n100% of Payment to be made.\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-12-08', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-11-23 13:40:10', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00', 'Account', '2020-11-23 11:12:25'), (139, 476, 0, 543, '2020-11-06', 0, '0000-00-00', '', '2417', '4720', '[\"4000\"]', '100% of payment to be made. ', '[\"AMC renewal for website.\"]', '', 'FDOT', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-11-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-11-06 12:03:41', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA 560027', '0000-00-00', 'Account', '2020-12-14 07:14:18'), (140, 476, 0, 543, '2020-11-06', 0, '0000-00-00', '', '2417', '4720', '[\"4000\"]', '100% of payment to be made. ', '[\"AMC renewal for website,\\r\\nFrom 14-12-2020 To 14-12-2021\"]', '', 'FDOT', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-11-21', 'Rekha', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2020-12-14 12:44:18', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA 560027', '0000-00-00', 'Account', '2020-12-24 05:17:12'), (141, 489, 0, 102, '2021-01-04', 0, '0000-00-00', '', '2430', '17700', '[\"9000\",\"2000\",\"4000\"]', '100% of payment to be done', '[\"e-Commerce website environment creation, uploading and configuration\",\"Server configuration and enhancement\",\"Product upload\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2021-01-19', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-01-04 13:55:35', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka ', '0000-00-00', 'Account', '2021-01-04 13:55:53'), (142, 492, 0, 713, '2021-01-21', 0, '0000-00-00', '', '2433', '80000', '[\"80000\"]', '100% payment to be done', '[\"Support for medusys application.\\r\\n150 support hours. Includes: development, server management, bug fixing and application stabilization. \"]', '', 'Medusys Pty Ltd', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 80000, '2021-02-05', 'Subramanya', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2021-01-21 18:38:58', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00', 'Account', '2021-01-21 13:10:11'), (143, 495, 0, 713, '2021-01-28', 0, '0000-00-00', '', '2436', '45000', '[\"45000\"]', '100% payment to be done', '[\"Changes to existing application\"]', '', 'Medusys Pty Ltd', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2021-02-12', 'Subramanya', 'WAITING', '', 'no_tax', 'ACTIVE', 'Quotation', '2021-01-28 12:55:29', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00', 'Account', '2021-01-28 07:26:37'), (144, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '201780', '[\"126000\",\"25000\",\"20000\"]', '100% payment with PO', '[\"POS machine, 3inch Thermal Printer, Android software \\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 15390, '9%', 15390, '18%', 0, 171000, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-01-30 15:56:37', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-01-30 10:31:29'), (145, 494, 0, 169, '2021-01-27', 0, '0000-00-00', '', '2435', '129800', '[\"110000\"]', '50% of payment initially and remaining before completion of project', '[\"ERP Application enhancement (January-2021)\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 9900, '9%', 9900, '18%', 0, 110000, '2021-02-11', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-01-27 15:29:40', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2021-02-01 13:17:41'), (146, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '210630', '[\"133500\",\"25000\",\"20000\"]', '100% payment with PO', '[\"POS machine, 3inch Thermal Printer, Android software, Barcode Scanner\\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 16065, '9%', 16065, '18%', 0, 178500, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-01-30 16:01:29', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-02-02 10:53:26'), (147, 494, 0, 169, '2021-01-27', 0, '0000-00-00', '', '2435', '100300', '[\"85000\"]', '50% of payment initially and remaining before completion of project', '[\"ERP Application enhancement (January-2021)\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2021-02-11', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-02-01 18:47:41', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2021-02-02 10:53:51'), (148, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '204140', '[\"128000\",\"25000\",\"20000\"]', '100% payment with PO', '[\"POS machine, 3inch Thermal Printer, Android software, Barcode Scanner\\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-02-02 16:23:26', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-02-02 11:12:05'), (149, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '204140', '[\"128000\",\"25000\",\"20000\"]', '100% payment with PO\r\nWarranty: 1 year warranty on POS machine and printer. Accessories carry 6 months warranty.', '[\"POS machine, 3inch Thermal Printer, Android software, Barcode Scanner\\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-02-02 16:42:05', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-02-02 12:37:01'), (150, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '204140', '[\"120500\",\"25000\",\"20000\",\"7500\"]', '100% payment with PO\r\nWarranty: 1 year warranty on POS machine and printer. Accessories carry 6 months warranty.', '[\"POS machine, 3inch Thermal Printer, Android software, \\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\",\"Barcode Scanner\\r\\nQty-3\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-02-02 18:07:01', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-02-02 13:08:36'), (151, 496, 3259, 0, '2021-01-30', 0, '0000-00-00', '', '2437', '204140', '[\"120500\",\"25000\",\"20000\",\"7500\"]', '100% payment with PO\r\nWarranty: 1 year warranty on POS machine and printer. Accessories carry 6 months warranty.', '[\"POS machine, 3inch Thermal Printer, Android software, \\r\\nQty-3\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\",\"Barcode Scanner\\r\\nQty-3\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2021-02-14', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-02-02 18:38:36', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00', 'Lead', '2021-02-02 13:09:37'), (152, 504, 0, 394, '2021-03-16', 0, '0000-00-00', '', '2445', '59000', '[\"30000\",\"10000\",\"10000\"]', '50% of payment initially and remaining after completion of project', '[\"Website Redesigning with Wordpress or Joomla\",\"Mobile application with cloud server. Renewal @ Rs. 5000\\/year\",\"Chat bot\"]', '', 'Dr Shesha Prasad', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2021-03-31', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-03-16 16:52:45', ' Bengaluru ', '0000-00-00', 'Account', '2021-03-30 08:02:02'), (153, 504, 0, 394, '2021-03-16', 0, '0000-00-00', '', '2445', '59000', '[\"30000\",\"10000\",\"10000\"]', '50% of payment initially and remaining after completion of project', '[\"Website Redesigning with Wordpress or Joomla\",\"Mobile application with cloud server. Renewal @ Rs. 5000\\/year\",\"Chat bot\"]', '', 'Dr Shesha Prasad', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2021-03-31', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-03-30 13:32:02', ' Bengaluru ', '0000-00-00', 'Account', '2021-03-30 08:04:53'), (154, 507, 3257, 721, '2021-04-06', 0, '0000-00-00', '', '2448', '59000', '[\"50000\"]', '100% payment to be done', '[\"Digital marketing\\r\\nMonth: 3\"]', '', 'MMG Constructions LLP', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2021-04-21', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-04-06 17:59:29', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022 0', '0000-00-00', 'Account', '2021-04-07 06:37:54'), (155, 513, 0, 590, '2021-06-09', 0, '0000-00-00', '', '2454', '35400', '[\"30000\"]', '100% payment to be done', '[\"Hosting charges on AWS for Livsys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage.\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2021-06-24', 'Subramanya', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-06-09 11:06:14', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00', 'Account', '2021-06-09 05:48:24'), (156, 516, 0, 169, '2021-07-06', 0, '0000-00-00', '', '2457', '106200', '[\"90000\"]', '100% payment while start of AMC ', '[\"Support and AMC Charges for GSS Application and Mobile APP\\r\\nTotally of 200 hours of support which can be used for Development as well.\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 8100, '9%', 8100, '18%', 0, 90000, '2021-07-21', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-07-06 16:12:59', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00', 'Account', '2021-07-08 13:37:21'), (157, 517, 0, 714, '2021-07-12', 0, '0000-00-00', '', '2458', '5310', '[\"4500\"]', '50% of payment initially and remaining after completion of project', '[\"Hosting and Domain for 1 year July 12 2021 to July 12 2022\"]', '', 'Udupi bakery', 0, 'Waiting For Approval', '9%', 405, '9%', 405, '18%', 0, 4500, '2021-07-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-07-12 15:29:24', ' Bangalore Karnataka ', '0000-00-00', 'Account', '2021-07-12 10:00:28'), (158, 532, 0, 488, '2021-08-09', 0, '0000-00-00', '', '2473', '', '[\"3500\"]', 'No Comments', '[\"Website Hosting renewal and AMC till 27 July 2022\"]', '', 'G V IMPORTS & INFRA', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 3500, '2021-08-24', 'Biddu', 'WAITING', '', 'Within State', 'ACTIVE', 'Quotation', '2021-08-09 14:12:27', '#atom sports gottigere Bannerghatta main road ,Bangalore-560001,Karnataka,India', '0000-00-00', 'Account', '2021-08-09 08:49:03'), (159, 549, 2540, 0, '2021-08-16', 0, '0000-00-00', '', '2490', '4720', '[\"4000\"]', 'No Comments', '[\"Website renewal for 18-06-2021 to 18-06-\\r\\n2022\"]', '', 'Syed', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-31', 'Biddu', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-08-16 17:12:55', 'Basavanagudi Bangalore Karnataka 560064', '0000-00-00', 'Lead', '2021-08-16 11:43:29'), (160, 567, 3271, 731, '2021-09-07', 0, '0000-00-00', '', '2507', '66160', '[\"45000\",\"8000\",\"3068\"]', 'No Comments', '[\"Dentics Software Life Time License. Support and SMS charges will be added every year \",\"Server and Domain Charges\",\" For 5000 SMS package with 1 year validity is 2600 + 18% GST (Rs 468) = Rs 3068\\r\\n For 10000 SMS package with 1 year validity is 4300 + 18% GST (Rs 774) = Rs 5074\"]', '', 'Dr Srinivas', 0, 'Waiting For Approval', '9%', 5046, '9%', 5046, '18%', 0, 56068, '2021-09-22', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-09-07 19:04:25', ' Bangalore 0', '0000-00-00', 'Account', '2021-09-07 13:35:24'), (161, 580, 0, 107, '2021-10-21', 0, '0000-00-00', '', '2520', '51920', '[\"40000\",\"4000\"]', 'No Comments', '[\"Digital Marketing\",\"AMC renewal for website from 21-10-2021 to 21-10-2022\"]', '', 'Dr Madhusudhan(Smile Studio)', 0, 'Waiting For Approval', '9%', 3960, '9%', 3960, '18%', 0, 44000, '2021-11-05', 'Biddu', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-10-21 13:31:36', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '0000-00-00', 'Account', '2021-10-21 08:31:00'), (162, 573, 0, 526, '2021-09-28', 0, '0000-00-00', '', '2513', '129800', '[\"45000\",\"65000\"]', '50% of payment initially and remaining after completion of project. ', '[\"Prestashop E-commerce Development with upgraded version \",\"woocommerce E-commerce application Development \"]', '', 'T.saifuddin & co', 0, 'Waiting For Approval', '9%', 9900, '9%', 9900, '18%', 0, 110000, '2021-10-13', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-09-28 13:54:35', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '0000-00-00', 'Account', '2021-11-08 10:44:44'), (163, 586, 0, 305, '2021-11-12', 0, '0000-00-00', '', '2526', '37760', '[\"30000\",\"2000\"]', 'Quotation is for one month. ', '[\"Paid Marketing Management\\r\\nGoogle Ads:\\r\\n1. Keywords in campaign (Upto 200)\\r\\n2. Ad Copies copywriting (including text and banners) Upto 40\\r\\n3. Negative & fraud click optimization\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google analytics)\\r\\n6. Ads, landing pages & keywords performance testing\\r\\n7. Bid Management across ads, keywords, locations, devices, Interests\\r\\n8. Dynamic ads\\r\\n9. Rule based bidding setup & optimization\\r\\n10. A\\/B Testing\\r\\n11. Search ads, Display Ads (Google Partner websites)\\r\\n12. Google local ads (targeting call, store visit & Google map)\\r\\n13. YouTube video ads (clients need to provide video)\\r\\n14. Exclusive mobile ads\\r\\n15. Gmail ads\\r\\n16. Monthly results analysis\\/reporting\\r\\n17. Audience behaviour report\\r\\n18. ROI analysis\\/report\",\"Landing Page ( Single Page ) One time cost.\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 2880, '9%', 2880, '18%', 0, 32000, '2021-11-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-11-12 18:38:36', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '0000-00-00', 'Account', '2021-11-18 06:00:43'), (164, 587, 0, 186, '2021-11-18', 0, '0000-00-00', '', '2527', '8260', '[\"7000\"]', 'No Comments', '[\"Increasing the Bandwidth from 10 GB to 25 GB \"]', '', 'Ragav Diagnostic and Research centre Pvt Ltd', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2021-12-03', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-11-18 12:39:03', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '0000-00-00', 'Account', '2021-11-18 07:09:35'), (165, 587, 0, 186, '2021-11-18', 0, '0000-00-00', '', '2527', '8260', '[\"7000\"]', 'No Comments', '[\"Increasing the Hosting Bandwidth from 10 GB to 25 GB Per Day\"]', '', 'Ragav Diagnostic and Research centre Pvt Ltd', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2021-12-03', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-11-18 12:39:35', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '0000-00-00', 'Account', '2021-11-18 07:09:42'), (166, 586, 0, 305, '2021-11-12', 0, '0000-00-00', '', '2526', '29500', '[\"23000\",\"2000\"]', 'Quotation is for one month. ', '[\"Paid Marketing Management\\r\\nGoogle Ads:\\r\\n1. Keywords in campaign (Upto 200)\\r\\n2. Ad Copies copywriting (including text and banners) Upto 40\\r\\n3. Negative & fraud click optimisation\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google analytics)\\r\\n6. Bid Management across ads, keywords, locations, devices, Interests\\r\\n7. A\\/B Testing\\r\\n8. Search ads, Display Ads (Google Partner websites)\\r\\n9. YouTube video ads (clients need to provide video)\\r\\n10. Monthly results analysis\\/reporting\\r\\n11. Audience behaviour report\\r\\n12. ROI analysis\\/report\",\"Landing Page ( Single Page ) One time cost.\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2021-11-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-11-18 11:30:43', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '0000-00-00', 'Account', '2021-11-29 06:00:24'), (167, 586, 0, 305, '2021-11-12', 0, '0000-00-00', '', '2526', '29500', '[\"23000\",\"2000\"]', 'Quotation is for one month. ', '[\"Paid Marketing Management\\r\\nGoogle Ads:\\r\\n1. Keywords in campaign (Upto 200)\\r\\n2. Ad Copies copywriting (including text and banners) Upto 40\\r\\n3. Negative & fraud click optimisation\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google analytics)\\r\\n6. Bid Management across ads, keywords, locations, devices, Interests\\r\\n7. A\\/B Testing\\r\\n8. Search ads, Display Ads (Google Partner websites)\\r\\n9. YouTube video ads (clients need to provide video)\\r\\n10. Monthly results analysis\\/reporting\\r\\n11. Audience behaviour report\\r\\n12. ROI analysis\\/report\\r\\n13.Ads, landing pages & keywords\\r\\nperformance testing\",\"Landing Page ( Single Page ) One time cost.\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2021-11-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-11-29 11:30:24', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '0000-00-00', 'Account', '2021-12-03 06:04:33'); INSERT INTO `old_quotation_details` (`id`, `quotation_id`, `lead_id`, `account_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `price`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `tax_state`, `tax_no_tax`, `delete_status`, `type`, `old_created_at`, `address`, `old_updated_at`, `quatetion_from`, `created_at`) VALUES (168, 598, 3272, 0, '2021-12-06', 0, '0000-00-00', '', '2538', '53100', '[\"45000\"]', '50% of payment initially and remaining after completion of project', '[\"Dentics software. One time payment .\\r\\n\\r\\n1. AMC Rs.5000 \\/ year + GST\\r\\n\\r\\n2. The customer to manage the DLT \\r\\n registration and sender ID. Once \\r\\n they get the Sender ID approved, \\r\\n we can configure the same in the \\r\\n PMS software. SMS as per the \\r\\n package they choose. We will send \\r\\n the SMS package tariff soon.\"]', '', 'Divya', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2021-12-21', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2021-12-06 14:50:03', 'No.728/9 , Bommasandra industrial area Main Road Near SBI Bank, Bangalore karnataka 560009', '0000-00-00', 'Lead', '2021-12-06 09:22:54'), (169, 617, 0, 520, '2022-05-30', 0, '0000-00-00', '', '2557', '5900', '[\"5000\"]', 'No comments', '[\"website hosting and domain renewal \"]', '', 'Yuva Sene', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-06-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-05-30 16:13:02', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '0000-00-00', 'Account', '2022-05-30 10:43:27'), (170, 619, 0, 129, '2022-07-05', 0, '0000-00-00', '', '2559', '5900', '[\"5000\"]', 'No comments ', '[\"Hosting and domain renewal for 1 year till july 20223 \"]', '', 'Ashirwad Dental Clinic', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-07-20', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-07-05 17:43:39', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '0000-00-00', 'Account', '2022-07-27 07:49:02'), (171, 628, 0, 727, '2022-08-24', 0, '0000-00-00', '', '2568', '35400', '[\"25000\",\"5000\"]', 'No comments', '[\"Google Email Id for 10 number. For one year subscription. \\r\\n30 GB cloud storage per user\\r\\n\",\"Migration from existing email id \"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2022-09-08', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-08-24 18:48:48', ' Bangalore Karnataka 560008', '0000-00-00', 'Account', '2022-08-24 13:19:31'), (172, 628, 0, 727, '2022-08-24', 0, '0000-00-00', '', '2568', '35400', '[\"25000\",\"5000\"]', 'No comments', '[\"Google Email Id for 10 number. For one year subscription. \\r\\n30 GB cloud storage per user\\r\\n\",\"service charge for Migration from existing email id.\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2022-09-08', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-08-24 18:49:31', ' Bangalore Karnataka 560008', '0000-00-00', 'Account', '2022-08-24 13:19:40'), (173, 634, 2053, 0, '2022-09-14', 0, '0000-00-00', '', '2574', '8260', '[\"7000\"]', 'No comments', '[\"Hosting Renewal and AMC for website till sept 2023\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2022-09-29', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-14 17:49:03', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '0000-00-00', 'Lead', '2022-09-14 12:19:32'), (174, 641, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2581', '5134', '[\"850\",\"3500\"]', 'For Requirement collection will be managed through phone or email or our resource is represented to client location . service charge of Rs 1000/- per hour is billed only when our resource is represented to client location with in mysore(TA DA will be applicable when visited out side of mysore). ', '[\"Poster Design for single poster.(content has to be provided from school)\",\"video editing (content has to be provided from school). 20 slides per minitue . We will charge based number of minitues.\"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 392, '9%', 392, '18%', 0, 4350, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-27 13:37:57', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-27 08:10:33'), (175, 642, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2582', '127440', '[\"22000\",\"1000\",\"5000\",\"45000\",\"5000\",\"30000\"]', '50% of payment initially and remaining after completion of project.', '[\"website development charges for https:\\/\\/www.sjcsvijaynagarmysuru.in\\/ \",\"Domain charges per year. Domain is already purchased we will integrate the same.\",\"Server charges per year. \",\"website development charges for https:\\/\\/www.mdes.co.in\\/ \",\"Server charges per year for www.mdes.co.in\",\"AMC we will give 50 hours package per year which can be utilised for both the websites. the validity of the package will be for one year. support package can be utilised for website updation and for any new development activities. \"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 9720, '9%', 9720, '18%', 0, 108000, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-27 13:51:19', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-27 08:23:36'), (176, 627, 0, 653, '2022-08-23', 0, '0000-00-00', '', '2567', '8260', '[\"7000\"]', 'No comments', '[\"APIMYSORE.ORG website hosting and domain renewal for one year .Along with 10hrs of support for website changes\"]', '', 'Brindavan hospital', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2022-09-07', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-08-23 18:48:34', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka 570002', '0000-00-00', 'Account', '2022-09-28 08:46:13'), (177, 642, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2582', '127440', '[\"22000\",\"1000\",\"5000\",\"45000\",\"5000\",\"30000\"]', '50% of payment initially and remaining after completion of project.', '[\"website development charges for https:\\/\\/www.sjcsvijaynagarmysuru.in\\/ \",\"Domain charges per year. Domain is already purchased we will integrate the same.\",\"Server charges per year. \",\"website development charges for https:\\/\\/www.mdes.co.in\\/ \",\"Server charges per year for www.mdes.co.in\",\"Support package will be provided with 50 hours package per year which can be utilised for both the websites. the validity of the package will be for one year. support package can be utilised for website updation and for any new development activities. Once support hours is completed it has to be recharged .\"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 9720, '9%', 9720, '18%', 0, 108000, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-27 13:53:36', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-30 06:16:23'), (178, 641, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2581', '5134', '[\"850\",\"3500\"]', 'For Requirement collection will be managed through phone or email or our resource is represented to client location . service charge of Rs 1000/- per hour is billed only when our resource is represented to client location with in mysore(TA DA will be applicable when visited out side of mysore). ', '[\"Poster Design for single poster.(content has to be provided from school)\",\"video editing (content has to be provided from school). 20 slides per minute . we will bill based on number of minutes. (we have mentioned charges per minute )\"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 392, '9%', 392, '18%', 0, 4350, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-27 13:40:33', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-30 06:19:40'), (179, 641, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2581', '3954', '[\"850\",\"2500\"]', 'For Requirement collection will be managed through phone or email or our resource is represented to client location . service charge of Rs 1000/- per hour is billed only when our resource is represented to client location out of mysore. Within mysore No service charge on visiting. ', '[\"Poster Design for single poster.(content has to be provided from school)\",\"video editing (content has to be provided from school). Maximum 25 slides per video no limit on video length . \"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 302, '9%', 302, '18%', 0, 3350, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-30 11:49:40', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-30 06:19:56'), (180, 641, 3274, 740, '2022-09-27', 0, '0000-00-00', '', '2581', '3954', '[\"850\",\"2500\"]', 'For Requirement collection will be managed through phone or email or our resource is represented to client location . service charge of Rs 1000/- per hour is billed only when our resource is represented to client location out of mysore. Within mysore No service charge on visiting. ', '[\"Poster Design for single poster.(content has to be provided from school)\",\"video editing (content has to be provided from school). Maximum 25 slides per video no limit on video length . \"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 302, '9%', 302, '18%', 0, 3350, '2022-10-12', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-09-30 11:49:56', ' Mysore 570012', '0000-00-00', 'Account', '2022-09-30 06:20:23'), (181, 646, 0, 727, '2022-11-15', 0, '0000-00-00', '', '2586', '29500', '[\"25000\"]', 'Payment Terms: 100% Advance along with the PO\r\nPrice is valid till 30th November, 2022.\r\nPrice is subject to change without any prior notice\r\nOrder once placed cannot be canceled\r\nIf any other Migration, Implementation, Development, Automation & Scripting will be charged extra.', '[\"M365 Business Basic and Configuration charges included\\r\\nFor one year.\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-11-30', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-15 12:33:17', ' Bangalore Karnataka 560008', '0000-00-00', 'Account', '2022-11-15 07:35:27'), (182, 646, 0, 727, '2022-11-15', 0, '0000-00-00', '', '2586', '29500', '[\"15000\",\"10000\"]', 'Payment Terms: 100% Advance along with the PO\r\nPrice is valid till 30th November, 2022.\r\nPrice is subject to change without any prior notice\r\nOrder once placed cannot be canceled\r\nIf any other Migration, Implementation, Development, Automation & Scripting will be charged extra.', '[\"M365 Business Basic and Configuration charges included\\r\\nFor one year.\",\"Service Charges\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-11-30', 'Manjesh', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-15 13:05:27', ' Bangalore Karnataka 560008', '0000-00-00', 'Account', '2022-11-15 07:38:32'), (183, 646, 0, 727, '2022-11-15', 0, '0000-00-00', '', '2586', '29500', '[\"15000\",\"10000\"]', 'Payment Terms: 100% Advance along with the PO\r\nPrice is valid till 30th November, 2022.\r\nPrice is subject to change without any prior notice\r\nOrder once placed cannot be canceled\r\nIf any other Migration, Implementation, Development, Automation & Scripting will be charged extra.', '[\"M365 Business Basic and Configuration charges included\\r\\nFor one year. (One Email ID charge is 1500 and for 10 Email Id charges is 15000)\",\"Service Charges \"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-11-30', 'Manjesh', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-15 13:08:32', ' Bangalore Karnataka 560008', '0000-00-00', 'Account', '2022-11-15 07:38:43'), (184, 647, 0, 743, '2022-11-15', 0, '0000-00-00', '', '2587', '17700', '[\"15000\"]', '50% of payment initially and remaining after completion of project', '[\"Static Webiste Development and Maintenance Hosting and Domain Included.\"]', '', 'Sumukha Diabetes Centre and Poly Clinic', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2022-11-30', 'Manjesh', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-15 13:02:03', 'No. 107, 1, 4th Main 11th Cross Rd, Vidyaranyapura Mysuru Karnataka 570008', '0000-00-00', 'Account', '2022-11-15 12:34:56'), (185, 651, 3277, 0, '2022-11-18', 0, '0000-00-00', '', '2591', '115640', '[\"35000\",\"30000\",\"25000\",\"8000\"]', '50% of payment initially and remaining after completion of project', '[\"WEBSITE CREATION MAINTENANC & HOSTING , LOGO RECREATION (TEMPLE OF TRINITY)\",\"WEBSITE CREATION MAINTENANC & HOSTING , LOGO RECREATION (LET\'S GO GREEN INDIA)\",\"WEBSITE CREATION MAINTENANC & HOSTING , (JDA PROJECTS)\",\"TWO OFFICIAL MAIL ID CREATION\"]', '', 'JESUDAS', 0, 'Waiting For Approval', '9%', 8820, '9%', 8820, '18%', 0, 98000, '2022-12-03', 'Manjesh', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-18 11:56:07', '580, CH 44/3A, VANI VILLAS DOUBLE ROAD MYSORE KARNATAKA 0', '0000-00-00', 'Lead', '2022-11-18 06:35:12'), (186, 651, 3277, 0, '2022-11-18', 0, '0000-00-00', '', '2591', '115640', '[\"35000\",\"30000\",\"25000\",\"8000\"]', '50% of payment initially and remaining after completion of project', '[\"WEBSITE CREATION MAINTENANC & HOSTING , LOGO RECREATION (TEMPLE OF TRINITY)\",\"WEBSITE CREATION MAINTENANC & HOSTING , LOGO RECREATION (LET\'S GO GREEN INDIA)\",\"WEBSITE CREATION MAINTENANC & HOSTING , (JDA PROJECTS)\",\"TWO OFFICIAL MAIL ID IN Google CREATION\"]', '', 'JESUDAS', 0, 'Waiting For Approval', '9%', 8820, '9%', 8820, '18%', 0, 98000, '2022-12-03', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-18 12:05:12', '580, CH 44/3A, VANI VILLAS DOUBLE ROAD MYSORE KARNATAKA 0', '0000-00-00', 'Lead', '2022-11-18 06:37:39'), (187, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '418900', '[\"155000\",\"200000\"]', '100 % payment we expect on support which is already given and 50% payment on the New Requirement that is Mels online exam preparation.', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \",\"Mels online exam preparation changes involves Minimum of 20 working days of work with 4 resources\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 31950, '9%', 31950, '18%', 0, 355000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-29 18:53:59', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 06:35:00'), (188, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '401200', '[\"155000\",\"185000\"]', '100 % payment we expect on support which is already given and 50% payment on the New Requirement that is Mels online exam preparation.', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \",\"Mels medusys new registration approach \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 30600, '9%', 30600, '18%', 0, 340000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 12:05:00', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 06:36:43'), (189, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '401200', '[\"155000\",\"185000\"]', '100 % payment we expect on support which is already given and 50% payment on the New Requirement that is Mels medusys new registration approach.', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \",\"Mels medusys new registration approach \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 30600, '9%', 30600, '18%', 0, 340000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 12:06:43', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 06:37:19'), (190, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '401200', '[\"155000\",\"185000\"]', '100 % payment we expect on support which is already given and 50% payment on the New Requirement that is Mels medusys new registration approach.', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \",\"Mels medusys new registration approach \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 30600, '9%', 30600, '18%', 0, 340000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 12:07:19', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 09:31:14'), (191, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '182900', '[\"155000\"]', '100 % payment we expect on support which is already given and 50% payment on the New Requirement that is Mels medusys new registration approach.', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 13950, '9%', 13950, '18%', 0, 155000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 15:01:14', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 09:35:10'), (192, 653, 0, 737, '2022-11-29', 0, '0000-00-00', '', '2593', '182900', '[\"155000\"]', '100% payment expected ', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 13950, '9%', 13950, '18%', 0, 155000, '2022-12-14', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 15:05:10', 'Bangalore ', '0000-00-00', 'Account', '2022-11-30 09:35:13'), (193, 654, 0, 737, '2022-11-30', 0, '0000-00-00', '', '2594', '206500', '[\"125000\",\"50000\"]', '50 % advance at the initial of the project and remaining after completion.', '[\"Mels medusys new registration approach \",\"Mels online exam Preparations \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 15750, '9%', 15750, '18%', 0, 175000, '2022-12-15', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2022-11-30 15:02:28', 'Bangalore ', '0000-00-00', 'Account', '2022-12-17 06:48:26'), (194, 660, 0, 737, '2023-01-10', 0, '0000-00-00', '', '2600', '189980', '[\"111000\",\"50000\"]', 'No Comments ', '[\"Medusys GAS Server For 6 Months. \\r\\n2x Intel Xeon E5-2695\\r\\n4 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nWindows Server 2019 Standard Edition\\r\\nSQL Server 2019 Web Edition\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nServer renewed till June 30 2023\",\"Support hours package 50 hours for next 6 months.\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 14490, '9%', 14490, '18%', 0, 161000, '2023-01-25', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-01-10 11:25:32', 'Bangalore ', '0000-00-00', 'Account', '2023-01-10 05:57:31'), (195, 661, 3261, 724, '2023-01-10', 0, '0000-00-00', '', '2601', '88500', '[\"60000\",\"15000\"]', 'Server charges should be paid Upfront. Service charges can be paid once work done.', '[\"Server for ERP 16gb ram \\r\\n100 gb storage\\r\\nUnlimited bandwidth\\r\\n1 Dedicated IP address :\\r\\n4 core cpu. \\r\\nFrom the Month of Jan 2023 to June 2023 (6 months)\",\"Level 3 support and Migration charges for 6 months\"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2023-01-25', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-01-10 14:47:21', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-01-10 09:18:12'), (196, 660, 0, 737, '2023-01-10', 0, '0000-00-00', '', '2600', '189980', '[\"161000\"]', 'No Comments ', '[\"Medusys GAS Server For 6 Months. \\r\\n2x Intel Xeon E5-2695\\r\\n4 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nWindows Server 2019 Standard Edition\\r\\nSQL Server 2019 Web Edition\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 50 hours for next 6 months.\\r\\n\\r\\nServer renewed till June 30 2023\\r\\n\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 14490, '9%', 14490, '18%', 0, 161000, '2023-01-25', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-01-10 11:27:31', 'Bangalore ', '0000-00-00', 'Account', '2023-01-11 11:36:12'), (197, 660, 0, 737, '2023-01-10', 0, '0000-00-00', '', '2600', '70800', '[\"60000\"]', 'No Comments ', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till march 31 2023\\r\\n\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2023-01-25', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-01-11 17:06:12', 'Bangalore ', '0000-00-00', 'Account', '2023-01-11 11:36:17'), (198, 660, 0, 737, '2023-01-10', 0, '0000-00-00', '', '2600', '70800', '[\"60000\"]', 'No Comments ', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till march 31 2023\\r\\n\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2023-01-25', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-01-11 17:06:17', 'Bangalore ', '0000-00-00', 'Account', '2023-01-11 11:37:31'), (199, 665, 0, 0, '2023-03-07', 66, '0000-00-00', '', '2605', '413000', '[\"350000\"]', '50% of payment initially and remaining after completion of project', '[\"Development of online training Application with following \\r\\nFeatures \\r\\n\\r\\n1. Add Topics\\u2028 \\r\\n2. Training Plan\\u2028\\r\\n3. Add Content\\u2028\\r\\n4. Test Settings\\r\\n\\u20285. Batch\\r\\n\\u20286. Enrolled Users \\r\\n7. Feedbacks\\u2028\\r\\n8. Request Course\\r\\n\\r\\nApplication will be having Student Login \\r\\nFaculty Login\\r\\nAdmin Login\"]', '', 'Hemanth Naik', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-03-22', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-03-07 16:26:22', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00', 'Potential', '2023-03-07 10:57:21'), (200, 665, 0, 0, '2023-03-07', 66, '0000-00-00', '', '2605', '413000', '[\"350000\"]', '50% of payment initially and remaining after completion of project', '[\"Development of online training Application with following \\r\\nFeatures \\r\\n\\r\\n1. Add Topics\\u2028 \\r\\n2. Training Plan\\u2028\\r\\n3. Add Content\\u2028\\r\\n4. Test Settings\\r\\n\\u20285. Batch\\r\\n\\u20286. Enrolled Users \\r\\n7. Feedbacks\\u2028\\r\\n8. Request Course\\r\\n\\r\\nApplication will be having Student Login \\r\\nFaculty Login\\r\\nAdmin Login\"]', '', 'DR Hemanth Naik', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-03-22', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-03-07 16:27:21', 'Viztouch Forensic Imaging Services private limited\r\nBangalore -560003\r\n', '0000-00-00', 'Potential', '2023-03-07 10:58:38'), (201, 666, 0, 737, '2023-03-09', 0, '0000-00-00', '', '2606', '295000', '[\"250000\"]', '50% of payment initially and remaining after completion of project', '[\"WITH ONE ADDITION OF VIDEO SECTION VIDEO SECTION SHOULD PROVIDE USERS ABiLITY TO ADD VIDEOS, SHARE, AND COMMENT, Reply, Ability to\\r\\ndelete ,comment ,reply from admin for any irrelevant (bad comments)\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 22500, '9%', 22500, '18%', 0, 250000, '2023-03-24', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-03-09 12:35:50', 'Bangalore ', '0000-00-00', 'Account', '2023-03-09 08:39:05'), (202, 669, 3261, 724, '2023-04-17', 0, '0000-00-00', '', '2609', '188800', '[\"160000\"]', 'No comments ', '[\"Change request and Support From 13 August 2022 to 17 April 2023 Total 163.5 hours \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 28800, 160000, '2023-05-02', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-04-17 19:02:53', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-04-18 11:45:49'), (203, 671, 3255, 0, '2023-04-20', 0, '0000-00-00', '', '2611', '8260', '[\"7000\"]', 'No Comments', '[\"Hosting for dentics Application Till April 2024\"]', '', 'Dr jayanthi ', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2023-05-05', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-04-20 18:49:35', ' Bangalore Karnataka 0', '0000-00-00', 'Lead', '2023-04-21 07:29:36'), (204, 672, 3261, 724, '2023-04-28', 0, '0000-00-00', '', '2612', '134520', '[\"45000\",\"54000\",\"5000\",\"10000\"]', 'No comments', '[\"Automated mail configuration for reports\",\"Four days rahul has supported in pondicherry\",\"Support from mysore\",\"Travel Allowance \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 10260, '9%', 10260, '18%', 0, 114000, '2023-05-13', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-04-28 11:36:21', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-04-28 06:33:59'), (205, 672, 3261, 724, '2023-04-28', 0, '0000-00-00', '', '2612', '134520', '[\"45000\",\"54000\",\"5000\",\"10000\"]', 'No comments', '[\"Automated mail configuration for reports\",\"Four days rahul has supported in pondicherry\",\"Support from mysore\",\"Travel Allowance \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 10260, '9%', 10260, '18%', 0, 114000, '2023-05-13', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-04-28 12:03:59', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-04-28 06:34:01'), (206, 672, 3261, 724, '2023-04-28', 0, '0000-00-00', '', '2612', '134520', '[\"45000\",\"54000\",\"5000\",\"10000\"]', 'No comments', '[\"Automated mail configuration for reports\",\"Four days rahul has supported in pondicherry\",\"Support from mysore\",\"Travel Allowance \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 10260, '9%', 10260, '18%', 0, 114000, '2023-05-13', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-04-28 12:04:01', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-04-28 06:42:31'), (207, 681, 0, 737, '2023-07-07', 0, '0000-00-00', '', '2621', '413000', '[\"350000\"]', '50% of payment initially and remaining after completion of project', '[\"Create a new header content to show the subscription validity date (all the time)\\r\\n - track subscription data\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nNotification for renewal of subscription\\r\\n\\r\\n Banner in the homepage after every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\r\\n Popup message upon every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\r\\nSame message in top of Notifications section (all the time from T-90days)\\r\\n\\r\\nEmail notifications to users T-90days\\/T-60days\\/T-45days\\/T-30days\\/T-15days\\/T-10days\\/T-5days\\/T-1day\\r\\n\\r\\nEmail Notifications users who have missed the renewal \\u2013 (T+ every 15days)\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023\\r\\nAll users who have registered from 1\\/1\\/2023\\r\\n one year from date of registration\\r\\n\\r\\nRenewal and new membership drive\\r\\nWe can send discount information thru notifications for time bound registrations\\r\\n\\u2022(example\\u2026 if u renew T-90days - __ discount\\r\\n\\u2022T-60 to 90 days - ____\\r\\n\\u2022T-30 to 60 days _____\\r\\n\\u2022T-15 to 30 days _____\\r\\n\\r\\n We can provide some hidden discount e-card in GAS Medusys for renewals and in Medusys website for new registrations (fixed 10days or 15 days period) code- 5j851\\r\\n\\r\\nReferrals \\u2013 refer a friend and get discount for next subscription\\r\\n Example.. 5% discount for each reference.. 50% discount if you refer 10 people. 100% discount if you refer 20 people. GAMER ID\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-07-22', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-07-07 14:29:29', 'Bangalore ', '0000-00-00', 'Account', '2023-07-07 16:56:00'), (208, 684, 0, 737, '2023-07-26', 0, '0000-00-00', '', '2624', '177000', '[\"150000\"]', '50% of payment initially and remaining after completion of project', '[\"PHASE 1\\r\\nCreate a new header content to show the subscription validity date (all the time) - track subscription data\\r\\nPHASE 1\\r\\n \\u2022 \\u2022\\r\\n\\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nRenew subscription\\r\\nRenewal and payment before the expiry date -\\r\\nRENEW NOW BUTTON TO BE SHOWN IN HOMESCREEN AFTER LOGIN Subscription date starts from\\r\\nRenewal and payment after the expiry date \\u2013\\r\\nRENEW NOW BUTTON TO BE SHOWN WHEN USER TRIES TO LOGIN WITH SAME\\r\\nUSERNAME PASSWORD.\\r\\n\\r\\nSubscriptions\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023 All users who have registered from 1\\/1\\/2023\\r\\none year from date of registration\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 13500, '9%', 13500, '18%', 0, 150000, '2023-08-10', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-07-26 16:40:03', 'Bangalore ', '0000-00-00', 'Account', '2023-07-27 07:57:08'), (209, 684, 0, 737, '2023-07-26', 0, '0000-00-00', '', '2624', '259600', '[\"110000\",\"110000\"]', '50% of payment initially and remaining after completion of project', '[\"PHASE 1\\r\\nCreate a new header content to show the subscription validity date (all the time) - track subscription data\\r\\nPHASE 1\\r\\n \\u2022 \\u2022\\r\\n\\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nRenew subscription\\r\\nRenewal and payment before the expiry date -\\r\\nRENEW NOW BUTTON TO BE SHOWN IN HOMESCREEN AFTER LOGIN Subscription date starts from\\r\\nRenewal and payment after the expiry date \\u2013\\r\\nRENEW NOW BUTTON TO BE SHOWN WHEN USER TRIES TO LOGIN WITH SAME\\r\\nUSERNAME PASSWORD.\\r\\n\\r\\nSubscriptions\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023 All users who have registered from 1\\/1\\/2023\\r\\none year from date of registration\\r\\n\",\"PHASE 2\\r\\nNotification for renewal of subscription\\r\\n\\u2022 Banner in the homepage after every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Popup message upon every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Same message in top of Notifications section (all the time from T-90days)\\r\\n\\u2022 Email notifications to users T-90days\\/T-60days\\/T-45days\\/T-30days\\/T-15days\\/T-10days\\/T-5days\\/T-1day\\r\\n\\u2022 Email Notifications users who have missed the renewal \\u2013 (T+ every 15days)\\r\\n \\r\\n \\r\\n \\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\n\\u2022\\r\\n\\u2022 \\u2022\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023 All users who have registered from 1\\/1\\/2023\\r\\none year from date of registration\\r\\nRenewal and new membership drive\\r\\nWe can send discount information thru notifications for time bound registrations\\r\\n(example... if u renew T-90days - __ discount T-60 to 90 days - ____\\r\\nT-30 to 60 days _____\\r\\nT-15 to 30 days _____\\r\\nWe can provide some hidden discount e-card in GAS Medusys for renewals and in Medusys website for new registrations (fixed 10days or 15 days period) code- 5j851\\r\\nReferrals \\u2013 refer a friend and get discount for next subscription\\r\\nExample.. 5% discount for each reference.. 50% discount if you refer 10people. 100% discount if you\\r\\nrefer 20 people. GAMER ID\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 19800, '9%', 19800, '18%', 0, 220000, '2023-08-10', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-07-27 13:27:08', 'Bangalore ', '0000-00-00', 'Account', '2023-08-04 10:23:24'), (210, 684, 0, 737, '2023-07-26', 0, '0000-00-00', '', '2624', '259600', '[\"110000\",\"110000\"]', '50% of payment initially and remaining after completion of project', '[\"PHASE 1\\r\\nCreate a new header content to show the subscription validity date (all the time) - track subscription data\\r\\nPHASE 1\\r\\n \\u2022 \\u2022\\r\\n\\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nRenew subscription\\r\\nRenewal and payment before the expiry date -\\r\\nRENEW NOW BUTTON TO BE SHOWN IN HOMESCREEN AFTER LOGIN Subscription date starts from\\r\\nRenewal and payment after the expiry date \\u2013\\r\\nRENEW NOW BUTTON TO BE SHOWN WHEN USER TRIES TO LOGIN WITH SAME\\r\\nUSERNAME PASSWORD.\\r\\n\\r\\nSubscriptions\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023 All users who have registered from 1\\/1\\/2023\\r\\none year from date of registration\\r\\n\",\"PHASE 2\\r\\nNotification for renewal of subscription\\r\\n\\u2022 Banner in the homepage after every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Popup message upon every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Same message in top of Notifications section (all the time from T-90days)\\r\\n\\u2022 Email notifications to users T-90days\\/T-60days\\/T-45days\\/T-30days\\/T-15days\\/T-10days\\/T-5days\\/T-1day\\r\\n\\u2022 Email Notifications users who have missed the renewal \\u2013 (T+ every 15days)\\r\\n \\r\\n \\r\\n \\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\n\\u2022\\r\\n\\u2022 \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 19800, '9%', 19800, '18%', 0, 220000, '2023-08-10', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-08-04 15:53:24', 'Bangalore ', '0000-00-00', 'Account', '2023-08-04 10:28:50'), (211, 691, 0, 737, '2023-08-23', 0, '0000-00-00', '', '2631', '413000', '[\"350000\"]', '50% of payment initially and remaining after completion of project. 45 working days for development.', '[\"LogBook Module development along with report (25 report has to download in a single file as per the login with filter option to reports similar to CNB. When user click on get report, message should be given that come after some time and download here )\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-09-07', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-08-23 13:18:26', 'Bangalore ', '0000-00-00', 'Account', '2023-08-25 09:15:26'), (212, 699, 0, 2, '2023-10-18', 0, '0000-00-00', '', '2638', '16520', '[\"5000\",\"4000\",\"5000\"]', ' No comments', '[\"Dentics Renewal for one year \",\"website Hosting and domain renewal for one year till october 2024\",\"Dentics server renewal for one year\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2023-11-02', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-10-18 13:34:33', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00', 'Account', '2023-10-18 08:18:24'), (213, 699, 0, 2, '2023-10-18', 0, '0000-00-00', '', '2638', '11800', '[\"5000\",\"5000\"]', ' No comments', '[\"Dentics Renewal for one year \",\"Dentics server renewal for one year\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2023-11-02', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-10-18 13:48:24', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00', 'Account', '2023-10-18 08:18:29'), (214, 702, 3261, 724, '2023-11-30', 0, '0000-00-00', '', '2641', '188800', '[\"160000\"]', 'Support ', '[\"Support for Plumage ERP 160 hours From May 2023 to Nov 2023\"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 28800, 160000, '2023-12-15', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-11-30 21:59:56', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00', 'Account', '2023-12-12 04:16:11'), (215, 702, 3261, 724, '2023-11-30', 0, '0000-00-00', '', '2641', '188800', '[\"160000\"]', 'Support ', '[\"Support for Plumage ERP 160 hours From May 2023 to Nov 2023\"]', '', 'Plumage Technology Private Limited', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 28800, 160000, '2023-12-15', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-12-12 09:46:11', 'Basaveshwara nagar Bangalore\r\nKarnataka 0', '0000-00-00', 'Account', '2023-12-12 04:18:45'), (216, 703, 3253, 709, '2023-12-15', 0, '0000-00-00', '', '2642', '88500', '[\"75000\"]', '50% of payment initially and remaining after completion of project', '[\"1.6 static pages with responsive design \\r\\n 2. Schedule meeting with add in time available in back end\\r\\n3. Contact us from..\\r\\n4. Blogs\\r\\n5. \\u2060uploaded videos\"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2023-12-30', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-12-15 14:32:11', ' Banglore 0', '0000-00-00', 'Account', '2023-12-15 16:40:50'), (217, 703, 3253, 709, '2023-12-15', 0, '0000-00-00', '', '2642', '100300', '[\"85000\"]', '50% of payment initially and remaining after completion of project', '[\"1.6 static pages with responsive design compatible to mobile and tab screens \\r\\n 2. Schedule meeting with add in time available in back end\\r\\n3. Contact us from..\\r\\n4. Blogs\\r\\n5. \\u2060uploaded videos\\r\\n6.appointment scheduler \"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2023-12-30', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-12-15 22:10:50', ' Banglore 0', '0000-00-00', 'Account', '2023-12-15 16:40:58'), (218, 704, 2053, 0, '2023-12-19', 0, '0000-00-00', '', '2643', '9440', '[\"8000\"]', 'No comments', '[\"Hosting Renewal and AMC for website \"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2024-01-03', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-12-19 12:21:46', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '0000-00-00', 'Lead', '2023-12-19 06:52:54'), (219, 704, 2053, 0, '2023-12-19', 0, '0000-00-00', '', '2643', '9440', '[\"8000\"]', 'No comments', '[\"Hosting Renewal and AMC for website sept 2024\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2024-01-03', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2023-12-19 12:22:54', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '0000-00-00', 'Lead', '2023-12-19 07:02:29'), (220, 708, 0, 737, '2024-01-22', 0, '0000-00-00', '', '2647', '354000', '[\"300000\"]', '50% of payment initially and remaining after completion of project', '[\"Development of New Institution 1 Module for GAS application.\\r\\nNew server setup with 2 different database.\\r\\nPresent GAS app will get this module.\\r\\n \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 27000, '9%', 27000, '18%', 0, 300000, '2024-02-06', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-01-22 14:05:13', 'Bangalore ', '0000-00-00', 'Account', '2024-03-29 09:47:27'), (221, 708, 0, 737, '2024-01-22', 0, '0000-00-00', '', '2647', '247800', '[\"210000\"]', '50% of payment initially and remaining after completion of project', '[\"Development of New Institution 1 Module for GAS application.\\r\\nNew server setup with 2 different database.\\r\\nPresent GAS app will get this module.\\r\\n \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 18900, '9%', 18900, '18%', 0, 210000, '2024-02-06', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-03-29 15:17:27', 'Bangalore ', '0000-00-00', 'Account', '2024-03-29 09:47:46'), (222, 721, 0, 737, '2024-05-09', 0, '0000-00-00', '', '2659', '236000', '[\"200000\"]', '50% of payment initially and remaining after completion of project', '[\"Loogbook-safe Anaesthesia Simplified version Development . 25 working days \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 18000, '9%', 18000, '18%', 0, 200000, '2024-05-24', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-05-09 15:35:35', 'Bangalore ', '0000-00-00', 'Account', '2024-05-09 10:06:52'), (223, 721, 0, 737, '2024-05-09', 0, '0000-00-00', '', '2659', '188800', '[\"160000\"]', '50% of payment initially and remaining after completion of project', '[\"Loogbook-safe Anaesthesia Simplified version Development . 25 working days \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 14400, '9%', 14400, '18%', 0, 160000, '2024-05-24', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-05-09 15:36:52', 'Bangalore ', '0000-00-00', 'Account', '2024-05-09 10:07:55'), (224, 723, 0, 754, '2024-06-12', 0, '0000-00-00', '', '2661', '80240', '[\"23000\",\"45000\"]', 'Based on the indent order will be processed', '[\"Asus E410 Laptop\\r\\n\\r\\nIntel Celeron N4500 Processor 8 GB DDR4 256 GB storage INTEL UHD graphics 14.0 inch screen Windows 11 OS Numberpad \\r\\n \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/4gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\"]', '', 'Handithavalli Grama Panchayat', 0, 'Waiting For Approval', '9%', 6120, '9%', 6120, '18%', 0, 68000, '2024-06-27', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-06-12 18:45:59', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '0000-00-00', 'Account', '2024-06-13 07:21:38'), (225, 723, 0, 754, '2024-03-11', 0, '0000-00-00', '', '2661', '95580', '[\"34000\",\"45000\",\"2000\"]', 'Based on the indent order will be processed', '[\"Dell laptop inspiron.intel ci3-11th generation processor\\/8gb ram\\/512gb SSD Hard disk\\/15.6 fhd screen\\/win 11\\/ms office \\/Dell carry case \\r\\n \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/8gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\",\"TVS keyboard\"]', '', 'Handithavalli Grama Panchayat', 0, 'Waiting For Approval', '9%', 7290, '9%', 7290, '18%', 0, 81000, '2024-06-21', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-06-13 12:51:38', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '0000-00-00', 'Account', '2024-06-15 07:37:23'), (226, 723, 0, 754, '2024-03-11', 0, '0000-00-00', '', '2661', '79060', '[\"23000\",\"44000\"]', 'Based on the indent order will be processed', '[\"Asus E410 Laptop Intel Celeron N4500 Processor 8 GB DDR4\\r\\n256 GB storage INTEL UHD graphics 14.0 inch screen Windows\\r\\n11 OS Numberpad \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/8gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\"]', '', 'Handithavalli Grama Panchayat', 0, 'Waiting For Approval', '9%', 6030, '9%', 6030, '18%', 0, 67000, '2024-06-21', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-06-15 13:07:23', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '0000-00-00', 'Account', '2024-06-27 07:56:44'), (227, 728, 0, 755, '2024-09-26', 0, '0000-00-00', '', '2666', '708000', '[\"600000\"]', '50% of payment initially and remaining after completion of project', '[\"ERP application for Mysore Nirmithi Kendra which includes all the 11 constituency and all the 38 departments with multiple login Roles\"]', '', 'Mysore Nirmithi Kendra ', 0, 'Waiting For Approval', '9%', 54000, '9%', 54000, '18%', 0, 600000, '2024-10-11', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-09-26 12:53:34', '98, Bogadi Main Rd, Gokulam 2nd Stage, Gokulam, Mysuru Karnataka 570026', '0000-00-00', 'Account', '2024-09-26 07:50:41'), (228, 728, 0, 755, '2024-09-18', 0, '0000-00-00', '', '2666', '708000', '[\"600000\"]', '50% of payment initially and remaining after completion of project', '[\"ERP application for Mysore Nirmithi Kendra which includes all the 11 constituency and all the 38 departments with multiple login Roles\"]', '', 'Mysore Nirmithi Kendra ', 0, 'Waiting For Approval', '9%', 54000, '9%', 54000, '18%', 0, 600000, '1970-01-01', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-09-26 13:20:41', '#98, Behind Regional College\r\nBogadi 2nd Stage Mysore - 570026', '0000-00-00', 'Account', '2024-09-26 10:32:28'), (229, 728, 0, 755, '2024-09-18', 0, '0000-00-00', '', '2666', '708000', '[\"600000\"]', '50% of payment initially and remaining after completion of project', '[\"ERP application for Mysore Nirmithi Kendra which includes all the 11 constituency and all the 38 departments with multiple login Roles\"]', '', 'Mysore Nirmithi Kendra ', 0, 'Waiting For Approval', '9%', 54000, '9%', 54000, '18%', 0, 600000, '2024-11-01', 'Ajay', 'WAITING', '', 'tax', 'ACTIVE', 'Quotation', '2024-09-26 16:02:28', '#98, Behind Regional College\r\nBogadi 2nd Stage Mysore - 570026', '0000-00-00', 'Account', '2024-10-03 08:33:30'); -- -------------------------------------------------------- -- -- Table structure for table `potential_activities` -- CREATE TABLE `potential_activities` ( `pactivities_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `type` varchar(350) NOT NULL, `subject` varchar(222) NOT NULL, `all_day` varchar(250) NOT NULL, `ntype` varchar(350) NOT NULL, `due_date` date NOT NULL, `priority` varchar(222) NOT NULL, `owner` varchar(222) NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `host` varchar(250) NOT NULL, `participants` text NOT NULL, `related_to` varchar(250) NOT NULL, `call_type` varchar(250) NOT NULL, `lead` varchar(222) NOT NULL, `call_purpose` varchar(250) NOT NULL, `contact_name` varchar(250) NOT NULL, `call_details` varchar(250) NOT NULL, `call_timer` varchar(250) NOT NULL, `call_duration` varchar(250) NOT NULL, `call_result` varchar(350) NOT NULL, `status` varchar(350) NOT NULL, `description` varchar(500) NOT NULL, `activity` enum('OPEN','CLOSE') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE','CLOSE') NOT NULL, `created_at` date NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `potential_activities` -- INSERT INTO `potential_activities` (`pactivities_id`, `potential_id`, `type`, `subject`, `all_day`, `ntype`, `due_date`, `priority`, `owner`, `start_date`, `end_date`, `host`, `participants`, `related_to`, `call_type`, `lead`, `call_purpose`, `contact_name`, `call_details`, `call_timer`, `call_duration`, `call_result`, `status`, `description`, `activity`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 3, 'Task', 'project', '', '', '2018-03-15', 'Highest', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'CLOSE', '2018-03-23', '0000-00-00 00:00:00'), (2, 3, 'Task', 'Need bangalore sample database.', '', '', '2018-03-06', 'High', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'Not Started', '', 'OPEN', 'ACTIVE', '2018-03-23', '0000-00-00 00:00:00'), (3, 7, 'Task', 'shree tesyt', '', '', '2018-03-22', 'Normal', 'Tarun', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'CLOSE', 'CLOSE', '2018-03-26', '0000-00-00 00:00:00'), (4, 18, 'Task', 'jeeva test', '', '', '2018-03-26', 'High', 'Karan', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'In Progress', '', 'OPEN', 'ACTIVE', '2018-03-26', '0000-00-00 00:00:00'), (5, 21, 'Task', 'Jayblues SEO Audit', '', '', '2018-03-30', 'High', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'Deferred', '', 'CLOSE', 'CLOSE', '2018-03-27', '0000-00-00 00:00:00'), (6, 21, 'Task', 'test', '', '', '2018-03-14', 'Highest', 'Spandana', '0000-00-00', '0000-00-00', '', '', '', '', '', '', '', '', '', '', '', 'Completed', '', 'OPEN', 'ACTIVE', '2018-03-27', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `potential_attachments` -- CREATE TABLE `potential_attachments` ( `pattachment_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `type` varchar(350) NOT NULL, `link_url` varchar(500) NOT NULL, `attach_file` longblob NOT NULL, `activity` enum('FILE','URL') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` date NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `potential_attach_notes` -- CREATE TABLE `potential_attach_notes` ( `notes_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `potential_notes` text NOT NULL, `attach_file` text NOT NULL, `activity` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_by` int(11) NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `potential_attach_notes` -- INSERT INTO `potential_attach_notes` (`notes_id`, `potential_id`, `potential_notes`, `attach_file`, `activity`, `delete_status`, `created_by`, `created_at`, `updated_at`) VALUES (3, 41, 'Informed to contact on 10/1/2019', '', '', '', 36, '2019-01-04 13:50:39', '0000-00-00'), (4, 47, 'NS', '', '', '', 36, '2019-01-04 13:52:29', '0000-00-00'), (5, 47, 'NS', '', '', '', 36, '2019-01-04 16:53:33', '0000-00-00'), (6, 28, 'Contacted but he will be coming to office 8/1/2019', '', '', '', 36, '2019-01-07 10:38:33', '0000-00-00'), (7, 43, 'Executive to meet at 8/1/2019 at 12.00 PM informed to subbu sir', '', '', '', 36, '2019-01-07 14:15:58', '0000-00-00'), (8, 47, 'NS', '', '', '', 36, '2019-01-08 10:35:57', '0000-00-00'), (9, 47, 'NS', '', '', '', 36, '2019-01-08 10:37:53', '0000-00-00'), (10, 43, 'Informed to contact Executive on 10/1/2019 at 12.00PM', '', '', '', 36, '2019-01-08 11:16:21', '0000-00-00'), (11, 46, 'CF', '', '', '', 36, '2019-01-08 11:36:43', '0000-00-00'), (12, 21, 'CB after 2.00PM', '', '', '', 36, '2019-01-08 11:56:56', '0000-00-00'), (13, 22, 'NS', '', '', '', 36, '2019-01-08 11:58:09', '0000-00-00'), (14, 28, 'he is out of the station . client will CB ', '', '', '', 36, '2019-01-08 12:39:17', '0000-00-00'), (15, 46, 'NS', '', '', '', 36, '2019-01-09 12:52:53', '0000-00-00'), (16, 41, 'Informed subbu sir to call', '', '', '', 36, '2019-01-09 12:54:24', '0000-00-00'), (17, 37, 'Contacted him - not Required', '', '', '', 36, '2019-01-09 12:57:36', '0000-00-00'), (18, 41, 'Informed to CB in next month on Feb - 2019', '', '', '', 36, '2019-01-09 12:58:22', '0000-00-00'), (19, 43, 'Informed to contact Executive on 11/1/2019 at 12.00PM', '', '', '', 36, '2019-01-10 17:58:32', '0000-00-00'), (20, 46, 'NS', '', '', '', 36, '2019-01-10 18:00:02', '0000-00-00'), (21, 29, 'Informed to contact on 31/1/2019', '', '', '', 36, '2019-01-10 18:00:56', '0000-00-00'), (22, 62, 'Web proposal shared', '', '', 'ACTIVE', 36, '0000-00-00 00:00:00', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `potential_competitor` -- CREATE TABLE `potential_competitor` ( `competitor_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `competitor_name` text NOT NULL, `Website` varchar(250) NOT NULL, `Strengths` varchar(250) NOT NULL, `Weaknesses` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `potential_competitor` -- INSERT INTO `potential_competitor` (`competitor_id`, `potential_id`, `competitor_name`, `Website`, `Strengths`, `Weaknesses`, `delete_status`, `created_at`) VALUES (1, 21, 'Infosys', 'infosys.com', 'Experience', 'pricing', 'ACTIVE', '2018-03-27 00:00:00'), (2, 21, 'test', 'www.abc.com', 'test1', 'test123', 'ACTIVE', '2018-03-27 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `product_renewal` -- CREATE TABLE `product_renewal` ( `product_id` int(11) NOT NULL, `category` varchar(256) NOT NULL, `category_product` varchar(256) NOT NULL, `category_document` varchar(256) NOT NULL, `category_agreement` varchar(256) NOT NULL, `product_name` varchar(256) NOT NULL, `product_start_date` date NOT NULL, `purchase_bill` text NOT NULL, `product_des` text NOT NULL, `amc_status` varchar(256) NOT NULL, `amc_date` date NOT NULL, `notify_before_date` date NOT NULL, `product_image` text NOT NULL, `upload_document` text NOT NULL, `document_name` text NOT NULL, `document_upload` text NOT NULL, `document_desc` text NOT NULL, `doc_renewal_date` date NOT NULL, `agreement_name` varchar(256) NOT NULL, `agreement_upload` text NOT NULL, `agreement_desc` text NOT NULL, `agree_renewal_date` date NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `product_renewal` -- INSERT INTO `product_renewal` (`product_id`, `category`, `category_product`, `category_document`, `category_agreement`, `product_name`, `product_start_date`, `purchase_bill`, `product_des`, `amc_status`, `amc_date`, `notify_before_date`, `product_image`, `upload_document`, `document_name`, `document_upload`, `document_desc`, `doc_renewal_date`, `agreement_name`, `agreement_upload`, `agreement_desc`, `agree_renewal_date`, `delete_status`, `created_at`, `updated_at`) VALUES (4, 'insurance', 'Product', 'Document', 'Agrement', 'dsfsd', '2018-08-06', '1534234900Jellyfish.jpg', 'zxczc', 'on', '2018-08-22', '2018-08-21', '1534234900Koala.jpg', '1534234900Jellyfish.jpg', 'RECORD OF RIGHTS', '1534234900Jellyfish.jpg', 'sdfsd', '2018-08-28', 'sdfsdf', '1534234900Hydrangeas.jpg', 'sdfsd', '2018-08-28', 'INACTIVE', '2018-08-14 13:51:40', '0000-00-00'), (3, 'Choose...', 'Product', 'Document', 'Agrement', 'rtrtrt', '2018-01-25', '1534252693Hydrangeas.jpg', ' sdfsdf ', 'Yes', '2018-01-30', '2018-05-24', '1534252693Jellyfish.jpg', '1534252693Koala.jpg', 'RTC 2010', '1534234830Chrysanthemum - Copy.jpg', 'asdsa', '2018-09-04', 'sadsad', '1534234830Jellyfish.jpg', 'sadsad', '2018-08-29', 'ACTIVE', '2019-11-11 00:00:00', '0000-00-00'), (5, 'insurance', 'Product', '', '', 'dsfsd', '2018-08-07', '1534253286Jellyfish.jpg', 'sadas ', '', '2018-08-28', '2018-08-22', '1534253286Hydrangeas.jpg', '1534253286Desert.jpg', '', '', '', '1970-01-01', '', '', '', '1970-01-01', 'ACTIVE', '2018-08-14 00:00:00', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `quick_contact` -- CREATE TABLE `quick_contact` ( `contact_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `account_id` int(11) NOT NULL, `first_name` text NOT NULL, `last_name` text NOT NULL, `account_name` text NOT NULL, `email` varchar(350) NOT NULL, `phone` varchar(22) NOT NULL, `contact_roles` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `quotations` -- CREATE TABLE `quotations` ( `quotation_id` int(11) NOT NULL, `lead_id` int(11) NOT NULL, `quo_date` date NOT NULL, `potential_id` int(11) NOT NULL, `response_date` date NOT NULL, `probability` varchar(100) NOT NULL, `quotation_number` varchar(256) NOT NULL, `amount` varchar(555) NOT NULL, `comments` text NOT NULL, `description` text NOT NULL, `company` varchar(256) NOT NULL, `client_name` varchar(256) NOT NULL, `package_id` int(11) NOT NULL, `convert_status` varchar(111) NOT NULL, `gst` varchar(256) NOT NULL, `gst_amount` double NOT NULL, `sgst` varchar(256) NOT NULL, `sgst_amount` double NOT NULL, `igst` varchar(256) NOT NULL, `igst_amount` double NOT NULL, `sub_total` double NOT NULL, `quot_end_date` date NOT NULL, `generated_by` varchar(256) NOT NULL, `quotation_status` enum('WAITING','EXPIRED','CLOSED','REJECTED') NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `type` enum('Quotation') NOT NULL, `created_at` datetime NOT NULL, `address` text NOT NULL, `updated_at` datetime NOT NULL, `price` text NOT NULL, `tax_state` text NOT NULL, `tax_no_tax` text NOT NULL, `account_id` int(11) NOT NULL, `quatetion_from` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `quotations` -- INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (2, 0, '2018-07-30', 2, '0000-00-00', '', '1993', '23600', '100% of payment initially', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n SEO Application', '', 'Guruprasad', 0, 'APPROVED', '18%', 3600, '', 0, '', 0, 20000, '2018-08-14', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-07-30 13:12:53', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (3, 4, '2018-07-31', 0, '0000-00-00', '', '1954', '10000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Hemanth', 0, 'Waiting For Approval', '18%', 1525, '', 0, '', 0, 8475, '2018-08-15', 'Admin', 'EXPIRED', 'INACTIVE', 'Quotation', '2018-07-31 14:11:49', ' Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (4, 4, '2018-07-31', 0, '0000-00-00', '', '1991', '10000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Hemanth', 0, 'APPROVED', '18%', 1525, '', 0, '', 0, 8475, '2018-08-15', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-08 19:15:02', ' Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (5, 0, '2018-08-01', 4, '0000-00-00', '', '1992', '70800', '50% of payment initially and remaining after completion of project', 'Hospital waste management application with sticker printing department wise .\r\n\r\nseparate login will be provided for each department . \r\n\r\nadmin to control the departments login \r\n\r\n\r\n\r\n\r\n\r\nAMC \r\n\r\nAMC will be the rs 6000/- plus tax from 2 nd year in that 25 hours of development will be provided on existing functionalities ', '', 'JSS Hospital', 0, 'APPROVED', '9%', 10800, '', 0, '', 0, 60000, '2018-08-16', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-06 11:52:49', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (6, 5, '2018-08-03', 0, '0000-00-00', '', '1568', '49560', '50% of payment initially and remaining after completion of project', 'E commerce application with payment gateway and sms integration .', '', 'pradeep', 0, 'APPROVED', '18%', 7560, '', 0, '', 0, 42000, '2018-08-18', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-03 12:19:24', '413/1/1 ground floor second main Bangalore 7th cross LN puram bangalore 560021', '0000-00-00 00:00:00', '', '', '', 0, ''), (7, 6, '2018-08-03', 0, '0000-00-00', '', '1326', '413000', '40% of payment initially at start of the project 30 % after 45 days completion and remaining after completion of project. Total completion of project will be 60 to 90 working days . first modules will be completed by 30 days .', 'Erp Application which includes customer registration ,package creation payment reports,acess control , payment gateway , accounts handling , lead creation , potential module , marketing , feeds , invoice creation , payouts export ,separate login for each client .', '', 'Arvind', 0, 'APPROVED', '18%', 63000, '', 0, '', 0, 350000, '2018-08-18', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-03 13:49:42', 'Gandi bazzar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (8, 0, '2018-09-26', 6, '0000-00-00', '', '132667', '43660', '50% of payment initially and remaining after completion of project', 'Two new pages in purchase order for special case and approval functionality to ABP PORTAL\r\n\r\nHSN/SAC Code: 998314', '', 'Avinash', 0, 'APPROVED', '18%', 6660, '', 0, '', 0, 37000, '2018-08-22', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-09-26 17:02:06', 'Yaskawa India Pvt Ltd, \r\n#17/A, 2nd Main, Electronic City, Phase - I,\r\nHosur Road Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (9, 12, '2018-08-07', 0, '0000-00-00', '', '1994', '4720', '50% of payment initially and remaining after completion of project', ' \r\n Additional Requirements in website', '', 'Mohammed ', 0, 'APPROVED', '18%', 720, '', 0, '', 0, 4000, '2018-08-22', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-07 13:41:45', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala, Bengaluru Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (10, 0, '2018-08-07', 7, '0000-00-00', '', '0', '35400', '50% of payment initially and remaining after completion of project', 'Robotics Application in new as new application .', '', 'pradeep', 0, 'APPROVED', '18%', 5400, '', 0, '', 0, 30000, '2018-08-22', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-07 20:10:48', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (11, 9, '2018-08-08', 0, '0000-00-00', '', '1995', '17700', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n\r\n\r\n\r\nWebsite development charges along with hosting and domain.\r\n\r\n\r\nFrom 2nd year AMC charges will be 4000 + GST which include AMC,Hosting and domain \r\n of 5 hours of development', '', 'Raghuveer', 0, 'APPROVED', '18%', 2700, '', 0, '', 0, 15000, '2018-08-23', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-08 10:50:04', '#76 southend road opp to bharathi nursing home basavanagudi banglore Karnataka 560004', '0000-00-00 00:00:00', '', '', '', 0, ''), (12, 16, '2018-08-08', 0, '0000-00-00', '', '1996', '5310', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Mosin', 0, 'APPROVED', '18%', 810, '', 0, '', 0, 4500, '2018-08-23', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-08 14:31:06', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bengaluru karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (13, 21, '2018-08-09', 0, '0000-00-00', '', '1998', '30000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n Dynamic Website \r\n ', '', 'Avinash', 0, 'APPROVED', '18%', 4576, '', 0, '', 0, 25424, '2018-08-24', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-09 19:45:12', 'Kormangala Bengalore Karnataka 0Kormangala Bengalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (14, 21, '2018-08-09', 0, '0000-00-00', '', '1998', '30000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Avinash', 0, 'Waiting For Approval', '18%', 4576, '', 0, '', 0, 25424, '2018-08-24', 'Admin', 'WAITING', 'INACTIVE', 'Quotation', '2018-08-09 19:42:04', 'Kormangala Bengalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (15, 21, '2018-08-09', 0, '0000-00-00', '', '1998', '30000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Avinash', 0, 'Waiting For Approval', '18%', 4576, '', 0, '', 0, 25424, '2018-08-24', 'Admin', 'WAITING', 'INACTIVE', 'Quotation', '2018-08-09 19:42:11', 'Kormangala Bengalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (16, 21, '2018-08-09', 0, '0000-00-00', '', '1998', '30000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n ', '', 'Avinash', 0, 'Waiting For Approval', '18%', 4576, '', 0, '', 0, 25424, '2018-08-24', 'Admin', '', 'INACTIVE', 'Quotation', '2018-08-09 19:42:11', 'Kormangala Bengalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (17, 22, '2018-08-10', 0, '0000-00-00', '', '1999', '12000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n Dynamic Website \r\nfor dynamic website our packages include \r\n1)domian purchase\r\n2)email-id creation \r\n3)5 pages includes home page,about us,service,gallery,contact us\r\n4)one year of free maintainance \r\n \r\n \r\n \r\n ', '', 'Sunitha', 0, 'APPROVED', '18%', 1831, '', 0, '', 0, 10169, '2018-08-25', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-10 17:49:12', 'JP nagar 6th phase Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (18, 23, '2018-08-10', 0, '0000-00-00', '', '2000', '12000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n Dynamic Website \r\nfor dynamic website our packages include \r\n1)domian purchase\r\n2)email-id creation \r\n3)5 pages includes home page,about us,service,gallery,contact us\r\n4)one year of free maintainance', '', 'Musthafa', 0, 'APPROVED', '18%', 1831, '', 0, '', 0, 10169, '2018-08-25', 'Admin', '', 'INACTIVE', 'Quotation', '2018-08-10 17:42:30', 'wills town Bangalore Karnataka 0wills town Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (19, 23, '2018-08-11', 0, '0000-00-00', '', '2000', '12000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n\r\n \r\n Dynamic Website \r\n\r\n\r\nFor dynamic website our packages include:\r\n\r\n1)domian purchase\r\n2)email-id creation \r\n3)5 pages includes home page,about us,service,gallery,contact us\r\n4)one year of free maintainance', '', 'Musthafa', 0, 'APPROVED', '18%', 1831, '', 0, '', 0, 10169, '2018-08-26', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-11 11:11:58', 'wills town Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (20, 0, '2018-08-11', 8, '0000-00-00', '', '2001', '9440', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n New Requirements \r\n Four new subdomain includes:\r\n1)Four new design and development.\r\n2)increase of server bandwidth', '', 'Abhishek', 0, 'APPROVED', '18%', 1440, '', 0, '', 0, 8000, '2018-08-26', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-11 11:53:20', '31/ 313A, 2nd floor, Anugraha above bank of India, 4th block, 3rd stage, siddaiah Puranik Road, Basaveshwarnagar, Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (21, 12, '2018-08-14', 0, '0000-00-00', '', '123987', '23600', '50% of payment initially and remaining after completion of project', 'website demo', '', 'Mohammed ', 0, 'APPROVED', '18%', 3600, '', 0, '', 0, 20000, '2018-08-29', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-14 14:27:00', '6/10, 1st Main, 4th Cross, Maruthi Nagar, Near Amaravathi Hotel, Madiwala, Bengaluru Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (22, 27, '2018-08-14', 0, '0000-00-00', '', '2002', '7000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n \r\n Static website', '', 'Vignesh', 0, 'APPROVED', '18%', 1068, '', 0, '', 0, 5932, '2018-08-29', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-14 17:49:09', 'Kormangala Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (23, 0, '2018-08-17', 10, '0000-00-00', '', '123232', '25370', '100% of payment initially it is a renewal charges.', 'Server Renewal for Swan Silk (6 months duration )', '', 'swan silk', 0, 'APPROVED', '18%', 3870, '', 0, '', 0, 21500, '2018-09-01', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-23 11:28:29', 'Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (24, 0, '2018-08-17', 3, '0000-00-00', '', '2003', '25960', '50% of payment initially and remaining after completion of project', 'Application with multiple login controlled by admin dash board . which includes sticker printing report generation department wise on specific date interval . complete software will be installed in JSS Hospital server and maintaining responsibility will on jayblues . From second year AMC will be 10000/- plus GST .', '', 'Sadanand', 0, 'APPROVED', '18%', 3960, '', 0, '', 0, 22000, '2018-09-01', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-17 15:21:55', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (25, 30, '2018-08-17', 0, '0000-00-00', '', '2004', '250000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n 1) E commerce application - 80,000\r\n\r\n 2) SEO include Facebook,google,PPC,organic SEO,submission per month - 20,000\r\n\r\n 3) separate Mobile application - 1,50,000\r\n ', '', 'Deepak', 0, 'APPROVED', '18%', 38136, '', 0, '', 0, 211864, '2018-09-01', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-17 19:39:45', ' Tamil nadu 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (26, 0, '2018-08-20', 11, '0000-00-00', '', '2005', '295000', '50% of payment initially and remaining after completion of project', 'As per discussing with all the departments the changes require one month of time and same will be billed .\r\n\r\n', '', 'General Manager', 0, 'APPROVED', '18%', 45000, '', 0, '', 0, 250000, '2018-09-04', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-29 12:26:21', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (28, 32, '2018-08-22', 0, '0000-00-00', '', '2006', '8000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n \r\n \r\n \r\n \r\n \r\n Static Website\r\n\r\nwhich include:\r\n1) Website - 5000\r\n2) Domain - 1500\r\n3) Email-ID - 1500', '', 'Ragavendra', 0, 'APPROVED', '18%', 1220, '', 0, '', 0, 6780, '2018-09-06', 'Shri priya ', 'CLOSED', 'INACTIVE', 'Quotation', '2018-08-22 11:07:06', 'Willson garden police station Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (29, 0, '2018-08-22', 10, '0000-00-00', '', '2007', '25370', '100% of payment initially it is a renewal charges.', 'Server Renewal for 6 months for Deco textile Application .', '', 'Deco-textile', 0, 'APPROVED', '18%', 3870, '', 0, '', 0, 21500, '2018-09-06', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-23 11:26:31', 'Deco-Textile PVT LTD Swan House Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (30, 33, '2018-08-22', 0, '0000-00-00', '', '2008', '8000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n Static website\r\nWhich include:\r\n1) Website design - 5000\r\n2) Domain - 1500\r\n3) Email Id - 1500', '', 'Jyothi', 0, 'APPROVED', '18%', 1220, '', 0, '', 0, 6780, '2018-09-06', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-22 13:27:52', 'Jaynagar Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (31, 34, '2018-08-23', 0, '0000-00-00', '', '2009', '12000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n Dynamic website\r\n\r\nWhich Include\r\n1) Basic 5 pages \r\n2) Domain\r\n3) Email Id Creation\r\n4)1 Year of Free Maintenance service\r\n5) Minor changes support ', '', 'Joshi', 0, 'APPROVED', '18%', 1831, '', 0, '', 0, 10169, '2018-09-07', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-23 19:36:23', ' Maharastra 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (32, 35, '2018-08-25', 0, '0000-00-00', '', '2011', '7000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n Static Website\r\n\r\nWhich include:\r\n\r\n1) Domain purchased\r\n2) content writting\r\n3) 1 year free maintenance service ', '', 'Veena', 0, 'APPROVED', '18%', 1068, '', 0, '', 0, 5932, '2018-09-09', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-25 11:17:11', 'No.6/3, 4th Cross,nala road, 2nd floor, Lalbagh road,K.S garden Bangalore karnataka 27', '0000-00-00 00:00:00', '', '', '', 0, ''), (33, 35, '2018-08-25', 0, '0000-00-00', '', '2012', '12000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n Dynamic Website\r\n\r\nWhich Include:\r\n1) Domain Purchase\r\n2) Email Id creation\r\n3) Website Design of 5 pages(additional pages as per your requirements)\r\n4) 1 Year free hosting maintenance\r\n5) content writting ', '', 'Veena', 0, 'APPROVED', '18%', 1831, '', 0, '', 0, 10169, '2018-09-09', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-25 11:20:33', 'No.6/3, 4th Cross,nala road, 2nd floor, Lalbagh road,K.S garden Bangalore karnataka 27', '0000-00-00 00:00:00', '', '', '', 0, ''), (34, 37, '2018-08-28', 0, '0000-00-00', '', '2013', '7000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n\r\n\r\n\r\n \r\n\r\n Static website\r\nwhich include:\r\n1) Domain purchase\r\n2) content writting\r\n3) 1 year of free service maintaince', '', 'Nagaraj', 0, 'APPROVED', '18%', 1068, '', 0, '', 0, 5932, '2018-09-12', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-28 13:14:36', 'Kengari Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (36, 0, '2018-08-29', 3, '0000-00-00', '', '', '', '50% of payment initially and remaining after completion of project', 'Auditorium Booking Application with multiple login and Approval and confirmation module along with reports .', '', 'sadanand', 0, 'Waiting For Approval', '18%', 0, '', 0, '', 0, 0, '2018-09-13', 'Admin', 'WAITING', 'INACTIVE', 'Quotation', '2018-08-29 14:32:26', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (37, 0, '2018-08-29', 3, '0000-00-00', '', '2014', '64900', '50% of payment initially and remaining after completion of project', 'Auditorium Booking Application with multiple login and Approval and confirmation module along with reports .Multiple auditoriums can be set .', '', 'Sadanand', 0, 'APPROVED', '18%', 9900, '', 0, '', 0, 55000, '2018-09-13', 'Admin', 'CLOSED', 'ACTIVE', 'Quotation', '2018-08-29 14:34:30', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (38, 38, '2018-08-29', 0, '0000-00-00', '', '2015', '14160', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n static website \r\ninclude:\r\n1) 8 to 10 pages\r\n2) 2 Email - Id of 500 MB each \r\n3) 1 year of free maintenance service(changes 6 times and small correction included)', '', 'Amith', 0, 'APPROVED', '18%', 2160, '', 0, '', 0, 12000, '2018-09-13', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-08-29 14:48:44', 'Hebbal Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (44, 39, '2018-08-31', 0, '0000-00-00', '', '2016', '7000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n Static Website\r\n\r\nWhich include:\r\n1)Domain Purchase\r\n2)Content writting\r\n3)1 year Free hosting service', '', 'Javeet', 0, 'APPROVED', '', 0, '', 0, '', 0, 7000, '2018-09-15', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-08-31 17:49:14', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (45, 39, '2018-08-31', 0, '0000-00-00', '', '2017', '12000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n\r\n \r\n Dynamic Website\r\nwhich include:\r\n\r\n1)Domain \r\n2)E mail Id creation\r\n3)Content wriiting\r\n4)1 year free hosting service', '', 'Javeet', 0, 'APPROVED', '', 0, '', 0, '', 0, 12000, '2018-09-15', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-08-31 17:54:23', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (46, 40, '2018-09-01', 0, '0000-00-00', '', '2018', '2500', '', ' \r\n\r\n\r\n Changes for existing requirement', '', 'Pramod', 0, 'APPROVED', '', 0, '', 0, '', 0, 2500, '2018-09-16', 'Shri priya ', 'CLOSED', 'ACTIVE', 'Quotation', '2018-09-01 10:02:33', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (47, 41, '2018-09-03', 0, '0000-00-00', '', '2019', '18000', '50% of payment initially and remaining after completion of project', '\r\n\r\nStatic website up to pages\r\n5 Logo Design\r\nBrochure\r\n', '', 'Anil', 0, 'APPROVED', '', 0, '', 0, '', 0, 18000, '2018-09-18', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-03 10:21:22', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (48, 42, '2018-09-03', 0, '0000-00-00', '', '2020', '7000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n\r\n Static Website\r\n\r\nwhich include:\r\n1)5 basic pages(home,about us,service,gallery,contact us)\r\n2)Domain will be purchased\r\n3)Content writting\r\n4)1 Year of free hosting services', '', 'Reddy', 0, 'APPROVED', '', 0, '', 0, '', 0, 7000, '2018-09-18', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-03 16:04:41', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (49, 42, '2018-09-03', 0, '0000-00-00', '', '2021', '12000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n\r\n Dynamic website\r\nwhich include:\r\n1)5 pages(Home,about us,service,gallery,contact us)\r\n2)Domain will be purchased.\r\n3)Email Id Creation of 2 with 500 MB\r\n4)content writting\r\n5)1 Year free hosting service.', '', 'Reddy', 0, 'APPROVED', '', 0, '', 0, '', 0, 12000, '2018-09-18', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-03 16:08:58', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (50, 45, '2018-09-20', 0, '0000-00-00', '', '2022', '20000', '50% of payment initially and remaining after completion of project', ' \r\n \r\n Dynamic Website of 15 pages', '', 'Anand', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 20000, '2018-10-05', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-20 13:18:42', ' Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (51, 58, '2018-09-20', 0, '0000-00-00', '', '2024', '196000', '50% of payment initially and remaining after completion of project', '\r\n E-commerce website', '', 'krishna kumar', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 196000, '2018-10-05', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-20 18:45:57', 'Dubai UAE 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (52, 59, '2018-09-21', 0, '0000-00-00', '', '2025', '25000', '5000 extra for google add words', '1)Detailed Competitor Analysis\r\n2)Keyword Analysis\r\n3)Target 25 Relevant Keywords\r\n4)On - site SEO optimisation*\r\n5)Successful Link Building\r\n6)Monthly Ranking Report\r\n7)Audit upto 100 Keywords\r\n8)Regular Development support\r\n9)Web Blog posts\r\n10)Flexible contract\r\n11)No Account Manager\r\n12)No social Media Posting\r\n13)Social Book marking\r\n14)Location Base Keywords\r\n15)content writing for Entire website\r\n', '', 'Rajesh', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 25000, '2018-10-06', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-21 18:18:12', ' Bangaolre Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (53, 47, '2018-09-25', 0, '0000-00-00', '', '2026', '25000', '50% of payment initially and remaining after completion of project', '\r\n\r\n E- commerce Application', '', 'Manikanta', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 25000, '2018-10-10', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-25 18:31:12', 'saraswati puram Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (54, 47, '2018-09-25', 0, '0000-00-00', '', '2027', '15000', '50% of payment initially and remaining after completion of project', ' \r\n\r\n Check Book Printing', '', 'Manikanta', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 15000, '2018-10-10', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-25 18:31:53', 'saraswati puram Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (55, 0, '2018-09-25', 17, '0000-00-00', '', '2028', '200000', '50% of payment initially and remaining after completion of project', 'ERP enhancement for admin module and user logins\r\nDuration: 2 months', '', 'Manjunath', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 200000, '2018-10-10', 'Subramanya', 'EXPIRED', 'INACTIVE', 'Quotation', '2018-09-25 19:06:17', 'Chikmagalur', '0000-00-00 00:00:00', '', '', '', 0, ''), (56, 70, '2018-09-29', 0, '0000-00-00', '', '2029', '279500', '50% of payment initially and remaining after completion of project', 'Logo @ Rs. 5000/-\r\nSSL certificate @ Rs. 4500/-\r\nWeb and Mobile Applications @ 270000/-', '', 'Avinash', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 279500, '2018-10-14', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-09-29 17:32:24', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (57, 71, '2018-10-01', 0, '0000-00-00', '', '2030', '4500', '50% of payment initially and remaining after completion of project', ' \r\n\r\n SSL Certificate', '', 'Gururaj', 0, 'Waiting For Approval', '', 0, '', 0, '', 0, 4500, '2018-10-16', 'Shri priya ', '', 'ACTIVE', 'Quotation', '2018-10-01 11:18:31', 'Kuvempu nagar Mysore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (61, 85, '2018-10-05', 0, '0000-00-00', '', '2031', '21240', '50% of payment initially and remaining after completion of project', 'Dynamic Website Development(Redesigning)', '', 'Naveen', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2018-10-20', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-05 18:33:05', 'CHRP-INDIA Pvt. Ltd. 19th Main Rd, HAL 2nd Stage, Kodihalli, Bangalore Karnataka 560037', '0000-00-00 00:00:00', '', '', '', 0, ''), (62, 86, '2018-10-09', 0, '0000-00-00', '', '2032', '68440', 'Template optional - RS.7080', '1)CMS Website Hosting = RS.29500\r\nResponsive CMS Website Design & Development\r\nMaterial UI Design \r\nWebsite Optimization \r\nabove are included.\r\n2)Blog = Rs.5900\r\n3)eCommerce Functionality without Payment Gateway = Rs.23600\r\n4)AI Chatbot =Rs.9440.\r\n', '', 'Sunil', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 68440, '2018-10-24', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-09 12:36:26', 'Hebbal Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (63, 90, '2018-10-09', 0, '0000-00-00', '', '2033', '8260', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n Static Website \r\nwhich include:\r\n1)Domain \r\n2)1 year free hosting service.\r\n3)content writing.\r\n', '', 'kiran', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2018-10-24', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-09 15:32:01', 'Banshankari Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (64, 90, '2018-10-09', 0, '0000-00-00', '', '2034', '10620', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n Dynamic website\r\nwhich include\r\n1)Domain\r\n2)1 year of free hosting Service.\r\n3)E- mail Id creation of 2 with 500 MB each\r\n4)content Writing.', '', 'kiran', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2018-10-24', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-09 15:37:11', 'Banshankari Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (65, 92, '2018-10-10', 0, '0000-00-00', '', '2035', '110000', '50% of payment initially and remaining after completion of project', 'Website development in custom environment', '', 'Sudip', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 110000, '2018-10-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-10 19:22:34', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (66, 96, '2018-10-11', 0, '0000-00-00', '', '2036', '14000', 'Logo optional = Rs.3000', '\r\n Dynamic Website\r\nwhich include:\r\n1)6 pages of website.\r\n2)Domain.\r\n3)1 year free hosting service.\r\n4)Content writing.\r\n', '', 'Nabeel', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 14000, '2018-10-26', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-11 16:16:46', 'New Bel Road Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (67, 98, '2018-10-11', 0, '0000-00-00', '', '2037', '102000', '50% of payment initially and remaining after completion of project', 'Job portal application with website', '', 'Ramesh', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 102000, '2018-10-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-11 19:43:46', '59/60, 1st floor, above Karnataka Bank, 4th cross, Gubbalala main road, Vinayakanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (68, 107, '2018-10-13', 0, '0000-00-00', '', '2038', '15000', '50% of payment initially and remaining after completion of project', ' Dynamic website\r\n\r\nwhich include\r\n1)5 pages of website\r\n2)Domain\r\n3)1 year free hosting service\r\n4)content writing\r\n5) Email Ids of 5 ', '', 'Arjun', 0, 'Waiting For Approval', '9%', 1239, '9%', 0, '18%', 0, 13761, '2018-10-28', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2018-10-13 12:29:52', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (69, 107, '2018-10-13', 0, '0000-00-00', '', '2038', '15000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Dynamic Website\r\nwhich include\r\n1)5 pages of website\r\n2)Domain\r\n3)1 year free hosting service\r\n4)content writing\r\n5) Email Ids of 5 ', '', 'Arjun', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2018-10-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-13 12:32:02', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (70, 108, '2018-10-13', 0, '0000-00-00', '', '2039', '250000', '50% of payment initially and remaining after completion of project', 'Web application development\r\nPer month price\r\nDuration:2 months', '', 'Vinay', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 250000, '2018-10-28', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-13 17:10:24', 'Malleshwaram Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (71, 114, '2018-10-16', 0, '0000-00-00', '', '2040', '11800', '50% of payment initially and remaining after completion of project', ' \r\n\r\n Static Website\r\nwhich include\r\n1)5 pages of website\r\n2)Domain\r\n3)1 year free hosting service.\r\n4)Content Writing.', '', 'Uttam', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2018-10-31', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-16 12:50:01', 'Banshakari Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (72, 115, '2018-10-17', 0, '0000-00-00', '', '2041', '11210', '50% of payment initially and remaining after completion of project', ' \r\n\r\n1)Kannada Logo - Rs.2500\r\n\r\n2)Letterhead\r\n Envelop\r\n Visiting card 2 Desgins - Rs.7000\r\n Menu card 4 pages\r\n Leaflet - 1 pages\r\n\r\n', '', 'Rajanna', 0, 'Waiting For Approval', '9%', 855, '9%', 855, '18%', 0, 9500, '2018-11-01', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-17 16:09:03', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (73, 116, '2018-10-22', 0, '0000-00-00', '', '2042', '23600', '50% of payment initially and remaining after completion of project', '\r\n\r\nConfigure a product of e- commerce \r\n\r\nfor 4 e-commerce which include(Amazon, flip kart, Snap deal, Paytm)', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2018-11-06', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-22 16:14:29', 'Sarjapur road bellandur gate Bangalore Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (74, 117, '2018-10-23', 0, '0000-00-00', '', '2043', '11800', '50% of payment initially and remaining after completion of project', '\r\nYour website domain “smilestudioindia.com\" is up for renewal.\r\n\r\n1) For 2017 - 2018 = Rs. 5000\r\n2) For 2018 - 2019 = RS. 5000', '', 'Dr Madhusudhan', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2018-11-07', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-23 11:47:08', '#74, M.M. Road, Frazer Town, Bangalore Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (75, 122, '2018-10-24', 0, '0000-00-00', '', '2044', '165200', '50% of payment initially and remaining after completion of project', '\r\n\r\nHotel market place Which have three login user, vendor and admin. Along with dashboard and Payment gate way for vendors renewal.', '', 'Sunil', 0, 'Waiting For Approval', '9%', 12600, '9%', 12600, '18%', 0, 140000, '2018-11-08', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-24 18:32:41', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (76, 123, '2018-10-26', 0, '0000-00-00', '', '2045', '8000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Static Website \r\n\r\nwhich include:\r\n1)Domain\r\n2)1 Year free hosting service.\r\n3)content writing', '', 'Vinay', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2018-11-10', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-26 13:27:44', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (77, 124, '2018-10-26', 0, '0000-00-00', '', '2046', '42480', '50% of payment initially and remaining after completion of project', '1) Domain and Hosting - Rs.4000\r\n\r\n2) Website Development - Rs.26000\r\n\r\n3) Add words configuration(1 time changes) - Rs.6000', '', 'Dinesh', 0, 'Waiting For Approval', '9%', 3240, '9%', 3240, '18%', 0, 36000, '2018-11-10', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2018-10-26 14:16:10', 'Hebbal Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (78, 124, '2018-10-27', 0, '0000-00-00', '', '2046', '38232', '50% of payment initially and remaining after completion of project', '1) Domain and Hosting - Rs.4000\r\n\r\n2) Website Development - Rs.26000\r\n\r\n3) Add words configuration(1 time changes) - Rs.6000\r\n\r\n \r\n 10% Discount in Total Amount', '', 'Dinesh', 0, 'Waiting For Approval', '9%', 2916, '9%', 2916, '18%', 0, 32400, '2018-11-11', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-27 16:53:00', 'Hebbal Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (79, 128, '2018-10-29', 0, '0000-00-00', '', '2047', '1770', 'GSTIN: 29AABCZ1663J1ZY', ' \r\n\r\n\r\n\r\n Addition Requirements in website', '', 'Zepnur', 0, 'Waiting For Approval', '9%', 135, '9%', 135, '18%', 0, 1500, '2018-11-13', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-30 16:07:53', 'Level 8, Tower 1, Umiya Business Bay, Cessna Business Park, Kadubeesanahalli, Marathahalli, Bangalore, Bengaluru (Bangalore) Urban, Karnataka, 560103 \r\n', '0000-00-00 00:00:00', '', '', '', 0, ''), (80, 0, '2018-10-30', 17, '0000-00-00', '', '2048', '489000', '100% of payment initially and remaining after completion of project\r\nTaxes extra @ 18%', 'DELL T430 server @ Rs. 3,09,000/-\r\n\r\nInstallation @ Rs. 12,000/-\r\n\r\nEnhancements to existing application @ Rs. 1,60,000/-\r\n\r\nDELL 19.5\" Monitor @ Rs. 6,500/-\r\n\r\nDELL Keyboard & Mouse @ Rs. 1,500/-', '', 'Manjunath', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 489000, '2018-11-14', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-10-30 19:16:02', 'Chikmagalur', '0000-00-00 00:00:00', '', '', '', 0, ''), (81, 118, '2018-11-05', 0, '0000-00-00', '', '2049', '60000', '50% of payment initially and remaining after completion of project\r\nDelivery Date: 30-11-2018', 'E Commerce website \r\nCustomised cake order portal\r\nPayment Gateway', '', '', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 60000, '2018-11-20', 'Admin', 'WAITING', 'INACTIVE', 'Quotation', '2018-11-05 14:29:02', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (82, 144, '2018-11-05', 0, '0000-00-00', '', '2049', '50000', '50% of payment initially and remaining after completion of project\r\nDelivery by: 30-11-2018', 'E-Commerce Application\r\nCustomised cake booking portal\r\nPayment gateway integration\r\nSSL encryption\r\nAMC for 1 year\r\n\r\n\r\nAdvance Rs. 20000/- collected', '', 'Prajwal', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 50000, '2018-11-20', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-05 14:38:52', 'Jayanagar Bangalore Karnataka 560075', '0000-00-00 00:00:00', '', '', '', 0, ''), (83, 153, '2018-11-14', 0, '0000-00-00', '', '2050', '12980', '50% of payment initially and remaining after completion of project', 'Static website development(5 Pages)- Rs. 9000\r\n\r\nHTML pages for application- Rs. 2000 per page', '', 'Rudolfus ', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2018-11-29', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-14 10:43:17', 'M G road Banglaore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (84, 155, '2018-11-15', 0, '0000-00-00', '', '2051', '5900', '', '\r\n\r\n\r\n \r\n New Changes in work order and purchase order for GSS application ', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2018-11-30', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-15 12:05:07', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Mysore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (85, 115, '2018-11-16', 0, '0000-00-00', '', '2052', '67500', '50% of payment initially and remaining after completion of project', 'ByChance website @ Rs. 15000/-\r\nWoodfire website @ Rs. 12000/-\r\nBychance English & kannada logo @ Rs. 10500/-\r\nWoodfire logo @ Rs. 3000/-\r\nStationary designs @ Rs. 7000/-\r\n2 domains and hosting @ Rs. 8000/-\r\nEmail id @ Rs. 4000/-\r\nIntegration of API @ Rs. 8000/-\r\n', '', 'Rajanna', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 67500, '2018-12-01', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-16 18:57:58', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (86, 0, '2018-11-19', 4, '0000-00-00', '', '2053', '1253160', '50% of payment initially and remaining after completion of project', 'Web application & Mobile applications for service booking', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 95580, '9%', 95580, '18%', 0, 1062000, '2018-12-04', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-19 19:30:50', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (87, 170, '2018-11-21', 0, '0000-00-00', '', '2054', '3540', '', '\r\n\r\n\r\n \r\n SSL Certificate', '', 'Indian Society of Professional Social Works', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2018-12-06', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-21 14:12:46', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (88, 166, '2018-11-22', 0, '0000-00-00', '', '2055', '13570', '50% of payment initially and remaining after completion of project', '\r\n\r\n Dynamic website\r\n\r\nwhich include:\r\n1) website - 5 pages\r\n2) Domain purchase\r\n3) 1 Year free hosting service.\r\n4) content Writing\r\n5) E- mail IDs of 6 - 100 MB Each', '', 'Praveen kumar', 0, 'Waiting For Approval', '9%', 1035, '9%', 1035, '18%', 0, 11500, '2018-12-07', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-22 11:36:08', 'Whitefield Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (89, 171, '2018-11-22', 0, '0000-00-00', '', '2056', '56640', '50% of payment initially and remaining after completion of project', 'Custom Website', '', 'Shashank', 0, 'Waiting For Approval', '9%', 4320, '9%', 4320, '18%', 0, 48000, '2018-12-07', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-22 15:53:11', '#1073, 15th cross, 30th main, Banashankari 3rd stage, Bangalore Bangalore karnataka 560070', '0000-00-00 00:00:00', '', '', '', 0, ''), (90, 175, '2018-11-26', 0, '0000-00-00', '', '2057', '21240', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\nStatic Website - 15000.\r\n\r\nDomain & hosting - 3000.', '', 'Pramodh', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2018-12-11', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-26 11:39:21', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (91, 180, '2018-11-30', 0, '0000-00-00', '', '2058', '212400', '50% of payment initially and remaining after completion of project', 'Custom CMS website @ 180000\r\n\r\nAPI integration @ 35000\r\n\r\nE commerce integration @ 80000', '', 'Lokesh Kumar ', 0, 'Waiting For Approval', '9%', 16200, '9%', 16200, '18%', 0, 180000, '2018-12-15', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-11-30 12:57:06', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (92, 0, '2018-12-04', 30, '0000-00-00', '', '2059', '35400', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\nAdditional requirements for application- \r\n1. Form generator with backend table and export functionality\r\n2. SMS and email notification functionality\r\n', '', 'Pankaj', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2018-12-19', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-04 10:49:06', 'NO-6,2nd floor,100 feet Road\r\nBTM layout 2nd stage, near udupi garden signal above Oriental Bank Of Commerce Bangalore-560 076.', '0000-00-00 00:00:00', '', '', '', 0, ''), (93, 275, '2018-12-05', 0, '0000-00-00', '', '2060', '17700', '50% of payment initially and remaining after completion of project', '\r\nDynamic Website - Editable and Update able.\r\n\r\n1) Web Pages - 5 to 7 Pages.\r\n2) Domain Purchase.\r\n3) 1 Year free Hosting Service.\r\n4) Email Id - 15 of 10 GB(upgraded).\r\n5) Drop down menu - 12.', '', 'Ashwini', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2018-12-20', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-05 18:24:28', 'Shivajinagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (94, 338, '2018-12-08', 0, '0000-00-00', '', '2061', '7000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n\r\n Static website.\r\n\r\nwhich include:\r\n\r\n1)Domain.\r\n2)Hosting.\r\n3)1 Email ID of 50MB.', '', 'Srikanth', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 7000, '2018-12-23', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-08 13:06:44', 'Bommanhali Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (95, 344, '2018-12-10', 0, '0000-00-00', '', '2062', '7000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n1) Static Website - 2 home stay web page\r\n\r\n2) SEO Friendly Responsive Website \r\n', '', 'Sherry', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 7000, '2018-12-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-10 09:38:12', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (96, 359, '2018-12-10', 0, '0000-00-00', '', '2063', '29500', '50% of payment initially and remaining after completion of project', 'Static website\r\n\r\n1) Web pages - 20 = 25,000+ GST\r\n\r\n2)additional Requirements of the pages = per page - 1500.\r\n\r\n\r\n\r\n\r\n\r\n ', '', 'Panduranaga', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2018-12-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-10 12:42:52', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (97, 359, '2018-12-10', 0, '0000-00-00', '', '2064', '35400', '50% of payment initially and remaining after completion of project', '\r\n\r\nDynamic Website\r\n\r\n1) web pages - 30', '', 'Panduranaga', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2018-12-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-10 12:44:09', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (98, 373, '2018-12-10', 0, '0000-00-00', '', '2065', '8260', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n Dynamic Website\r\n\r\nWeb pages - 5', '', 'Ritesh', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2018-12-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-10 18:17:53', 'Btm Layout Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (99, 310, '2018-12-11', 0, '0000-00-00', '', '2066', '4400', '50% of payment initially and remaining after completion of project', 'a)Logo development - 3,000\r\n\r\nb)Visiting Card Designing – front & Back - 400.\r\n\r\nc)Brochure Designing – 2 Page - 1000\r\n\r\n\r\n ', '', 'Rao', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 4400, '2018-12-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-12 12:57:08', 'Nagarbavi Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (100, 403, '2018-12-13', 0, '0000-00-00', '', '2067', '18998', '50% of payment initially and remaining after completion of project', '\r\n\r\n1) Visiting card: 600\r\n\r\n2)Letterhead and envelope: 500\r\n\r\n3)Invoice, quotation and receipts generator: 15,000\r\n', '', 'Arjun', 0, 'Waiting For Approval', '9%', 1449, '9%', 1449, '18%', 0, 16100, '2018-12-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-13 10:07:12', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (101, 405, '2018-12-13', 0, '0000-00-00', '', '2068', '17700', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n\r\n Tracking attendance and Salary Slip', '', 'Palani', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2018-12-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-13 16:12:42', 'Domlur Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (102, 405, '2018-12-13', 0, '0000-00-00', '', '2069', '295000', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n\r\n E - commerce website with Android and IOS Application', '', 'Palani', 0, 'Waiting For Approval', '9%', 22500, '9%', 22500, '18%', 0, 250000, '2018-12-28', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2018-12-13 16:13:58', 'Domlur Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (103, 419, '2018-12-13', 0, '0000-00-00', '', '2070', '7000', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n Static Website:\r\nwhich include:\r\n1)web pages - 5.\r\n2)Domain.\r\n3)Hosting.\r\n4)Content writing\r\n', '', 'Kumar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 7000, '2018-12-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-13 16:52:48', 'Bommasandra Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (104, 0, '2018-12-13', 42, '0000-00-00', '', '2071', '10000', '50% of payment initially and remaining after completion of project', ' Dynamic Website\r\nwhich include:\r\n1)Web pages - 5.\r\n2)Hosting.\r\n3)Content writing.\r\n\r\nNote: Editable and update able.\r\n Admin User Id and Password will be shared to client.\r\n Minor support will be provided for the changes in website.\r\n\r\n', '', 'Rao', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 10000, '2018-12-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-13 17:09:57', 'Nagarbhavi Bangalore karnataka\r\n ', '0000-00-00 00:00:00', '', '', '', 0, ''), (105, 0, '2018-12-17', 50, '0000-00-00', '', '2072', '11000', ' 1) Editable and update able.\r\n 2) Admin User Id and Password will be shared to client.\r\n 3) Minor support will be provided for the changes in website.\r\n', ' \r\n\r\n Dynamic Website\r\n\r\nwhich include:\r\n1)Web pages - 5 (home, about us, service, gallery, contact us)\r\n2)Domain.\r\n3)1 year free Hosting service.\r\n4)Content writing.\r\n\r\n\r\n', '', 'Narayana', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 11000, '2019-01-01', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-17 13:30:48', 'GiriNagar Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (106, 0, '2018-12-17', 51, '0000-00-00', '', '2073', '11800', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n\r\n1000 products data entry to mhoney.in', '', 'Satish', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-01-01', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2018-12-17 13:57:36', 'Royal corner. 1st floor, door 1,2 flat no 103, lalbagh road,Bangalore - 560027 karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (107, 0, '2018-12-17', 51, '0000-00-00', '', '2073', '11800', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n\r\n 1000 products data entry to mhoney.in', '', 'Satish', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-01-01', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-17 13:57:49', 'Royal corner. 1st floor, door 1,2 flat no 103, lalbagh road,Bangalore - 560027 karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (108, 0, '2018-12-17', 49, '0000-00-00', '', '2074', '21240', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n Changes in the Existing Website', '', 'Chidanand', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-01-01', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-17 14:22:53', 'Mysore karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (109, 472, '2018-12-17', 0, '0000-00-00', '', '2075', '8000', 'Android App - Rs.55,000', ' Static Website\r\n\r\nwhich include:\r\n1)Domain.\r\n2)Hosting.\r\n3)Content writing.\r\n4)Email of of 2 with 50 MB each\r\n\r\n', '', 'Peter', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-01-01', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-17 18:32:02', 'Sarjapur Road Banaglore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (110, 0, '2018-12-18', 48, '0000-00-00', '', '2076', '28320', '50% of payment initially and remaining after completion of project', '\r\n\r\n Wordpress template: Rs.6000\r\n\r\n Dynamic Website development: Rs.15000\r\n\r\n Domain and Hosting: Rs.3000\r\n', '', 'Kshitij Mehra', 0, 'Waiting For Approval', '9%', 2160, '9%', 2160, '18%', 0, 24000, '2019-01-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-18 10:17:13', 'Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (111, 494, '2018-12-18', 0, '0000-00-00', '', '2077', '5900', '\r\n\r\n', '\r\n\r\n\r\n\r\n \"Adwords configuration\"', '', 'jyestaconstructions', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2019-01-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-18 13:05:24', '#6253, Vijayanagar 4th Stage, 2nd Phase, Mysore 570017 Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (112, 508, '2018-12-19', 0, '0000-00-00', '', '2078', '8000', '50% of payment initially and remaining after completion of project', '\r\n Static Website\r\nwhich includes:\r\n1)web pages - 4\r\n2)Domain.\r\n3)Hosting.\r\n4)Basic Content writing.\r\n5)Email Id of 1 with 50 MB.\r\n6)Social media Integration(facebook,twitter).', '', 'Christina', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-01-03', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-19 18:18:15', 'Kammanahalli Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (113, 478, '2018-12-21', 0, '0000-00-00', '', '2079', '94400', '50% of payment initially and remaining after completion of project', '\r\n\r\n E-commerce website with Payment Gateway.\r\n\r\n\r\n Android App', '', 'Ranjan', 0, 'Waiting For Approval', '9%', 7200, '9%', 7200, '18%', 0, 80000, '2019-01-05', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-21 14:19:25', 'Magadi Road Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (114, 567, '2018-12-24', 0, '0000-00-00', '', '2080', '16520', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website\r\nwhich includes:\r\n\r\n1)web pages - 25\r\n2)Domain \r\n3)Hosting.\r\n4)Basic Content writing.\r\n5)Email ID of 1 with 50 MB', '', 'Muralidhar', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-01-08', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-24 19:10:10', ' Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (115, 583, '2018-12-26', 0, '0000-00-00', '', '2081', '8000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Static Website\r\nwhich includes:\r\n1)Domain.\r\n2)Hosting.\r\n3)Basic Content writing', '', 'Rangaswamy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-01-10', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-26 16:09:51', 'guttahali Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (116, 588, '2018-12-26', 0, '0000-00-00', '', '2082', '6448', '100% payment to be made', '1)Hosting - Rs.2966 /-\r\n\r\n2)E-Mail ID of 5 with 5GB each - Rs.2500 /-', '', 'Ragavendra', 0, 'Waiting For Approval', '9%', 491, '9%', 491, '18%', 0, 5466, '2019-01-10', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-28 18:20:47', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar- 560010 Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (117, 606, '2018-12-10', 0, '0000-00-00', '', '2083', '49460', 'Full payment after completion of project', 'Domain & Privacy registration(5 Years) @ Rs. 5416.20/-\r\n\r\nWeb designing and development @ Rs. 27000.00/-\r\n\r\nHosting Service(3 Years) @ Rs. 7500.00/-\r\n\r\nweb security - SSL certificate(1 year) @ Rs. 2000.00/-', '', 'Principal', 0, 'Waiting For Approval', '9%', 3772, '9%', 3772, '18%', 0, 41916, '2018-12-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-27 14:28:39', 'Govt pre - university college\r\nBH Road, Tumkur- 572102\r\n', '0000-00-00 00:00:00', '', '', '', 0, ''), (118, 606, '2019-02-12', 0, '0000-00-00', '', '2083', '49460', 'Full payment after completion of project', 'Domain & Privacy registration(5 Years) @ Rs. 5416.20/-\r\n\r\nWeb designing and development @ Rs. 27000.00/-\r\n\r\nHosting Service(3 Years) @ Rs. 7500.00/-\r\n\r\nweb security - SSL certificate(1 year) @ Rs. 2000.00/-', '', 'Principal', 0, 'Waiting For Approval', '9%', 3772, '9%', 3772, '18%', 0, 41916, '2019-02-24', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-14 12:54:19', 'Govt pre - university college\r\nBH Road, Tumkur- 572102\r\n0816-2272776', '0000-00-00 00:00:00', '', '', '', 0, ''), (119, 629, '2018-12-28', 0, '0000-00-00', '', '2084', '7000', '50% of payment initially and remaining after completion of project', ' Static Website\r\n\r\nwhich includes:\r\n1)web pages - 5 pages.\r\n2)Domain.\r\n3)Hosting.\r\n4)basic Content writing.\r\n5)social media integration', '', 'Raghavendra', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 7000, '2019-01-12', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-28 19:08:12', 'Jayanagar yediyur Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (120, 0, '2018-12-28', 8, '0000-00-00', '', '2085', '885000', 'Project needs 3 months to complete. Payment will be divided on monthly basis and paid in starting of month .', 'Converting Skill Artistry Complete Syllabus in to animated video with voice .\r\n\r\n', '', 'Abhishek', 0, 'Waiting For Approval', '9%', 67500, '9%', 67500, '18%', 0, 750000, '2019-01-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-28 22:14:29', 'AandM \r\nBengaluru', '0000-00-00 00:00:00', '', '', '', 0, ''), (121, 588, '2018-12-31', 0, '0000-00-00', '', '2086', '2950', '100% of payment to be made', '\r\n\r\n\r\n SSL Certificate', '', 'Ragavendra', 0, 'Waiting For Approval', '9%', 225, '9%', 225, '18%', 0, 2500, '2019-01-15', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2018-12-31 11:09:14', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar- 560010 Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (122, 0, '2019-01-02', 34, '0000-00-00', '', '2087', '29500', '50% of payment initially and remaining after completion of project', '\r\n1) Logo, Letterhead and envelope, Visiting Card: Rs.6,000 /-\r\n \r\n2) website, Domain and Hosting: Rs.16,000 /-\r\n\r\n3) SSL Certificate: Rs.1,500 /-\r\n\r\n4) 1 google Email Id: Rs.1,500 /-\r\n', '', 'Srinivas', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-01-17', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-02 11:59:15', 'Bangalore, Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (123, 707, '2019-01-03', 0, '0000-00-00', '', '2088', '25370', '50% of payment initially and remaining after completion of project', '\r\n1) Logo(1), Letterhead(1),Envelop(2 numbers),Visiting card(3) :Rs 5000 /-\r\n\r\n2) Static Website of 6 pages : Rs 9000 /-\r\n\r\n3)Domain(3 number) : Rs 2000 /-\r\n\r\n4)Hosting: Rs 2000 /-\r\n\r\n5)Email Id (15): Rs.3500 /-', '', 'MeghaChandra', 0, 'Waiting For Approval', '9%', 1935, '9%', 1935, '18%', 0, 21500, '2019-01-18', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-03 14:25:26', 'Banshakari 3rd stage Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (124, 872, '2019-01-10', 0, '0000-00-00', '', '2089', '15000', '50% of payment initially and remaining after completion of project', 'Dynamic Website - Rs 12000 /-\r\n\r\nwhich include:\r\n1) Domain.\r\n2) 1 year free hosting service.\r\n3) Basic Content writing.\r\n4) 2 Email Id.\r\n5) Social Media Integration.\r\n\r\nPayment gateway Interation - Rs 3000 /-', '', 'Harsha', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2019-01-25', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-10 15:07:16', ' Banashankari Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (125, 0, '2019-01-14', 63, '0000-00-00', '', '2090', '8850', '100% of payment to be made', '\r\n\r\n \r\n \r\n Daily 2 Slider Designs per month', '', 'Syed', 0, 'Waiting For Approval', '9%', 675, '9%', 675, '18%', 0, 7500, '2019-01-29', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-14 13:18:58', 'H b r layout 3rd block, Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (126, 0, '2019-01-14', 63, '0000-00-00', '', '2090', '8850', '100% of payment to be made', '\r\n\r\n\r\n \r\n Daily 2 Slider Designs per month', '', 'Syed', 0, 'Waiting For Approval', '9%', 675, '9%', 675, '18%', 0, 7500, '2019-01-29', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-01-14 13:17:38', 'H b r layout 3rd block, Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (127, 0, '2019-01-16', 28, '0000-00-00', '', '2091', '18880', '50% of payment initially and remaining after completion of project', 'Static Website: 8500\r\n\r\nwhich include:\r\n1) Domain\r\n2) 1-year free hosting service.\r\n3) Basic Content writing.\r\n\r\n3 additional pages to www.gvimportsinfra.com website - 7500 ', '', 'Sandeep G V', 0, 'Waiting For Approval', '9%', 1440, '9%', 1440, '18%', 0, 16000, '2019-01-31', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-01-16 13:14:06', '#atom sports gottigere Bannerghatta main road Bangalore 560001, Karnataka, India', '0000-00-00 00:00:00', '', '', '', 0, ''), (128, 0, '2019-01-16', 28, '0000-00-00', '', '2091', '16000', '50% of payment initially and remaining after completion of project', '1) Static Website: Rs 8000 /-\r\n\r\n2) Hosting: Rs 2559 /-\r\n\r\n3) 3 additional pages to www.gvimportsinfra.com website - Rs 3000 /- ', '', 'Sandeep G V', 0, 'Waiting For Approval', '9%', 1220, '9%', 1220, '18%', 0, 13559, '2019-01-31', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-16 13:26:54', '#atom sports gottigere Bannerghatta main road Bangalore 560001, Karnataka, India', '0000-00-00 00:00:00', '', '', '', 0, ''), (129, 1017, '2019-01-18', 0, '0000-00-00', '', '2092', '15000', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website \r\nwhich include:\r\n1) web pages (Home, about us, Courses, Testimonials, Blog, Gallery, Contact us)\r\n2) Basic Content Writing.\r\n3) Brochure Design - 1\r\n4) Visiting Card - 1', '', 'Manjula Naidu', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2019-02-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-18 12:46:58', '#2651,2nd cross, 15th main, E-Block, Sahakara Nagar, Bengalure 560092 Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (130, 1044, '2019-01-18', 0, '0000-00-00', '', '2093', '8000', 'Hosting transfer - Rs. 3000 /-', '\r\n Static Website\r\nwhich include:\r\n1) web pages - 5(Home, About us, Service, Gallery, Contact us)\r\n2) Domain\r\n3) Hosting\r\n4) Social Medi Interation\r\n', '', 'Manohar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-02-02', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-01-18 16:12:51', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (131, 1044, '2019-01-18', 0, '0000-00-00', '', '2093', '8000', 'Hosting transfer - Rs. 3000 /-', '\r\n Static Website\r\nwhich include:\r\n1) web pages - 5(Home, About us, Service, Gallery, Contact us)\r\n2) Domain\r\n3) Hosting\r\n4) Social Medi Integartion\r\n', '', 'Manohar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-02-02', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-01-18 16:13:07', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (132, 1044, '2019-01-18', 0, '0000-00-00', '', '2093', '8000', 'Hosting transfer - Rs. 3000 /-', '\r\n Static Website\r\nwhich include:\r\n1) web pages - 5(Home, About us, Service, Gallery, Contact us)\r\n2) Domain\r\n3) Hosting\r\n4) Social Medi Integration\r\n', '', 'Manohar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-02-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-18 16:13:13', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (133, 1048, '2019-01-19', 0, '0000-00-00', '', '2094', '18880', '50% of payment initially and remaining after completion of project', 'Dynamic website', '', 'Abdul Hafiz', 0, 'Waiting For Approval', '9%', 1440, '9%', 1440, '18%', 0, 16000, '2019-02-03', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-19 17:53:41', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (134, 40, '2019-01-22', 0, '0000-00-00', '', '2095', '3540', '50% of payment initially and remaining after completion of project', '5 email ids with 5GB storage', '', 'pramod', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2019-02-06', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-22 10:46:12', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (135, 1222, '2019-01-28', 0, '0000-00-00', '', '2096', '53100', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n custom website with PHP and code igniter', '', 'Aasim mistry', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-02-12', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-28 12:12:25', 'Indiranagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (136, 1193, '2019-01-29', 0, '0000-00-00', '', '2097', '11000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Dynamic Website\r\n1) Web pages - 5\r\n2) Domain\r\n3) 1-year free Hosting\r\n4) Email Id : 5', '', 'Rajashekar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 11000, '2019-02-13', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-29 16:13:53', 'Mathikere Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (137, 1193, '2019-01-29', 0, '0000-00-00', '', '2097', '11000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Dynamic Website\r\n1) Web pages - 5\r\n2) Domain\r\n3) 1-year free Hosting\r\n4) Email Id: 5', '', 'Rajashekar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 11000, '2019-02-13', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-01-29 16:14:11', 'Mathikere Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (138, 1281, '2019-01-29', 0, '0000-00-00', '', '2098', '63000', '50% of payment initially and remaining after completion of project', 'MLM application\r\n\r\nFeatures:\r\n* Registration and login\r\n* Website\r\n* Responsive(mobile compatability)\r\n* Binary View\r\n* Payment gateway', '', 'Baburaj K', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 63000, '2019-02-13', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-01-29 18:23:54', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (139, 1398, '2019-02-04', 0, '0000-00-00', '', '2099', '13000', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website\r\nwhich include:\r\n1) Web pages - 5(Home, about us, service, gallery, contact us)\r\n2) Domain\r\n3) Hosting\r\n4) 1 email Id with 50 MB \r\n5) Social media Integration(facebook, twitter)', '', 'Guru', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 13000, '2019-02-19', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-04 12:37:25', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (140, 155, '2019-02-04', 0, '0000-00-00', '', '2100', '21240', '', '\r\n\r\n \r\n Changes in Existing ERP', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-02-19', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-11 18:47:27', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Mysore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (141, 1427, '2019-02-05', 0, '0000-00-00', '', '2101', '53100', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n Website Development', '', 'Dhanajay', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-02-20', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-05 18:22:37', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (142, 1427, '2019-02-05', 0, '0000-00-00', '', '2101', '53100', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n Website Development', '', 'Dhanajay', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-02-20', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-02-05 18:23:09', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (143, 0, '2019-02-07', 64, '0000-00-00', '', '2102', '25960', '50% of payment initially and remaining after completion of project', '1) Dynamic Website - ( www.dsignexperts.com ) - Rs. 4,000 /-\r\n Domain \r\n Hosting\r\n\r\n2) Dynamic Website -( www.leenikbiotechs.com ) - Rs. 18,000 /-\r\n Web pages - 10\r\n Domain\r\n Hosting\r\n Email Id - 1\r\n Social media Integration\r\n ', '', 'Corbelo Group', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2019-02-21', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-07 10:46:59', 'JP Nagar, Bangalore, Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (144, 1450, '2019-02-06', 0, '0000-00-00', '', '2103', '12000', '50% of payment initially and remaining after completion of project', ' Dynamic Website\r\n\r\nWhich includes:\r\n1) Web pages - 6\r\n2) Domain\r\n3) Hosting\r\n4) Email id - 1\r\n5) Social media integration', '', 'Pradeep', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 12000, '2019-02-21', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-06 15:31:33', 'Bannerghatta road Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (145, 1451, '2019-02-07', 0, '0000-00-00', '', '2104', '10000', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website\r\nwhich includes:\r\n1) Web pages - 6\r\n2) Domain\r\n3) Hosting\r\n4) Email Id -1\r\n5) Social Media Integration', '', 'Ranvir ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 10000, '2019-02-22', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-07 13:04:21', 'Magadi Road Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (146, 1541, '2019-02-12', 0, '0000-00-00', '', '2105', '13000', '50% of payment initially and remaining after completion of project', ' \r\n Dynamic Website\r\nwhich includes:\r\n1) web pages - 5\r\n2) Domain\r\n3) Hosting\r\n4) Logo \r\n5) Email id - 1\r\n6) Social media Integration', '', 'Venkat', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 13000, '2019-02-27', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-12 12:56:21', 'Banashakari Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (147, 0, '2019-02-15', 65, '0000-00-00', '', '2106', '1416000', '50% of payment initially and remaining after completion of project', 'ERP for construction', '', 'Vishwas', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 216000, 1200000, '2019-03-02', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-15 14:37:23', 'Goa', '0000-00-00 00:00:00', '', '', '', 0, ''), (148, 1639, '2019-02-15', 0, '0000-00-00', '', '2107', '5000', '50% of payment initially and remaining after completion of project', '\r\nSingle page static Website:\r\n\r\n1) 5 section\r\n2) Hosting\r\n3) Basic Content writing\r\n4) Social media integration', '', 'Pranav ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 5000, '2019-03-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-15 19:23:33', 'Bommasandra Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (149, 1640, '2019-02-15', 0, '0000-00-00', '', '2108', '27140', '100% of the payment to be made', '\r\n\r\n\r\n Server Renewal for 6th months from Feb -25 to Aug -25', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2019-03-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-18 11:30:51', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (150, 1641, '2019-02-15', 0, '0000-00-00', '', '2109', '27140', '100% of the payment to be made', '\r\n\r\n \r\n Server Renewal for 6th Months from Feb - 25 to Aug - 25', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2019-03-02', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-18 11:31:15', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (151, 137, '2019-02-18', 0, '0000-00-00', '', '2110', '35400', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website\r\nwhich includes:\r\n1) Domain\r\n2) Hosting\r\n3) Email Ids\r\n4) Social media Integration\r\n5) Payment gateway', '', 'George', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-03-05', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-18 16:37:34', 'Koramangala Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (152, 1674, '2019-02-19', 0, '0000-00-00', '', '2111', '6000', '50% of payment initially and remaining after completion of project', ' \r\n Single page static Website:\r\nwhich includes:\r\n1) 5 sections (Home, about us, Services, Contact us, Gallery)\r\n2) Domain\r\n3) Hosting\r\n4) Social media integration\r\n', '', 'Uday', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 6000, '2019-03-06', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-19 13:33:22', 'Srinivas Nagar, Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (153, 1741, '2019-02-20', 0, '0000-00-00', '', '2112', '4720', '100% of payment to be made', '\r\n\r\n \r\n \r\n Dentics app Upgrade', '', 'Nelivigi Dental Clinic', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2019-03-07', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-20 18:37:28', 'No. 450/435/10, Infront Of Vijaya Bank Opp. Bangalore Central Mall, ORR Bellandur Circle, Bengaluru Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (154, 1822, '2019-02-25', 0, '0000-00-00', '', '2113', '20414', '50% of payment initially and remaining after completion of project', '1)Static Website: RS. 12,000 /-\r\n which includes:\r\n Domain\r\n Hosting \r\n 1-year maintenance of the website.\r\n2) Logo Design: RS. 3,000 /-\r\n3) Poster Design: RS. 800 /-\r\n4) Broucher Design: Rs. 1,500 / per sheet \r\n\r\n', '', 'Ajay Vishwanath', 0, 'Waiting For Approval', '9%', 1557, '9%', 1557, '18%', 0, 17300, '2019-03-12', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-25 14:22:23', 'Vijaynagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (155, 0, '2019-02-27', 47, '0000-00-00', '', '2114', '45000', '50% of payment initially and remaining after completion of project', '\r\n\r\n1) Dynamic Website with watsapp chat link and Upgradation: RS 35,000 /-\r\n\r\n2) Maintenance up to Election: Rs 10,000 /-', '', 'Nagaraj', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-03-14', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-27 13:41:06', 'Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (156, 1870, '2019-02-28', 0, '0000-00-00', '', '2115', '17700', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n \r\n Dynamic Website with 6 - 10 pages ', '', 'archana', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-03-15', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-28 15:38:23', 'Sai Nivas, 27/28,6th Cross, Avani Shringeri Nagar, Bengaluru-76', '0000-00-00 00:00:00', '', '', '', 0, ''), (157, 1875, '2019-02-28', 0, '0000-00-00', '', '2116', '10000', '50% of payment initially and remaining after completion of project', 'Static Website: Rs 7000 /-\r\n which includes:\r\n 1) web pages - 5\r\n 2) Domain\r\n 3) Hosting\r\n 4) Basic Content Writing\r\n 5) Social Media Integration.\r\n\r\nLogo design: Rs 3000 /-\r\n \r\n \r\n', '', 'Yeshwanth Gowda', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 10000, '2019-03-15', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-02-28 16:15:55', 'Hinkal Mysore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (158, 1952, '2019-03-05', 0, '0000-00-00', '', '2117', '12390', '50% of payment initially and remaining after completion of project', '1) Domain - Rs. 1000 /-\r\n\r\n2) Hosting for 2 GB - Rs. 4000 /-\r\n\r\n3) Email ID of 5 - Rs. 2500 /-\r\n\r\n ( per Email Id - RS.500 each) \r\n\r\n4) 2 SSL Certificate - Rs. 3000 /-\r\n ( per SSL - RS. 1500) ', '', 'Abhishek', 0, 'Waiting For Approval', '9%', 945, '9%', 945, '18%', 0, 10500, '2019-03-20', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-05 15:41:40', 'Shop No. F8, 1st Floor, Divya Enclave Complex, Opp. Canara College, M G Road, Mangalore - 575003 Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (159, 1926, '2019-03-05', 0, '0000-00-00', '', '2118', '7080', '50% of payment initially and remaining after completion of project', '\r\n Static Website\r\nincludes:\r\n1) Web pages - 5\r\n2) Domain\r\n3) Hosting\r\n4) Basic Content writing\r\n5) Social media Integration\r\n6) Email Id - 1', '', 'Vijay kumar', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2019-03-20', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-05 13:52:26', 'Mysore Road Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (160, 1961, '2019-03-05', 0, '0000-00-00', '', '2119', '4130', '100% of payment to be made', '\r\n\r\n\r\n\r\n Payment gateway Integration', '', 'Redstone Retreat', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 630, 3500, '2019-03-20', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-05 15:50:57', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. ', '0000-00-00 00:00:00', '', '', '', 0, ''), (161, 1961, '2019-03-05', 0, '0000-00-00', '', '2119', '4130', '100% of payment to be made', '\r\n\r\n\r\n Payment gateway Integration', '', 'Redstone Retreat', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 630, 3500, '2019-03-20', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-05 15:52:49', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. ', '0000-00-00 00:00:00', '', '', '', 0, ''), (162, 1961, '2019-03-05', 0, '0000-00-00', '', '2119', '4130', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n Payment Gateway Integration', '', 'Redstone Retreat', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 630, 3500, '2019-03-20', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-05 15:54:05', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. ', '0000-00-00 00:00:00', '', '', '', 0, ''), (163, 1997, '2019-03-07', 0, '0000-00-00', '', '2120', '41300', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n E-commerce website with payment gateway ', '', 'Harish', 0, 'Waiting For Approval', '9%', 3150, '9%', 3150, '18%', 0, 35000, '2019-03-22', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-07 11:32:40', 'basaveshwara Nagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (164, 2006, '2019-03-07', 0, '0000-00-00', '', '2121', '7334', '100% of payment to be done', '\r\nWebsite \" www.laveera.com\" is up for renewal. \r\n\r\nFor the year 2018 - 2020 ( 2 years) \r\n\r\nAMC Charge will be for 2 years: Rs 6216 /-\r\n\r\nPer month charges for hosting : Rs 259 /-', '', 'Laveera Technologies Pvt Ltd', 0, 'Waiting For Approval', '9%', 559, '9%', 559, '18%', 0, 6216, '2019-03-22', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-07 18:33:47', 'D114, Brigade Palmsprings, 24th Main Road, JP Nagar 7th Phase, Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (165, 2052, '2019-03-11', 0, '0000-00-00', '', '2122', '2950', '100% of the payment to be done', ' \r\n Zoho mail ID - 5', '', 'Dsignexperts', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 450, 2500, '2019-03-26', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-11 11:50:13', '#402, Padmaja Jhansi Towers, near K.S. Bakers, Bhagyanagar Colony, KPHB, Hyderbad - 500072, T.S. INDIA', '0000-00-00 00:00:00', '', '', '', 0, ''), (166, 2052, '2019-03-11', 0, '0000-00-00', '', '2122', '2950', '50% of payment initially and remaining after completion of project', '\r\n\r\n\r\n\r\n Zoho Mail id - 5', '', 'Dsignexperts', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 450, 2500, '2019-03-26', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-11 11:51:26', '#402, Padmaja Jhansi Towers, near K.S. Bakers, Bhagyanagar Colony, KPHB, Hyderbad - 500072, T.S. INDIA. ', '0000-00-00 00:00:00', '', '', '', 0, ''), (167, 2052, '2019-03-11', 0, '0000-00-00', '', '2123', '2950', '50% of payment initially and remaining after completion of project', 'Zoho maid id 5', '', 'Dsignexperts', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 450, 2500, '2019-03-26', 'Admin', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-11 11:53:50', '#402, Padmaja Jhansi Towers, near K.S. Bakers, Bhagyanagar Colony, KPHB, Hyderbad - 500072, T.S. INDIA. 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (168, 2052, '2019-03-11', 0, '0000-00-00', '', '2122', '2950', '100% of payment to be done', '\r\n\r\n \r\n Zoho mail ID - 5', '', 'Dsignexperts', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 2500, '2019-03-26', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-11 12:05:21', '#402, Padmaja Jhansi Towers, near K.S. Bakers, Bhagyanagar Colony, KPHB, Hyderbad - 500072, T.S. INDIA. ', '0000-00-00 00:00:00', '', '', '', 0, ''), (169, 2053, '2020-06-10', 0, '0000-00-00', '', '2123', '8260', '100% of payment to be made.', '[\"\\r\\n2 web hosting Charges(3500 * 2)\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-10 17:51:12', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 0, ''), (170, 2051, '2019-03-12', 0, '0000-00-00', '', '2124', '590', '100% of the payment to be made', '\r\n Changes in Existing website are\r\n\r\n1) Book now icon to be changed in the banner image \r\n\r\n2) Free cottage icon to change and to be displayed on all pages.\r\n\r\n3) Only 20 plots available icon to change and to be displayed on all pages.\r\n\r\n \r\n', '', 'Platawoods', 0, 'Waiting For Approval', '9%', 45, '9%', 45, '18%', 0, 500, '2019-03-27', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-12 11:51:21', 'Pranav, No 9/12, 5th Cross, 10th Main, Sri Gururaja Layout, Banashankari 3rd stage, Bangalore - 560085 Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (171, 2051, '2019-03-12', 0, '0000-00-00', '', '2125', '11800', '50% of payment initially and remaining after completion of project', '\r\n Dynamic Website\r\nwhich includes:\r\n1) web pages - 5\r\n2) Domain\r\n3) Hosting\r\n4) Email Id - 1\r\n5) Social media Integration', '', 'Platawoods', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-03-27', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-12 11:53:00', 'Pranav, No 9/12, 5th Cross, 10th Main, Sri Gururaja Layout, Banashankari 3rd stage, Bangalore - 560085 Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (172, 1962, '2019-03-12', 0, '0000-00-00', '', '2126', '16520', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n \r\n Dynamic Website', '', 'Yash Patel', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-03-27', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-12 18:27:21', 'Bangalore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (173, 2057, '2019-03-13', 0, '0000-00-00', '', '2127', '7080', '100% of payment to be done', '\r\n Domain and Hosting Renewal\r\n\r\nservice provided:\r\n1) Disk Quota: 2GB\r\n2) Unlimited Bandwidth\r\n', '', 'Krishnapriya', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2019-03-28', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-13 12:05:39', '# 104/B, Ground Floor, 38th Cross, 26th Main, 9th Block Jayanagar, Bangalore -560069 ', '0000-00-00 00:00:00', '', '', '', 0, ''), (174, 2059, '2019-03-19', 0, '0000-00-00', '', '2128', '15000', '100% of payment to be made', '\r\n\r\n \r\n \r\n Dynamic Website ', '', 'Skill Tree Academy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2019-04-03', 'Shri priya ', 'WAITING', 'INACTIVE', 'Quotation', '2019-03-19 13:13:06', 'Sahakar Nagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (175, 2059, '2019-03-19', 0, '0000-00-00', '', '2129', '17700', '100% of payment to be made', '\r\n\r\n\r\n Dynamic Website', '', 'Skill Tree Academy', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-04-03', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-19 13:17:43', 'Sahakar Nagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (176, 2061, '2019-03-19', 0, '0000-00-00', '', '2130', '10000', '50% of payment initially and remaining after completion of project', '\r\n Static Website\r\nwhich Includes:\r\n1) web pages -5\r\n2) Domain\r\n3) Hosting\r\n4) Email id - 1\r\n5) Basic Content writing\r\n6) Social Media Integration', '', 'Vinay Kumar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 10000, '2019-04-03', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-19 18:17:52', 'Vijaynagar Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (177, 2062, '2019-03-20', 0, '0000-00-00', '', '2131', '25000', '50% of payment initially and remaining after completion of project', '\r\n\r\n Dynamic Website \r\nwhich includes:\r\n1) web pages - 6\r\n2) Basic Content writing\r\n3) E- mail Id - 5\r\n4) Social Media Integration', '', 'Care My car', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 25000, '2019-04-04', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-20 12:39:32', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008 Bangalore Karnataka ', '0000-00-00 00:00:00', '', '', '', 0, ''), (178, 2063, '2019-03-25', 0, '0000-00-00', '', '2132', '14160', '50% of payment initially and remaining after completion of project', '\r\n\r\n \r\n Static Website', '', 'Indradip', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-04-09', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-03-25 10:57:24', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore 560078 Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (179, 2064, '2019-04-02', 0, '0000-00-00', '', '2133', '54870', '50% of payment initially and remaining after completion of project', 'Multiple hotel booking application @ Rs. 42,000/-\r\n\r\nDomain @ Rs. 1000/-\r\n\r\nHosting with SSL @ Rs. 3,500/-', '', 'Ramesh Raj', 0, 'Waiting For Approval', '9%', 4185, '9%', 4185, '18%', 0, 46500, '2019-04-17', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-02 11:50:25', ' Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (180, 2064, '2019-04-04', 0, '0000-00-00', '', '2134', '160834', '50% of payment initially and remaining after completion of project', 'Multiple hotel booking application @ Rs. 42,000/-\r\n\r\nAndroid application 2 Rs. 85000/-\r\n\r\nApp upload to Play store @ Rs. 2500/-\r\n\r\nDomain @ Rs. 1000/-\r\n\r\nHosting with SSL @ Rs. 5800/-', '', 'Ramesh Raj', 0, 'Waiting For Approval', '9%', 12267, '9%', 12267, '18%', 0, 136300, '2019-04-19', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-04 17:36:05', ' Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (181, 1901, '2019-04-10', 0, '0000-00-00', '', '2135', '20000', '50% of payment initially and remaining after completion of project', 'Website development with domain and hosting', '', 'Lakshmi', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 20000, '2019-04-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-10 12:40:24', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (182, 231, '2019-04-10', 0, '0000-00-00', '', '2136', '8000', '50% of payment initially and remaining after completion of project', 'Static website with 5 pages\r\n2 domain email ids with 100mb storage\r\nDomain and hosting included', '', 'Rajesh ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-04-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-10 18:07:40', 'Banashankari 3rd Stage Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (183, 2065, '2019-04-11', 0, '0000-00-00', '', '2137', '18880', '50% of payment initially and remaining after completion of project, ', 'Dynamic website, hosting, 1 year maintenance\r\nWebsite reference: dubaiporcelain.ae, dubaimonsters.com\r\n\r\n', '', 'Amarnath', 0, 'Waiting For Approval', '9%', 1440, '9%', 1440, '18%', 0, 16000, '2019-04-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-11 15:45:08', '178/179,paramount Garden, thalagattapura, Next to Nandi toyota, Kanakapura Main road Bangalore Karnataka 560062', '0000-00-00 00:00:00', '', '', '', 0, ''), (184, 2066, '2019-04-12', 0, '0000-00-00', '', '2138', '10000', '50% of payment initially and remaining after completion of project', ' Static Website \r\n 1.8 Pages\r\n 2.Carrier\r\n 3.Blog ', '', 'Arjun', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 10000, '2019-04-27', 'Shri priya ', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-12 12:31:30', 'Bangalore, Karnataka.', '0000-00-00 00:00:00', '', '', '', 0, ''), (185, 1026, '2019-04-17', 0, '0000-00-00', '', '2139', '25000', '50% of payment initially and remaining after completion of project. AMC for dynamic website: Rs. 5000, e-Commerce: Rs. 6000/-', 'Dynamic website, logo with hosting @ Rs. 25000/-\r\n\r\ne-Commerce website, logo with hosting @ Rs. 42000/-', '', 'Shiva ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 25000, '2019-05-02', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-17 16:28:06', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (186, 595, '2019-04-17', 0, '0000-00-00', '', '2140', '8260', '50% of payment initially and remaining after completion of project', 'Static website with hosting(7 Pages)', '', 'Prakash', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2019-05-02', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-04-17 17:51:55', 'Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (187, 2080, '2019-05-03', 0, '0000-00-00', '', '2141', '10620', '50% of payment initially and remaining after completion of project', 'Static website development\r\n(Custom Design)', '', 'Jagadeesh Rao', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-05-18', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-03 17:17:12', 'Hebbal', '0000-00-00 00:00:00', '', '', '', 0, ''), (188, 2081, '2019-05-06', 0, '0000-00-00', '', '2142', '25960', '50% of payment initially and remaining after completion of project', 'Custom Dynamic Website\r\nDomain and hosting included\r\n1 year maintenance and training included', '', 'Lakshmi', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2019-05-21', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-06 14:17:57', 'Whitefield Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (189, 2082, '2019-05-07', 0, '0000-00-00', '', '2143', '10620', '50% of payment initially and remaining after completion of project', 'AMC of website www.vidyuth.co.in for year 2019-20\r\nTotal hours: 30', '', 'Shiva', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-05-22', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-07 11:05:23', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (190, 1640, '2019-05-08', 0, '0000-00-00', '', '2144', '324500', '50% of payment initially and remaining after completion of project', 'AMC for ERP of Swansilk and Deco-Textil for year 2019-20\r\n\r\nIncludes:\r\n1. ERP Support over phone and email for 1 year.\r\n2. 200 hours of Bug fixing and development.\r\n3. Does not include server charges.\r\n4. TAT of 4 hours.\r\n', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 24750, '9%', 24750, '18%', 0, 275000, '2019-05-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-08 12:33:40', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (191, 155, '2019-05-10', 0, '0000-00-00', '', '2145', '112100', '50% of payment initially and remaining after completion of project', 'AMC for ERP application for year 2019-20\r\n\r\nIncludes: \r\n1. Support of phone and email.\r\n2. 60 hours of bug fixing and development.\r\n3. Server charges are not included.\r\n4. TAT of 4 hours.\r\n5. Changes as per attached document', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 8550, '9%', 8550, '18%', 0, 95000, '2019-05-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-10 18:11:28', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Mysore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (192, 1363, '2019-05-08', 0, '0000-00-00', '', '2146', '45000', '50% of payment initially and remaining after completion of project', 'Domain @ Rs. 1000\r\nHosting @ Rs. 2500\r\nWeb application @ Rs. 41500\r\n', '', 'Suhas', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 45000, '2019-05-23', 'Triveni', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-08 14:17:01', 'Bangalore ', '0000-00-00 00:00:00', '', '', '', 0, ''), (193, 304, '2019-05-11', 0, '0000-00-00', '', '2147', '29500', '100% of payment before installation ', 'POS (Point of sale software along with inventory) Online software including server .\r\n\r\nTraining of software will be Free\r\n\r\nAMC : first year it will be free after that 6500 Rs per year .', '', 'Shashank', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-05-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-11 13:31:24', 'Gundlupet', '0000-00-00 00:00:00', '', '', '', 0, ''), (194, 2194, '2019-05-20', 0, '0000-00-00', '', '2148', '11800', '50% of payment initially and remaining after completion of project', 'Dynamic website\r\n5 pages\r\nDomain and hosting included\r\nSingle page Pamplet', '', 'Kiran', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-06-04', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-20 10:54:04', 'Hebbal,\r\nBangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (195, 2303, '2019-05-25', 0, '0000-00-00', '', '2149', '25997', '50% of payment initially and remaining after completion of project', 'e-Commerce website after deduction of previous Rs. 3500/- ', '', 'Mayank', 0, 'Waiting For Approval', '9%', 1982, '9%', 1982, '18%', 0, 22033, '2019-06-09', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-25 14:02:27', ' Bangalore 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (196, 2308, '2019-05-25', 0, '0000-00-00', '', '2150', '82600', '50% of payment initially and remaining after completion of project', '1. Article and blog integration: Rs. 25000/-\r\n\r\n2. Social media integration for facebook and Google: Rs. 15000/-\r\n\r\n3. SEO Friendly: Rs. 30000/-', '', 'Sanjay', 0, 'Waiting For Approval', '9%', 6300, '9%', 6300, '18%', 0, 70000, '2019-06-09', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-25 15:38:56', 'Gurgaon New Delhi 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (197, 2396, '2019-05-30', 0, '0000-00-00', '', '2151', '377600', '50% of payment initially and remaining after completion of project', 'ERP application', '', 'Pradeep', 0, 'Waiting For Approval', '9%', 28800, '9%', 28800, '18%', 0, 320000, '2019-06-14', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-05-30 17:49:41', 'Shanthala Nagar Bangalore 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (198, 2457, '2019-06-04', 0, '0000-00-00', '', '2152', '590000', '50% of payment initially and remaining after completion of project', 'Inventory management systmem', '', 'Akshay', 0, 'Waiting For Approval', '9%', 45000, '9%', 45000, '18%', 0, 500000, '2019-06-19', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-04 11:52:41', ' Bangalore 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (199, 2526, '2019-06-07', 0, '0000-00-00', '', '2153', '14160', '50% of payment initially and remaining after completion of project', '[\"Static website development with Domain and Hosting for 1 year @ Rs. 12000\\/-\\r\\nNo of pages: 10-12\\r\\n\\r\\n\"]', '', 'TLB Rao', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 14160, '2019-06-22', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:28:31', ' Hyderabad Andra Pradesh 0', '0000-00-00 00:00:00', '[\"14160\"]', '', 'no_tax', 0, ''), (200, 2533, '2019-06-11', 0, '0000-00-00', '', '2154', '11800', '50% of payment initially and remaining after completion of project', 'Static website development(single page) @ Rs. 5000/-\r\n\r\nDynamic website development(Single page) @ Rs. 10000/-\r\n\r\n', '', 'Puneeth', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-06-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-11 18:39:19', 'Bangalore', '0000-00-00 00:00:00', '', '', '', 0, ''), (201, 0, '2019-06-12', 4, '0000-00-00', '', '2155', '25960', '100% of payment to be made. ', 'AMC for website for year 2019-20\r\n\r\nAMC Period: 1-06-2019 to 31-05-2020', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2019-06-27', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-12 16:28:05', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '', '', '', 0, ''), (202, 2536, '2019-06-13', 0, '0000-00-00', '', '2156', '29500', '100% of payment before starting the project', 'e-Commerce dynamic website with domain and hosting\r\n\r\nIncludes:\r\n1. Website development\r\n2. 1 year support\r\n3. Domain and hosting\r\n4. Unlimited products\r\n5. Payment gateway integration', '', 'Jaya', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-06-28', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-13 16:48:42', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (203, 2537, '2019-06-15', 0, '0000-00-00', '', '2157', '59000', '100% of payment ', 'NParrots School Management Solution for 05 User', '', 'Mamtha', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2019-06-30', 'Krishna', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-15 11:39:42', ' Pratham Vidya Mandir. #59/1, First Floor, Virata Nagar Circle, Virat Nagar, Bommanahalli, Bengaluru, Karnataka Bengaluru Karnataka 560068', '0000-00-00 00:00:00', '', '', '', 0, ''), (204, 2540, '2019-06-18', 0, '0000-00-00', '', '2158', '10620', '50% of payment initially and remaining after completion of project', 'Static website\r\n\r\nincludes: \r\n1. Static website(6 pages)\r\n2. Domain and hosting\r\n3. 2 complimentary email ids', '', 'Syed', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-07-03', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-18 16:08:32', 'Zurie Developers,\r\nBasavanagudi Bangalore Karnataka 560064', '0000-00-00 00:00:00', '', '', '', 0, ''), (205, 2540, '2019-06-18', 0, '0000-00-00', '', '2158', '10620', '50% of payment initially and remaining after completion of project', 'Static website\r\n\r\nincludes: \r\n1. Static website (6 pages)\r\n2. Domain and hosting\r\n3. 2 complimentary email ids', '', 'Syed', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-07-03', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-06-18 16:08:10', 'Zurie Developers,\r\nBasavanagudi Bangalore Karnataka 560064', '0000-00-00 00:00:00', '', '', '', 0, ''), (206, 2561, '2019-07-04', 0, '0000-00-00', '', '2159', '7080', '50% of payment initially and remaining after completion of project', ' Static Single Page Website', '', 'Chandra', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2019-07-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-04 10:55:01', 'Ganesha Temple,Bommana Halli Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (207, 2572, '2019-07-05', 0, '0000-00-00', '', '2160', '16520', '50% of payment initially and remaining after completion of project', '5 Pages Of Static Website(togservices.co)', '', 'Think Of Green', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-07-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-05 11:25:04', 'Elita Promenade,A1,1406,14th Floor,J P Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (208, 2573, '2019-07-05', 0, '0000-00-00', '', '2161', '0', '50% of payment initially and remaining after completion of project', 'Test Mail', '', 'Reshma', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 0, '2019-07-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-05 12:04:04', ' 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (209, 2569, '2019-07-05', 0, '0000-00-00', '', '2162', '15340', '50% of payment initially and remaining after completion of project', 'Dynamic website\r\nDesign,Hosting,Chart Board Option\r\nOne Year Support', '', 'Srikanth', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-07-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-05 12:40:15', 'BDA Complex, Nagarabhavi Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (210, 2577, '2019-07-08', 0, '0000-00-00', '', '2163', '7670', '100% of the payment to be made', 'AMC for website nammafoundation\r\nPeriod: 8-7-2019 to 7-7-2020', '', 'Shanmuga K', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2019-07-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-08 12:42:15', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (211, 2545, '2019-07-08', 0, '0000-00-00', '', '2164', '153400', '50% of payment initially and remaining after completion of project', 'Application Development', '', 'Mr Madhusudan', 0, 'Waiting For Approval', '9%', 11700, '9%', 11700, '18%', 0, 130000, '2019-07-23', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-08 17:52:52', 'BTM layout Bangalore karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (212, 2612, '2019-07-13', 0, '0000-00-00', '', '2165', '15340', '50% of payment initially and remaining after completion of project', '4 to 5 Pages Of Dynamic Website for Medical Store', '', 'Mahesh Khati', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-07-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-13 15:14:53', 'Mahalakshmi Layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (213, 2611, '2019-07-13', 0, '0000-00-00', '', '2166', '23600', '50% of payment initially and remaining after completion of project', 'Website for Tours & Travells\r\n(Online Booking,Travell Packages,Customer Service) ', '', 'Suresh', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2019-07-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-13 15:22:28', 'Jp nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (214, 2613, '2019-07-13', 0, '0000-00-00', '', '2167', '21240', '50% of payment initially and remaining after completion of project', '6 to 7 Pages of Static Website\r\n(Static Information Security,SEO Friendly)', '', 'Dharmendra', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-07-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-13 15:28:05', 'Marathahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (215, 2613, '2019-07-13', 0, '0000-00-00', '', '2167', '21240', '50% of payment initially and remaining after completion of project', '6 to 7 Pages of Static Website\r\n(Static Information Security,SEO Friendly)', '', 'Dharmendra', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-07-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-13 15:32:31', 'Marathahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (216, 0, '2019-07-15', 69, '0000-00-00', '', '2168', '16520', '100% payment to be done before project starts. Hosting @ Rs. 2000 per website per year', 'Redesign of static website @ Rs. 11000/-\r\n\r\nChanges to existing website @ Rs. 3000/-\r\n', '', 'Mohan Nimbalkar', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2019-07-30', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-15 16:31:19', 'No P-5, 31st main, Banagirinagar, BSK 3rd stage Bangalore Karnataka 560085', '0000-00-00 00:00:00', '', '', '', 0, 'Potential'), (217, 2604, '2019-07-15', 0, '0000-00-00', '', '2169', '188800', '50% of payment initially and remaining after completion of project', 'Application Similar to Gobumper.com', '', 'Hemanth', 0, 'Waiting For Approval', '9%', 14400, '9%', 14400, '18%', 0, 160000, '2019-07-30', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-15 16:43:04', 'R T Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (218, 2618, '2019-07-16', 0, '0000-00-00', '', '2170', '21240', '50% of payment initially and remaining after completion of project', '6 Page Dynamic Website\r\n(Hosting,Blog , Carrier,Online Chatting,Social Media Links,and 1 Year Service )', '', 'Rajesh Shenoy', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-07-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-16 17:36:18', 'Rangappa Reddy Complex,R V Road,V V Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (219, 2572, '2019-07-16', 0, '0000-00-00', '', '2171', '5310', '50% of payment initially and remaining after completion of project', '2 Static Pages\r\n1 Blog', '', 'Think Of Green', 0, 'Waiting For Approval', '9%', 405, '9%', 405, '18%', 0, 4500, '2019-07-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-16 17:51:22', 'Elita Promenade,A1,1406,14th Floor,J P Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (220, 2598, '2019-07-18', 0, '0000-00-00', '', '2172', '401200', '50% of payment initially and remaining after completion of project', '1. Case Entry\r\n2. Acknowledged by Respondent PESO Office / HQ\r\n3. Authorization issued by HQ\r\n4. Authorization acknowledged by Officer / resp. Office\r\n5. Para-wise comments submitted by Officer\r\n6. Para-wise comments acknowledged by HQ\r\n7. Para-wise comments reviewed by HQ and directed action\r\n8. Counter affidavit filed by Officer OR Other action\r\n9. Subsequent hearing (optional)\r\n10. Date of judgement / dispose off case', '', 'Sumith', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 61200, 340000, '2019-08-02', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-18 14:52:04', 'Nagpur Nagpur Maharashtra 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (221, 2639, '2019-07-19', 0, '0000-00-00', '', '2173', '9440', '50% of payment initially and remaining after completion of project', '6 Pages Static Website(including Domain & Hosting)', '', 'Imran', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2019-08-03', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-19 14:17:26', 'Frazer town Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (222, 2635, '2019-07-23', 0, '0000-00-00', '', '2174', '53100', '50% of payment initially and remaining after completion of project', 'Expense management(Web application)', '', 'Ayub', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-08-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-23 11:57:56', 'Kollegala Chamarajanagar Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (223, 2657, '2019-07-24', 0, '0000-00-00', '', '2175', '9440', '50% of payment initially and remaining after completion of project', '5 to 6 Pages of Static website\r\n(Hosting & Development)', '', 'Kavya', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2019-08-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-24 17:53:04', 'Shivajinagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (224, 2653, '2019-07-27', 0, '0000-00-00', '', '2176', '35000', '50% of payment initially and remaining after completion of project', 'Website Like Shreenidhicatering.in ', '', '', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 35000, '2019-08-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-27 13:14:30', 'Koramangala,Bangalore\r\n', '0000-00-00 00:00:00', '', '', '', 0, ''), (225, 2582, '2019-07-27', 0, '0000-00-00', '', '2177', '28320', '50% of payment initially and remaining after completion of project', 'School Website\r\nHosting\r\n12 Professional E-mail with 5GB storage', '', 'Vidyadhar', 0, 'Waiting For Approval', '9%', 2160, '9%', 2160, '18%', 0, 24000, '2019-08-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-27 15:47:00', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (226, 155, '2019-07-29', 0, '0000-00-00', '', '2178', '118000', '50% of payment initially and remaining after completion of project', 'Changes to Documentation application @ Rs. 1,00,000/-', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2019-08-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-31 14:22:11', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Mysore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (227, 155, '2019-07-29', 0, '0000-00-00', '', '2179', '4720', '50% of payment initially and remaining after completion of project', 'Changes to ERP(GSS Organised)', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2019-08-13', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-07-29 18:38:44', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Mysore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (228, 2693, '2019-08-01', 0, '0000-00-00', '', '2180', '119416', '50% of payment initially and remaining after completion of project', 'Web Application Re-Design & Development', '', 'Amar ', 0, 'Waiting For Approval', '9%', 9108, '9%', 9108, '18%', 0, 101200, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 13:15:15', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (229, 2661, '2019-08-01', 0, '0000-00-00', '', '2181', '340000', '50% of payment initially and remaining after completion of project', 'Web Application Development with android & IOS(99 acre)', '', 'Neha', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 340000, '2019-08-16', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2019-08-01 14:04:47', 'HSR Police Station Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (230, 2661, '2019-08-01', 0, '0000-00-00', '', '2181', '401200', '50% of payment initially and remaining after completion of project', 'Web Application Development with android & IOS(99 acre)', '', 'Neha', 0, 'Waiting For Approval', '9%', 30600, '9%', 30600, '18%', 0, 340000, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 14:02:49', 'HSR Police Station Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (231, 2661, '2019-08-01', 0, '0000-00-00', '', '2182', '401200', '50% of payment initially and remaining after completion of project', 'Web Application Development with Android 7 IOS(99acre)', '', 'Neha', 0, 'Waiting For Approval', '9%', 30600, '9%', 30600, '18%', 0, 340000, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 15:11:34', 'HSR Police Station Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (232, 2695, '2019-08-01', 0, '0000-00-00', '', '2183', '17700', '50% of payment initially and remaining after completion of project', '5 Page Website with Payment Gateway', '', 'Kousalya', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 15:34:46', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (233, 2689, '2019-08-01', 0, '0000-00-00', '', '2184', '26550', '50% of payment initially and remaining after completion of project', 'Static Premium website-16000/-\r\n Hosting- 2500/-\r\n 5 E-mail ID Pack- 4000', '', 'Madhura Hegde', 0, 'Waiting For Approval', '9%', 2025, '9%', 2025, '18%', 0, 22500, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 17:01:55', 'Near Saibaba Temple,Arekere Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (234, 2062, '2019-08-01', 0, '0000-00-00', '', '2185', '100300', '1.50% of payment initially and remaining after completion of project.\r\n2.Car wash booking with android and ios: Rs. 240000/-plus GST.', 'Car wash Booking with android:', '', 'Care My car', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2019-08-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-01 17:30:32', '#18, 2nd Floor,Shamanna Gowda Layout, Ulsoor, Bangalore, Karnataka 560008 Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (235, 152, '2019-08-02', 0, '0000-00-00', '', '2186', '10620', '50% of payment initially and remaining after completion of project', '4 Pages Static website', '', 'Manjunath', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-08-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-02 11:26:21', 'Bogadi Mysore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (236, 2697, '2019-08-02', 0, '0000-00-00', '', '2187', '23600', '50% of payment initially and remaining after completion of project', ' 15 Pages of Dynamic Website \r\n(Including Logo Design,Domain & Hosting for 1 Year)', '', 'Amar Singh', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2019-08-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-02 12:07:44', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '', '', '', 0, ''), (237, 2677, '2019-08-13', 0, '0000-00-00', '', '2188', '14160', '50% of payment initially and remaining after completion of project', '[\"4 to 5 Pages of Dynamic Website \\r\\n(Including Domain & Hosting for 1 year)\"]', '', 'Chandru', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 12000, '2019-08-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-13 11:53:39', 'Koymathoor(office), Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, ''), (238, 0, '2019-08-15', 0, '0000-00-00', '', '2189', '15340', '50% of payment initially and remaining after completion of project\r\n1.Client will Provide the Domain.\r\n2.Rs.1800/- extra for Whatsapp chat if you need.', '[\"5-6 Pages Dynamic website\\r\\n(Hosting and Maintenance of website)\"]', '', 'Bhaskar', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-08-30', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-15 12:46:08', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka 560056', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 657, 'Account'), (239, 0, '2019-08-16', 0, '0000-00-00', '', '2190', '118000', '50% of payment initially and remaining after completion of project', '[\"MLM application\"]', '', 'Krishnan NS', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2019-08-31', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-16 16:28:17', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka 560098', '0000-00-00 00:00:00', '[\"100000\"]', 'Within State', 'tax', 656, 'Account'), (240, 2722, '2019-08-21', 0, '0000-00-00', '', '2191', '177000', '1.50% of payment initially and remaining after completion of project\r\n2.Classified web application for 3 categories\r\n1.Hotel room booking\r\n2.Travels\r\n3.Real Estate \r\nalong with Native application for android mobile \r\nPrice:4 Lakhs+GST\r\n', '[\"Classified webapplication for 3 categories\\r\\n1.Hotel room booking\\r\\n2.Travels\\r\\n3.Real Estate \\r\\nalong with Hybrid application for android mobile \"]', '', 'Ramesh', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 150000, '2019-09-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-21 12:23:29', 'Banasawadi Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"150000\"]', 'Within State', 'tax', 0, 'Lead'), (241, 2755, '2019-08-21', 0, '0000-00-00', '', '2192', '10620', '50% of payment initially and remaining after completion of project', '[\"4 to 5 pages of Static website\"]', '', 'Ibraham', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2019-09-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-21 12:42:25', 'Malleswaram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"9000\"]', 'Within State', 'tax', 0, 'Lead'), (242, 0, '2019-08-21', 0, '0000-00-00', '', '2193', '29500', '50% of payment initially and remaining after completion of project', '[\"E-commerce website with Payment gateway\"]', '', 'Manju', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 25000, '2019-09-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-21 15:19:58', '#55,Krishna kuteera apartments,ground floor,7th main,Bank of baroda colony,J P Nagar 7th phase Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 668, 'Account'), (243, 2763, '2019-08-23', 0, '0000-00-00', '', '2194', '11800', '1.50% of payment initially and remaining after completion of project\r\n2.5 pages of dynamic website :12000+GST', '[\"5 Pages of Static website\"]', '', 'Abhishek', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-09-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-23 10:54:18', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (244, 2764, '2019-08-23', 0, '0000-00-00', '', '2195', '10030', '1.50% of payment initially and remaining after completion of project\r\n2.After one year AMC :4500+GST', '[\"7-8 pages of static website with 5 E-mail Id & 1 contact form with Hosting for one year\"]', '', 'Sunder', 0, 'Waiting For Approval', '9%', 765, '9%', 765, '18%', 0, 8500, '2019-09-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-23 15:35:58', 'COX town Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8500\"]', 'Within State', 'tax', 0, 'Lead'), (245, 0, '2019-08-23', 0, '0000-00-00', '', '2196', '31860', '50% of payment initially and remaining after completion of project', '[\"6 pages Dynamic website with Parts enquiry module:\\r\\n\",\"Domain & Hosting for 1 Year\",\"5 E-mail Id Configuration\"]', '', 'Sky Autoparts', 0, 'Waiting For Approval', '9%', 2430, '9%', 2430, '18%', 0, 27000, '2019-09-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-23 17:03:56', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka 560061', '0000-00-00 00:00:00', '[\"22000\",\"3000\",\"2000\"]', 'Within State', 'tax', 631, 'Account'), (246, 2762, '2019-08-24', 0, '0000-00-00', '', '2197', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.For 3 Website it will cost you 12000*3=36000+GST=42480/-', '[\"5 Page Dynamic website with logo\\r\\nDomain\\r\\nHosting for 1 year\\r\\nMaintanance\"]', '', 'Zafar Iqbal', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-09-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-24 15:30:17', 'Vijayabank Layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (247, 0, '2019-08-24', 0, '0000-00-00', '', '2198', '9440', '1.50% of payment initially and remaining after completion of project\r\n2.For 6-7 Pages of Dynamic website,Domain,Hosting for one year.Price:13560+GST=16000/-', '[\"6-7 Pages of Static website\\r\\nDomain\\r\\nHosting for one year\\r\\n\"]', '', 'Andrew Anthony', 0, 'Waiting For Approval', '', 0, '9%', 0, '18%', 0, 8000, '2019-09-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-24 15:49:18', '#6/20,2nd cross,St.Thomas town,Lingarajpuram Bangalore Karnataka 84', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 669, 'Account'), (248, 2778, '2019-08-26', 0, '0000-00-00', '', '2199', '35400', '1.50% of payment initially and remaining after completion of project', '[\"E-commerce website with payment gateway\"]', '', 'Devleena', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-09-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-26 15:45:12', 'Richmond town Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 0, 'Lead'), (249, 1640, '2019-08-26', 0, '0000-00-00', '', '2200', '27140', '100% of payment to be done', '[\"Server Renewal- 6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 0, '18%', 0, 23000, '2019-09-10', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:28:21', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (250, 2785, '2019-08-26', 0, '0000-00-00', '', '2201', '29500', '50% of payment initially and remaining after completion of project', '[\"E-Commerce website of online marketing of Egg\"]', '', 'Manikantha', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-09-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-26 17:56:51', 'BTM layout Bangalore karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (251, 0, '2019-08-26', 0, '0000-00-00', '', '2202', '11800', '100% of payment to be made', '[\"Instagram Management for month July and august @ Rs. 5000\\/month\"]', '', 'Visista', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-09-10', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-26 18:35:24', ' ', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 645, 'Account'), (252, 2787, '2019-08-27', 0, '0000-00-00', '', '2203', '17700', '50% of payment initially and remaining after completion of project', '[\"7 pages of Dynamic website with\\r\\nDomain\\r\\nHosting for one year\"]', '', 'Pradeep', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-09-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-27 13:25:53', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (253, 1641, '2019-08-27', 0, '0000-00-00', '', '2204', '27140', '100% payment to be done', '[\"Server renewal-6 months\\r\\n(28-8-2019 to 28-2-2020)\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 0, '18%', 0, 23000, '2019-09-11', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:28:12', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (254, 2798, '2019-08-29', 0, '0000-00-00', '', '2205', '11800', '1.50% of payment initially and remaining after completion of project\r\n2.7 Page Dynamic website with wordpress price: 13000+GST', '[\"7 Pages of Static website (wordpress)with\\r\\nDomain\\r\\nHosting one year\"]', '', 'Anushankar', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-09-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-29 17:32:54', 'Basaveshwara nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (255, 2809, '2019-08-31', 0, '0000-00-00', '', '2206', '29500', '50% of payment initially and remaining after completion of project', '[\"6 pages Dynamic website (one time )development with Enquiry form\",\"U.S Hosting for one year\",\"SSL Certificate for one year\",\"10 E-mail Id with 5 GB Space (each cost 500Rs)\"]', '', 'Ravi Varma', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-09-15', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-08-31 17:09:33', 'Kammanhalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\",\"4000\",\"4000\",\"5000\"]', 'Within State', 'tax', 0, 'Lead'), (256, 2826, '2019-09-05', 0, '0000-00-00', '', '2207', '7080', '50% of payment initially and remaining after completion of project', '[\"Single page static website design with .\\r\\nDomain for one year\\r\\nHosting for one year\"]', '', 'Krishnakumar', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2019-09-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-05 12:35:18', 'Vijayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (257, 2825, '2019-09-05', 0, '0000-00-00', '', '2208', '12980', '50% of payment initially and remaining after completion of project', '[\"5 page Static website and 2 forms\"]', '', 'Lokeshappa', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2019-09-20', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-05 16:11:20', 'R T Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"11000\"]', 'Within State', 'tax', 0, 'Lead'), (258, 2825, '2019-09-05', 0, '0000-00-00', '', '2209', '60180', '50% of payment initially and remaining after completion of project', '[\"Website 1: \\r\\n5 page static website with 2 forms(Resume & Enquiry forms): \",\"Website 2: \\r\\nWeb application with 5 pages of static website: \"]', '', 'Lokeshappa', 0, 'Waiting For Approval', '9%', 4590, '9%', 0, '18%', 0, 51000, '2019-09-20', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:28:00', 'R T Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"11000\",\"40000\"]', 'Within State', 'tax', 0, 'Lead'), (259, 2831, '2019-09-06', 0, '0000-00-00', '', '2210', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.For 2 dynamic website with domain & Hosting for 1 year cost = 18000+GST(Each 9000+GST)=21240/-', '[\"3-4 pages of static website for Mineral water factory with Domain for one year\\r\\nHosting for one year\\r\\nEach\",\"3-4 pages of static website for Electrical shop with \\r\\nDomain for one year \\r\\nHosting for one year\"]', '', 'Praveen ', 0, 'Waiting For Approval', '9%', 1080, '9%', 0, '18%', 0, 12000, '2019-09-21', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:27:45', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"6000\",\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (260, 2824, '2019-09-06', 0, '0000-00-00', '', '2211', '106200', '50% of payment initially and remaining after completion of project', '[\"E-commerce website with Android Application \"]', '', 'Iphiyash', 0, 'Waiting For Approval', '9%', 8100, '9%', 8100, '18%', 0, 90000, '2019-09-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-06 12:40:41', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"90000\"]', 'Within State', 'tax', 0, 'Lead'), (261, 0, '2019-09-06', 0, '0000-00-00', '', '2212', '29500', '50% of payment initially and remaining after completion of project', '[\"OTP SMS API-10000 Nos\",\"Service charges\",\"Wallet payment integration\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '9%', 2250, '9%', 0, '18%', 0, 25000, '2019-09-21', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:27:25', ' Bangalore ', '0000-00-00 00:00:00', '[\"2000\",\"3000\",\"20000\"]', 'Within State', 'tax', 651, 'Account'), (262, 2845, '2019-09-09', 0, '0000-00-00', '', '2213', '14160', '50% of payment initially and remaining after completion of project', '[\"5 pages of dynamic website with Domain & Hosting for 1 year \"]', '', 'Naveen ', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-09-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-09 18:39:51', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (263, 2844, '2019-09-09', 0, '0000-00-00', '', '2214', '106200', '50% of payment initially and remaining after completion of project', '[\"Recruitment portal\"]', '', 'Poornima ', 0, 'Waiting For Approval', '9%', 8100, '9%', 8100, '18%', 0, 90000, '2019-09-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-09 18:40:55', 'Bannerghatta Road Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"90000\"]', 'Within State', 'tax', 0, 'Lead'), (264, 2738, '2019-09-11', 0, '0000-00-00', '', '2215', '59000', '50% of payment initially and remaining after completion of project', '[\"New Requirement for Application Feel Good Moments\"]', '', 'Krishnan NS', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2019-09-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-11 12:06:34', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka 560098', '0000-00-00 00:00:00', '[\"50000\"]', 'Within State', 'tax', 656, 'Account'), (265, 2854, '2019-09-11', 0, '0000-00-00', '', '2216', '8260', '50% of payment initially and remaining after completion of project', '[\"2-3 Pages of Static website\\r\\nDomain for 1 Year\\r\\nHosting for 1 Year\"]', '', 'Kamath', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2019-09-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-11 12:15:16', 'Electronic city Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 0, 'Lead'), (266, 0, '2019-09-12', 0, '0000-00-00', '', '2217', '14160', '50% of payment initially and remaining after completion of project', '[\"Dynamic website upto 10 pages\"]', '', 'Dsign experts', 0, 'Waiting For Approval', '9%', 1080, '9%', 0, '18%', 0, 12000, '2019-09-27', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:27:15', '#1H201, Arya Hamsa Towersl, 80ft road, 8th phase J P Nagar, Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 256, 'Account'), (267, 2860, '2019-09-13', 0, '0000-00-00', '', '2218', '14160', '50% of payment initially and remaining after completion of project', '[\"5 pages of Dynamic website with\\r\\nDomain for 1 year\\r\\nHosting for 1 year\"]', '', 'Sai', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-09-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-13 12:53:02', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (268, 2818, '2019-09-13', 0, '0000-00-00', '', '2219', '29500', '50% of payment initially and remaining after completion of project', '[\"Custom E-commerce demo application\"]', '', 'Raghu ', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-09-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-13 18:05:29', 'Banashankari Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (269, 2863, '2019-09-14', 0, '0000-00-00', '', '2220', '11800', '50% of payment initially and remaining after completion of project', '[\"5 pages of Static website includes\\r\\nWebsite Design\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nSocial media integration\\r\\nGoogle map\\r\\n\"]', '', 'Mohammed', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-09-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-14 12:57:50', 'Jayanagar 7 th Block Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (270, 2870, '2019-09-17', 0, '0000-00-00', '', '2221', '35400', '50% of payment initially and remaining after completion of project', '[\"SRS Document-Business Analyst(1 nos) for 1 month\"]', '', 'Vishwas', 0, 'Waiting For Approval', '9%', 2700, '9%', 0, '18%', 0, 30000, '2019-10-02', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:26:58', ' Dona Paula Goa 0', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 0, 'Lead'), (271, 2866, '2019-09-18', 0, '0000-00-00', '', '2222', '15340', '50% of payment initially and remaining after completion of project', '[\"5 pages of Dynamic website includes\\r\\nWebsite Design\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\n1 year maintanance\\r\\n5 E-mail id\\r\\nSocial media integration\"]', '', 'Diwakar', 0, 'Waiting For Approval', '9%', 1170, '9%', 0, '18%', 0, 13000, '2019-10-03', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:26:48', 'ITPL main road Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 0, 'Lead'), (272, 0, '2019-09-18', 4, '0000-00-00', '', '2223', '17700', '100% payment to be released', '[\"Facebook live video integration for current website along with plugin\"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-10-03', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-18 12:47:48', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 0, 'Potential'), (273, 2871, '2019-09-19', 0, '0000-00-00', '', '2224', '21240', '1.50% of payment initially and remaining after completion of project\r\n2.For web application Pricing:60000+GST', '[\"5 page of Dynamic website includes\\r\\nDesign\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nLogo\\r\\nPayment gateway\\r\\nSocial media integration\"]', '', 'Jaffer ', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-10-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-19 11:43:54', 'HBR Layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (274, 2848, '2019-09-20', 0, '0000-00-00', '', '2225', '100300', '50% of payment initially and remaining after completion of project', '[\"Event booking application with payment gateway.\"]', '', 'Praveen ', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2019-10-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-20 11:11:28', 'Rajajinagar Bangalore karnataka 0', '0000-00-00 00:00:00', '[\"85000\"]', 'Within State', 'tax', 0, 'Lead'), (275, 0, '2019-09-20', 0, '0000-00-00', '', '2226', '35400', '50% of payment initially and remaining after completion of project', '[\"Compiling,Editing,Uploading of Images to Instagram account with Caption & Hash Tagging\"]', '', 'Visista', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2019-10-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-20 11:51:47', ' ', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 645, 'Account'), (276, 2887, '2019-09-21', 0, '0000-00-00', '', '2227', '15340', '50% of payment initially and remaining after completion of project', '[\"5-10 pages of Dynamic website Includes\\r\\nWebsite design\\r\\ndomain for 1 year\\r\\nHosting for 1 year\\r\\nMaintanance for 1 year\\r\\nSocial meadia links integration\\r\\nEmai Id\"]', '', 'Annappa ', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-10-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-21 14:12:03', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 0, 'Lead'), (277, 2889, '2019-09-21', 0, '0000-00-00', '', '2228', '21240', '50% of payment initially and remaining after completion of project', '[\"Dynamic website(10 Pages)\"]', '', 'Rajendran', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-10-06', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-21 15:58:36', ' Bangalore Karnatak 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (278, 2899, '2019-09-24', 0, '0000-00-00', '', '2229', '15340', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nwebsite Design\\r\\nSocial media links integration\\r\\nGoogle map\\r\\n5 E-mail Id\\r\\nMaintenance 1 year \\r\\n\"]', '', 'Asha ', 0, 'Waiting For Approval', '9%', 1170, '9%', 0, '18%', 0, 13000, '2019-10-09', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:26:33', 'Konanakunte Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 0, 'Lead'), (279, 2901, '2019-09-24', 0, '0000-00-00', '', '2230', '8260', '50% of payment initially and remaining after completion of project', '[\"5 pages of static website\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nwebsite design\\r\\n3 E-mail Id\\r\\nSocial media links integration\\r\\nGoogle map\\r\\nMaintenance\\r\\n\"]', '', 'Mallikriayan', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2019-10-09', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-24 11:16:33', 'Basavanagudi Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 0, 'Lead'), (280, 0, '2019-09-24', 0, '0000-00-00', '', '2231', '23010', '50% of payment initially and remaining after completion of project', '[\"5 professional email ids\",\"Email portal with different email ids\"]', '', 'SGL Properties', 0, 'Waiting For Approval', '9%', 1755, '9%', 0, '18%', 0, 19500, '2019-10-09', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:26:19', '#26/ Hosur road, Bommanahalli, 1st & 2nd floor Ibis Hotel Bengaluru Karnataka 560068', '0000-00-00 00:00:00', '[\"12500\",\"7000\"]', 'Within State', 'tax', 671, 'Account'), (281, 2891, '2019-09-25', 0, '0000-00-00', '', '2232', '13924', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of Dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nWebsite Design\\r\\nSocial media link integration\\r\\nGoogle map\\r\\nMaintenance 1 year\",\"Whatsapp chat\"]', '', 'Ravi kumar ', 0, 'Waiting For Approval', '9%', 1062, '9%', 1062, '18%', 0, 11800, '2019-10-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-25 12:49:44', 'Vijayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\",\"1800\"]', 'Within State', 'tax', 0, 'Lead'), (282, 0, '2019-09-25', 0, '0000-00-00', '', '2233', '88500', '60% of payment initially and remaining befoe delivery of the project', '[\"Travel packages website with enquiry and management of packages\",\"Hosting with SSL certificate\"]', '', 'Princy', 0, 'APPROVED', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2019-10-10', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-25 14:50:55', '#24, \"Balaji Plaza\" 2nd floor, 2nd cross, Kirloskar HBCS 2nd stage, Basaveshvara nagar Bangalore Karnataka 560079', '0000-00-00 00:00:00', '[\"72000\",\"3000\"]', 'Within State', 'tax', 674, 'Account'), (283, 4, '2019-09-27', 0, '0000-00-00', '', '2234', '64153', '50% of payment initially and remaining after completion of the project.', '[\"Demo\",\"D4\",\"D43\"]', '', 'Hemanth', 0, 'APPROVED', '9%', 4893, '9%', 0, '18%', 0, 54367, '2019-10-12', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:25:43', 'sdsafdsfed Bangalore Karnatka 123456', '0000-00-00 00:00:00', '[\"22000\",\"30000\",\"2367\"]', 'Within State', 'tax', 0, 'Lead'), (284, 0, '2019-09-27', 0, '0000-00-00', '', '2235', '14160', '50% of payment initially and remaining after completion of project', '[\"5 Pages of Static Website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nDesign\\r\\nLogo\\r\\nEnvelop\\r\\nLetter head\\r\\nVisiting Card\\r\\n\"]', '', 'Nuthan Kumar K S', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-10-12', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-09-27 15:43:17', '#237/8,2nd floor , \" Sri Vinayaka Nilaya\",Kethiganahalli Road Bidadi,Ramanagar Karnataka 562109', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 675, 'Account'), (285, 2914, '2019-09-27', 0, '0000-00-00', '', '2236', '28320', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website Includes\\r\\nDomain for 1 year\\r\\nHosting for 1 Year\\r\\nWebsite Design\\r\\nGoogle map\\r\\nSocial media link integration\\r\\n1 year maintenance(2 nos)\\r\\n\"]', '', 'Neena', 0, 'Waiting For Approval', '9%', 2160, '9%', 0, '18%', 0, 24000, '2019-10-12', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:25:25', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"24000\"]', 'Within State', 'tax', 0, 'Lead'), (286, 2738, '2019-10-01', 0, '0000-00-00', '', '2237', '88500', '50% of payment initially and remaining after completion of project', '[\"Additional Requirements for application\"]', '', 'Feel Good Moments', 0, 'Waiting For Approval', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2019-10-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-01 12:37:46', '#44, 3rd cross, Sachidananda nagar, RR Nagar Bangalore Karnataka 560098', '0000-00-00 00:00:00', '[\"75000\"]', 'Within State', 'tax', 656, 'Account'); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (287, 0, '2019-10-03', 0, '0000-00-00', '', '2238', '37002', '50% of payment initially and remaining after completion of project', '[\"Bidding Application\"]', '', 'Intiprocure', 0, 'Waiting For Approval', '9%', 2822, '9%', 2822, '18%', 0, 31358, '2019-10-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-03 13:39:49', '#156, 5Th Main, 1st Phase, Manjunatha Nagar, Rajajinagar Bangalore Karnataka 560010', '0000-00-00 00:00:00', '[\"31358\"]', 'Within State', 'tax', 519, 'Account'), (288, 0, '2019-10-04', 0, '0000-00-00', '', '2239', '20060', '50% of payment initially and remaining after completion of project', '[\"Dynamic Website Upto 10 Pages\\r\\nDomain for 1 Year\\r\\nHosting for 1 year\"]', '', 'chickpetdonnebiryanihouse', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2019-10-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-04 11:43:55', '#480/1, Ground Floor, 50 feet road, Nagedhra block, Near PES College, Shrinagara, Bangalore Karnataka 560050', '0000-00-00 00:00:00', '[\"17000\"]', 'Within State', 'tax', 523, 'Account'), (289, 0, '2019-10-10', 0, '0000-00-00', '', '2240', '53100', '100% advance payment', '[\"Additional Changes towards ABP portal\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-10-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-10 13:13:48', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 197, 'Account'), (290, 2920, '2019-10-10', 0, '0000-00-00', '', '2241', '64900', '50% of payment initially and remaining after completion of project', '[\"Custom website with pdf viewer and video download\"]', '', 'Srinath ', 0, 'Waiting For Approval', '9%', 4950, '9%', 4950, '18%', 0, 55000, '2019-10-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-10 14:07:54', 'Malleshwaram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"55000\"]', 'Within State', 'tax', 0, 'Lead'), (291, 2936, '2019-10-09', 0, '0000-00-00', '', '2242', '8500', '50% of payment initially and remaining after completion of project', '[\"Static website\",\"Profile\"]', '', 'Vivek Tours and Travels', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 0, '2019-10-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-10 16:38:35', 'Malleshwaram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"6000\",\"2500\"]', '', 'no_tax', 677, 'Account'), (292, 2940, '2019-10-11', 0, '0000-00-00', '', '2243', '413000', '50% of payment initially and remaining after completion of project', '[\"E-commerce website with Android & IOS Application\"]', '', 'Nanda ', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2019-10-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-11 13:32:37', 'Nagarabhavi Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"350000\"]', 'Within State', 'tax', 0, 'Lead'), (293, 2946, '2019-10-11', 0, '0000-00-00', '', '2244', '32000', '100% advance to be paid', '[\"Digital Marketing for October-2019\"]', '', 'Suresh', 0, 'Waiting For Approval', '9%', 2441, '9%', 2441, '18%', 0, 27118, '2019-10-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-11 20:24:25', '#1141, 2nd and 3rd Floor, BEML Layout,3rd Stage, RR Nagar, Jn Road Bangalore Karnataka 560098', '0000-00-00 00:00:00', '[\"27118\"]', 'Within State', 'tax', 0, 'Lead'), (294, 0, '2019-10-15', 0, '0000-00-00', '', '2245', '25960', '50% of payment initially and remaining after completion of project', '[\"Changes to website\",\"4 blog post per month\",\"Chatbot per month charges\"]', '', 'DR JaiKrishna', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2019-10-30', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-15 16:52:07', ' Bengaluru ', '0000-00-00 00:00:00', '[\"8000\",\"6000\",\"8000\"]', 'Within State', 'tax', 395, 'Account'), (295, 2967, '2019-10-16', 0, '0000-00-00', '', '2246', '14160', '50% of payment initially and remaining after completion of project', '[\"5-6 pages of Dynamic website with domain & Hosting for 1 year\"]', '', 'Deepak jain ', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-10-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-16 10:48:17', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (296, 0, '2019-10-16', 0, '0000-00-00', '', '2247', '12862', '50% of payment initially and remaining after completion of project', '[\"5 Pages of Static website with Domain for 1 Year \\r\\nHosting for 1 year\\r\\n\"]', '', ' Megha Welfare Association ', 0, 'Waiting For Approval', '9%', 981, '9%', 0, '18%', 0, 10900, '2019-10-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-25 15:19:29', 'Kathriguppe Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10900\"]', 'Within State', 'tax', 685, 'Account'), (297, 2752, '2019-10-16', 0, '0000-00-00', '', '2248', '6490', '50% of payment initially and remaining after completion of project', '[\"25 E-mail Id\\r\\n(Per E-mail Id 5 GB Storage)\"]', '', 'The Chief Traders ', 0, 'Waiting For Approval', '9%', 495, '9%', 0, '18%', 0, 5500, '2019-10-31', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:24:56', 'Electronic city,Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"5500\"]', 'Within State', 'tax', 658, 'Account'), (298, 2752, '2019-10-16', 0, '0000-00-00', '', '2248', '6490', '50% of payment initially and remaining after completion of project', '[\"25 E-mail Id\\r\\n(Per E-mail Id 5 GB Storage)\"]', '', 'The Chief Traders ', 0, 'Waiting For Approval', '9%', 495, '9%', 495, '18%', 0, 5500, '2019-10-31', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2019-10-16 13:39:45', 'Electronic city,Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"5500\"]', '', 'no_tax', 658, 'Account'), (299, 0, '2019-10-17', 0, '0000-00-00', '', '2249', '15340', '1.Content should be provided in word document and high quality images\r\n2.50% of payment initially and remaining after completion of project', '[\" Broucher design(500*26)\\r\\n(Rs.500\\/- per Page)\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-11-01', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-17 13:25:30', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 197, 'Account'), (300, 2960, '2019-10-17', 0, '0000-00-00', '', '2250', '12000', '50% of payment initially and remaining after completion of project', '[\"static Website development\"]', '', 'Nalini ', 0, 'Waiting For Approval', '9%', 915, '9%', 915, '18%', 0, 10170, '2019-11-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-17 16:03:52', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10170\"]', 'Within State', 'tax', 679, 'Account'), (301, 2975, '2019-10-18', 0, '0000-00-00', '', '2251', '12980', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website\"]', '', ' Paneetha Consulting Engineering ', 0, 'Waiting For Approval', '9%', 990, '9%', 0, '18%', 0, 11000, '2019-11-02', 'Admin', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 19:24:12', 'Nagarabhavi,Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"11000\"]', 'Within State', 'tax', 681, 'Account'), (302, 2979, '2019-10-18', 0, '0000-00-00', '', '2252', '70800', '50% of payment initially and remaining after completion of project', '[\"Standard Matrimonial Apllication\"]', '', 'Shashank', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2019-11-02', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-18 15:25:09', 'Indiranagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 0, 'Lead'), (303, 2902, '2019-10-22', 0, '0000-00-00', '', '2253', '8260', '50% of payment initially and remaining after completion of project', '[\"Re-design of static website\"]', '', 'Shalini ', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2019-11-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 12:43:05', 'J P Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 0, 'Lead'), (304, 2989, '2019-10-22', 0, '0000-00-00', '', '2254', '14160', '50% of payment initially and remaining after completion of project', '[\"Dynamic website\"]', '', 'Sri Maruthi Enterprise', 0, 'Waiting For Approval', '9%', 1080, '9%', 0, '18%', 0, 12000, '2019-11-06', 'Ajay', 'WAITING', 'INACTIVE', 'Quotation', '2019-10-22 17:34:41', 'Nayandahalli,Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 683, 'Account'), (305, 2989, '2019-10-22', 0, '0000-00-00', '', '2254', '12000', '50% of payment initially and remaining after completion of project', '[\"Dynamic website\"]', '', 'Sri Maruthi Enterprises', 0, 'Waiting For Approval', '9%', 1080, '9%', 0, '18%', 0, 12000, '2019-11-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-25 15:24:54', 'Nayandahalli,Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 683, 'Account'), (306, 2989, '2019-10-22', 0, '0000-00-00', '', '2255', '14160', '50% of payment initially and remaining after completion of project', '[\"Website Development\"]', '', 'Sri Maruthi Enterprises', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-11-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-22 18:04:08', 'Nayandahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 683, 'Account'), (307, 2991, '2019-10-23', 0, '0000-00-00', '', '2256', '14000', '50% of payment initially and remaining after completion of project', '[\"Static website\",\"Google adwords\"]', '', 'Karthik Enterprises', 0, 'Waiting For Approval', '9%', 1260, '9%', 0, '18%', 0, 14000, '2019-11-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-25 15:25:32', 'Banasawadi,Bangalore-Karnataka,', '0000-00-00 00:00:00', '[\"6000\",\"8000\"]', 'Within State', 'tax', 684, 'Account'), (308, 0, '2019-10-26', 0, '0000-00-00', '', '2257', '4130', '100% payment in advance', '[\"Domain and Hosting renewals of Visavi Foods for 2019-20\"]', '', 'VISAVI FOOD VENTURES', 0, 'Waiting For Approval', '9%', 315, '9%', 315, '18%', 0, 3500, '2019-11-10', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-26 13:51:35', 'N0.372,university layout, ringroad, Mysore-570023 mysore karnataka 570023 ', '0000-00-00 00:00:00', '[\"3500\"]', 'Within State', 'tax', 515, 'Account'), (309, 0, '2019-10-26', 0, '0000-00-00', '', '2258', '70800', '50% of payment initially and remaining after completion of project', '[\"ERP Enhancement-\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 5400, '9%', 0, '18%', 0, 60000, '2019-11-10', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-30 12:32:05', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 169, 'Account'), (310, 3008, '2019-10-30', 0, '0000-00-00', '', '2259', '295000', '50% of payment initially and remaining after completion of project', '[\"B2B & B2C Solutions for Saloons(Web application & Android application)\"]', '', 'Akhil Chawla', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 45000, 250000, '2019-11-14', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-30 12:18:52', 'Madhya Pradesh Madhya Pradesh Madhya Pradesh 0', '0000-00-00 00:00:00', '[\"250000\"]', 'Out of State', 'tax', 0, 'Lead'), (311, 0, '2019-10-31', 0, '0000-00-00', '', '2260', '18880', '50% of payment initially and remaining after completion of project', '[\"Re-designing of the website\\r\\n(Happy Garden)\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 1440, '9%', 1440, '18%', 0, 16000, '2019-11-15', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-10-31 16:06:02', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '0000-00-00 00:00:00', '[\"16000\"]', 'Within State', 'tax', 102, 'Account'), (312, 2952, '2019-10-31', 0, '0000-00-00', '', '2261', '20000', '50% of payment initially and remaining after completion of project', '[\"Dynamic website with logo\"]', '', 'TOBIK LIFELINE NIG.LTD', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 20000, '2019-11-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-04 15:38:34', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '0000-00-00 00:00:00', '[\"20000\"]', '', 'no_tax', 686, 'Account'), (313, 3032, '2019-11-06', 0, '0000-00-00', '', '2262', '27140', '50% of payment initially and remaining after completion of project', '[\"20 Pages of dynamic website\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nGoogle map\\r\\nDesign concepts\\r\\nSEO Friendly\\r\\nContact form\\r\\nCross browser compatible\\r\\nSocial media integaration\\r\\nGoogle indexing\\r\\nGoogle analytics\\r\\nImage slider-2\\r\\nE- mail -20\\r\\nBlog\\r\\n\\r\\n\"]', '', 'Ahmed', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2019-11-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-06 11:41:51', 'Koramanagala Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (314, 3036, '2019-11-08', 0, '0000-00-00', '', '2263', '70800', '50% of payment initially and remaining after completion of project', '[\"E-commerce website for 6 Categories with Payment gateway\"]', '', 'Yugender ', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2019-11-23', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-08 17:54:02', 'Ramamurthy nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 0, 'Lead'), (315, 0, '2019-11-11', 0, '0000-00-00', '', '2264', '53100', '100% payment in advance', '[\"SEO Friendly website with Blog integration\",\"Balance payment WRT SSL Certificate\"]', '', 'Account Bazaar', 0, 'Waiting For Approval', '9%', 4050, '9%', 0, '18%', 0, 45000, '2019-11-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-11 12:10:28', ' Bangalore ', '0000-00-00 00:00:00', '[\"40000\",\"5000\"]', 'Within State', 'tax', 651, 'Account'), (316, 2907, '2019-11-11', 0, '0000-00-00', '', '2265', '6490', '100% of payment as advance', '[\"Linux Hosting for 1 year\",\"SSL Certificate for 1 year\"]', '', 'Narayani Holidays and Conferences Pvt Ltd', 0, 'Waiting For Approval', '9%', 495, '9%', 495, '18%', 0, 5500, '2019-11-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-11 16:40:16', '#24, Bangalore Karnataka 560079', '0000-00-00 00:00:00', '[\"3500\",\"2000\"]', 'Within State', 'tax', 674, 'Account'), (317, 3037, '2019-11-14', 0, '0000-00-00', '', '2266', '21240', '50% of payment initially and remaining after completion of project', '[\"5 to 8 Pages of dynamic website with\\r\\n hosting for 1 year\\r\\nChat Bot\\r\\nContact form\\r\\nSocial media link integration\\r\\nGoogle map\"]', '', 'Kiran', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-11-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-14 13:33:33', 'HSR layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (318, 2907, '2019-11-14', 0, '0000-00-00', '', '2267', '44250', '50% of payment initially and remaining after completion of project', '[\"Final Payment towards website\"]', '', 'Narayani Holidays and Conferences Pvt Ltd', 0, 'Waiting For Approval', '9%', 3375, '9%', 3375, '18%', 0, 37500, '2019-11-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-14 14:08:03', '#24, Bangalore Karnataka 560079', '0000-00-00 00:00:00', '[\"37500\"]', 'Within State', 'tax', 674, 'Account'), (319, 3038, '2019-11-14', 0, '0000-00-00', '', '2268', '312700', '50% of payment initially and remaining after completion of project', '[\"Web application with admin & user login\",\"Mobile application \"]', '', 'Jaweed', 0, 'Waiting For Approval', '9%', 23850, '9%', 23850, '18%', 0, 265000, '2019-11-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-14 15:35:54', 'Brigade Road Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"165000\",\"100000\"]', 'Within State', 'tax', 0, 'Lead'), (320, 3039, '2019-11-14', 0, '0000-00-00', '', '2269', '149860', '50% of payment initially and remaining after completion of project', '[\"J-fiber soft product\"]', '', 'Essence Home Decor Pvt Ltd', 0, 'Waiting For Approval', '9%', 11430, '9%', 11430, '18%', 0, 127000, '2019-11-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-14 17:04:08', '#4/1,Bommanahalli industrial area,Hosur road,Bommanahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"127000\"]', 'Within State', 'tax', 687, 'Account'), (321, 0, '2019-11-20', 0, '0000-00-00', '', '2270', '708', '50% of payment initially and remaining after completion of project', '[\"Banner design\"]', '', 'Koncept Kreation', 0, 'Waiting For Approval', '9%', 54, '9%', 54, '18%', 0, 600, '2019-12-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-20 13:28:22', '1513, 17th B Main Rd, 5th Block, HBR Layout, Bengaluru, Karnataka 560043 Bangalore Karnataka 560043', '0000-00-00 00:00:00', '[\"600\"]', 'Within State', 'tax', 580, 'Account'), (322, 3054, '2019-11-21', 0, '0000-00-00', '', '2271', '495600', '50% of payment initially and remaining after completion of project', '[\"Web application & Android application\",\"IOS Application\"]', '', 'Arun', 0, 'Waiting For Approval', '9%', 37800, '9%', 37800, '18%', 0, 420000, '2019-12-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-21 11:52:50', 'Indiaranagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"350000\",\"70000\"]', 'Within State', 'tax', 0, 'Lead'), (323, 3051, '2019-11-21', 0, '0000-00-00', '', '2272', '295000', '50% of payment initially and remaining after completion of project', '[\"Customized B2B Web application \"]', '', 'Jennofer ', 0, 'Waiting For Approval', '9%', 22500, '9%', 22500, '18%', 0, 250000, '2019-12-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-21 11:59:35', 'Indiranagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"250000\"]', 'Within State', 'tax', 0, 'Lead'), (324, 0, '2019-11-25', 0, '0000-00-00', '', '2273', '354000', '50% of payment initially and remaining after completion of project', '[\"AMC for 1 year which includes\\r\\n1.support on the existing features \\r\\n\\r\\n2.200 Hrs of new developmental hours \\r\\n\\r\\n3.One dedicated resource is available to address any issues on existing features of the application\"]', '', 'Ess and Ess infrastructure pvt ltd', 0, 'Waiting For Approval', '9%', 27000, '9%', 0, '18%', 0, 300000, '2019-12-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-25 12:16:40', '#1112, G & H Block, Gaganachumbi Double Road, Kuvempunagar Mysore Karnataka ', '0000-00-00 00:00:00', '[\"300000\"]', 'Within State', 'tax', 297, 'Account'), (325, 3071, '2019-11-26', 0, '0000-00-00', '', '2274', '16520', '1.50% of payment initially and remaining after completion of project\r\n2.Social Media Marketing Package will be :15,000 per month', '[\"5-6 Pages Static website with Domain & Hosting,and Maintenance for 1 Year\",\"Logo Modification\"]', '', 'Raghavan', 0, 'Waiting For Approval', '9%', 1260, '9%', 0, '18%', 0, 14000, '2019-12-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-26 12:00:31', 'Kammanahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"11000\",\"3000\"]', 'Within State', 'tax', 0, 'Lead'), (326, 3072, '2019-11-26', 0, '0000-00-00', '', '2275', '5000', '50% of payment initially and remaining after completion of project', '[\"Website changes(Siri global solutions as Info care india global solutions)\"]', '', 'INFO CARE INDIA GLOBAL SOLUTIONS', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 5000, '2019-12-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-26 16:11:13', 'Bendrenagar,Kadirenahalli,Dr.Vishnuvardhana main road,BSK 2nd Stage Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"5000\"]', '', 'no_tax', 688, 'Account'), (327, 3073, '2019-11-26', 0, '0000-00-00', '', '2276', '16284', '50% of payment initially and remaining after completion of project', '[\"Dynamic website\",\"E-mail Id\"]', '', 'Ararat Group', 0, 'Waiting For Approval', '9%', 1242, '9%', 1242, '18%', 0, 13800, '2019-12-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-26 18:20:35', 'Madanayakanahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\",\"1800\"]', 'Within State', 'tax', 689, 'Account'), (328, 0, '2019-11-26', 0, '0000-00-00', '', '2277', '53100', '50% of payment initially and remaining after completion of project', '[\"SEO for one month\"]', '', 'Dr Madhusudhan(Smile Studio)', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-12-11', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-26 18:23:05', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 107, 'Account'), (329, 3079, '2019-11-28', 0, '0000-00-00', '', '2278', '29500', '50% of payment initially and remaining after completion of project', '[\"E-commerce website design and development\"]', '', 'Sathish Kumar', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-28 16:44:14', 'HRBR Layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (330, 3078, '2019-11-28', 0, '0000-00-00', '', '2279', '29500', '50% of payment initially and remaining after completion of project', '[\"E-commerce website design & development for food Industry\"]', '', 'Mohan ', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-28 17:54:58', 'Banashankari Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (331, 3059, '2019-11-29', 0, '0000-00-00', '', '2280', '94400', '50% of payment initially and remaining after completion of project', '[\"Matrimonial application \"]', '', 'Rohith ', 0, 'Waiting For Approval', '9%', 7200, '9%', 7200, '18%', 0, 80000, '2019-12-14', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-11-29 12:50:08', 'Ramamurthynagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"80000\"]', 'Within State', 'tax', 0, 'Lead'), (332, 3085, '2019-12-02', 0, '0000-00-00', '', '2281', '15340', '50% of payment initially and remaining after completion of project', '[\"8 Pages of Dynamic website in word press with domain & Hosting for 1 year\"]', '', 'Sumithra', 0, 'Waiting For Approval', '9%', 1170, '9%', 1170, '18%', 0, 13000, '2019-12-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-02 12:58:11', 'Kumarswamy layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"13000\"]', 'Within State', 'tax', 0, 'Lead'), (333, 3086, '2019-12-02', 0, '0000-00-00', '', '2282', '29500', '50% of payment initially and remaining after completion of project', '[\"Dynamic website with Booking engine including domain & Hosting for 1 year\"]', '', 'Chandrashekar', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-02 13:10:29', 'Patrahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (334, 3087, '2019-12-02', 0, '0000-00-00', '', '2283', '11800', '50% of payment initially and remaining after completion of project', '[\"Dynamic website including Domain,Hosting,design, development,and maintenance for 1 year\"]', '', 'Shivani', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2019-12-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-02 13:16:50', 'Basaveshwara nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (335, 3090, '2019-12-03', 0, '0000-00-00', '', '2284', '12980', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website with Hosting for 1 year,Design,Development and Maintenance for 1 year\"]', '', 'Kamalesh', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2019-12-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-03 13:59:38', 'Hennur Cross Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"11000\"]', 'Within State', 'tax', 0, 'Lead'), (336, 2756, '2019-12-03', 0, '0000-00-00', '', '2285', '9440', '50% of payment initially and remaining after completion of project', '[\"10000 Promotional SMS pack\\r\\nBangalore database of 20000 mobile number pack\"]', '', 'Vlight Services Private Limited', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2019-12-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-03 15:46:19', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 660, 'Account'), (337, 3091, '2019-12-03', 0, '0000-00-00', '', '2286', '21240', '50% of payment initially and remaining after completion of project', '[\"10 Pages of dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\ndesign concepts\\r\\ncross browser compatible\\r\\nContact form\\r\\nGoogle map\\r\\nSocial media links integration\\r\\nImage slider\"]', '', 'Nadiya', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-12-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-03 18:04:53', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (338, 3092, '2019-12-04', 0, '0000-00-00', '', '2287', '17700', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nDesign,Development and\\r\\nMaintenance for 1 year\",\"Google adwords\"]', '', 'Shekar', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2019-12-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-04 12:10:43', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"7000\",\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (339, 0, '2019-12-04', 0, '0000-00-00', '', '2288', '21240', '50% of payment initially and remaining after completion of project', '[\"Dynamic website with design,development,Hosting & Maintenance\"]', '', 'Arjun Ventures', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-12-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-04 17:02:10', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 182, 'Account'), (340, 3096, '2019-12-05', 0, '0000-00-00', '', '2289', '6000', '50% of payment initially and remaining after completion of project', '[\"3 Pages of static website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\n1 E-mail id\\r\\nDesign,development\"]', '', 'Srinivas', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 6000, '2019-12-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-05 11:24:16', 'Jayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"6000\"]', '', 'no_tax', 0, 'Lead'), (341, 3097, '2019-12-05', 0, '0000-00-00', '', '2290', '29500', '50% of payment initially and remaining after completion of project', '[\"Website includes the below pages\\r\\nHome\\r\\nConsultants\\r\\nScholars\\r\\nInitiatives\\r\\nClinical services\\r\\nNews letter\\r\\nPartners\\r\\nContact us\\r\\nResource material\\r\\nEvents\\r\\nNotice\\r\\n\"]', '', 'Geriatrics clinic and services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-05 13:27:11', 'Nimhans Hospital Bamgalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (342, 0, '2019-12-05', 0, '0000-00-00', '', '2291', '53100', '1.50% of payment initially and remaining after completion of project\r\n2.We Audit the current search volume in digital media & we increase the search volume by 200% in 1 to 2 \r\n months\r\n3. Rs.15,000/- of PPC will be added every month\r\n', '[\"Package details:Per Month\\r\\n1. 10-15 keyword optimisation \\r\\n2. Social media marketing. Weekly 2posts\\r\\n3. 4 Blogs per month \\r\\n4. Backlinks 50 per month \\r\\n5. Local SEO \\r\\n6. Adwords management \\r\\n7. Paid promotion management (social media) \\r\\n8. Fan base increasing -100 per month \\r\\n9. Monthly reporting\\r\\n10. Conversion optimization\\r\\n\"]', '', 'khincha dental centre', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2019-12-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-05 13:48:11', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka 560 004.', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 391, 'Account'), (343, 0, '2019-12-06', 0, '0000-00-00', '', '2292', '3540', '50% of payment initially and remaining after completion of project', '[\"Changes in website\\r\\n1.Remove contact number of 9811788955, 9798999911 from website, and put- 080-26667707 office landline number.\\r\\n2.Need to incorporate client logo as runner in footer section but it should be visible enough as anyone opens website.\\r\\n3.Career section : job opening with Job description(Project Manager, Sr. Clinical Research Associate, Clinical Research Associate\"]', '', 'Biosite India Pvt Ltd', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2019-12-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-06 11:32:12', 'jp nagar 7th phase Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 260, 'Account'), (344, 0, '2019-12-06', 0, '0000-00-00', '', '2293', '18000', '50% of payment initially and remaining after completion of project', '[\"Re-designing of dynamic website\"]', '', 'Sri Ganesha Ventures', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 18000, '2019-12-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-06 13:34:31', 'No. 47, Ground Floor, 5th \'B\' Block, 34th main, Bhavani H.B.C.S Layout, B.S.K-3 Stage Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"18000\"]', '', 'no_tax', 182, 'Account'), (345, 2890, '2019-12-10', 0, '0000-00-00', '', '2294', '8000', '50% of payment initially and remaining after completion of project', '[\"Adwords\"]', '', 'Manju ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2019-12-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-10 10:51:09', 'Vijayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', '', 'no_tax', 0, 'Lead'), (346, 0, '2019-12-10', 66, '0000-00-00', '', '2295', '53100', '50% of payment initially and remaining after completion of project', '[\"Customized application with following features:\\r\\n1.registration module \\r\\n2.Consultation module \\r\\n3.Prescription module \\r\\n4.Billing Module\\r\\n5.reports also included\"]', '', 'Hemanth Naik', 0, 'Waiting For Approval', '9%', 4050, '9%', 0, '18%', 0, 45000, '2019-12-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-10 12:39:14', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 0, 'Potential'), (347, 0, '2019-12-10', 0, '0000-00-00', '', '2296', '3776', '50% of payment initially and remaining after completion of project', '[\"Hosting charges for 1 year and AMC for 1 year\"]', '', 'Yuva Sene', 0, 'Waiting For Approval', '9%', 288, '9%', 0, '18%', 0, 3200, '2019-12-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-10 13:32:40', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '0000-00-00 00:00:00', '[\"3200\"]', 'Within State', 'tax', 520, 'Account'), (348, 0, '2019-12-10', 0, '0000-00-00', '', '2297', '30200', '50% of payment initially and remaining after completion of project', '[\"Project final payment\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2303, '9%', 2303, '18%', 0, 25594, '2019-12-25', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2019-12-10 14:08:23', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"25594\"]', 'Within State', 'tax', 169, 'Account'), (349, 3106, '2019-12-11', 0, '0000-00-00', '', '2297', '29500', '50% of payment initially and remaining after completion of project', '[\"E-commerce website for Vegetables\"]', '', 'Naveen', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2019-12-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-11 17:11:29', '#125,126,1st floor Abalashram Building,Basavanagudi Bangalore Karnataka 560004', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (350, 3110, '2019-12-12', 0, '0000-00-00', '', '2298', '14160', '50% of payment initially and remaining after completion of project', '[\"5 pages of static website including Domain for 1 year & Hosting for 1 year, Design,development & Maintenance for 1 year\"]', '', 'Salim', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2019-12-27', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-12 13:57:06', 'Mathikere Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (351, 3115, '2019-12-12', 0, '0000-00-00', '', '2299', '35400', '50% of payment initially and remaining after completion of project', '[\"event management software with payment gateway\"]', '', 'VSP ENTERTAINMENT PVT LTD', 0, 'Waiting For Approval', '9%', 2700, '9%', 0, '18%', 0, 30000, '2019-12-27', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-13 16:34:22', ' 1ST FLOOR,CH-40,,4TH CROSS,New Model house,Ashokpuram,Mysore South\r\n Mysore', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 690, 'Account'), (352, 3085, '2019-12-13', 0, '0000-00-00', '', '2300', '21240', '1.50% of payment initially and remaining after completion of project\r\n2.AMC charges will be 5000+tax from 2nd year', '[\"15pages of static website includes Domain for 1 year,Hosting for 1 year and Maintenance for 1 year,design & development\"]', '', 'Umashankar', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-12-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-13 11:27:51', 'Kumarswamy layout Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (353, 0, '2019-12-16', 0, '0000-00-00', '', '2301', '28320', '50% of payment initially and remaining after completion of project', '[\"Features:\\r\\n\\u2022Professionally Designed Pages\\r\\n\\u2022Up to 3 design revisions for Homepage\\r\\n\\u2022Fully responsive website\\r\\n\\u2022Easy Content Management System\\r\\n\\u2022 Unlimited Pages Management\\r\\n\\u2022 Text Content\\r\\n\\u2022 Links\\r\\n\\u2022 Menu Management\\r\\n\\u2022 Images\\r\\n\\u2022 Videos\\r\\n\\u2022 Gallery\\u2019s\\r\\n\\u2022Product Management System\\r\\n\\u2022Search Engine Submission\\r\\n\\u2022Google Maps\\r\\n\\u2022Integrated careers module\\r\\n\\u2022Contact Form Module\\r\\n\\u2022Inquiry Form Module\\r\\n\\u2022Social Media widgets\\r\\n\\u2022Blog and News Module\\r\\n\\u2022Newsletter Module\\r\\n\\u2022Cross Browser & Device Testing and Compatibility\\r\\n\\u2022Upgrade to a bigger package as our business grows\\r\\n\\r\\nService & Product Management System\\r\\n\\u2022Add New Services or Product\\r\\n\\u2022Edit \\/\\/ Delete Service Product\\r\\n\\u2022Service Management with updates\\r\\n\\u2022Service Category Management\\r\\n\\u2022Service Or Product Details\\r\\n\\u2022Service or Product Inquiry Management\\r\\n\\r\\nProject Development Procedure\\r\\n\\u2022 On the basis of website content, two website mockup designs has to be provided.\\r\\n\\u2022 After the discussions and given approval, you have to move towards HTML and CSS.\\r\\n\\u2022 After our Approval on HTML you have to start the development.\\r\\n\\u2022 After QA & approval the site will be move to live server from the staging.\\r\\n\"]', '', 'THRISHANKU TECHNOLOGIES PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2160, '9%', 2160, '18%', 0, 24000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-24 12:17:13', '#324,2nd Floor,1st Cross,Lalbahadur nagar,\'B\' Channasandra , Kasturinagar , Bangalore - 560043', '0000-00-00 00:00:00', '[\"24000\"]', 'Within State', 'tax', 693, 'Account'), (354, 3118, '2019-12-16', 0, '0000-00-00', '', '2302', '76700', '50% of payment initially and remaining after completion of project', '[\"Healthcare application development\",\"Additional requirement and Domain charges\",\"Server Charges\"]', '', 'Dayakar Poly clinic', 0, 'Waiting For Approval', '9%', 5850, '9%', 5850, '18%', 0, 65000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-17 11:21:14', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00 00:00:00', '[\"45000\",\"12000\",\"8000\"]', 'Within State', 'tax', 691, 'Account'), (355, 3110, '2019-12-16', 0, '0000-00-00', '', '2303', '1062000', '50% of payment initially and remaining after completion of project', '[\"Education portal As shown in demo in your brand\"]', '', 'Salim', 0, 'Waiting For Approval', '9%', 81000, '9%', 81000, '18%', 0, 900000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-16 13:36:30', 'Mathikere Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"900000\"]', 'Within State', 'tax', 0, 'Lead'), (356, 3119, '2019-12-16', 0, '0000-00-00', '', '2304', '59000', '1.50% of payment initially and remaining after completion of project\r\n2.Web app with android application will cost you = Rs.1,77,000/-(Including tax)', '[\"Matrimonial web application design & development\"]', '', 'Pradeep', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-16 14:10:25', 'Opposite to ESI hospital,Rajajinagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"50000\"]', 'Within State', 'tax', 0, 'Lead'), (357, 0, '2019-12-16', 0, '0000-00-00', '', '2305', '41300', '50% of payment initially and remaining after completion of project', '[\"New updation in the application\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 3150, '9%', 0, '18%', 0, 35000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-18 11:27:16', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"35000\"]', 'Within State', 'tax', 169, 'Account'), (358, 3120, '2019-12-16', 0, '0000-00-00', '', '2306', '17700', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of dynamic website including Domain for 1 year,Hosting for 1 year,Maintenance for 1 year, \\r\\n 5-E-mail ID\"]', '', 'Jackson', 0, 'Waiting For Approval', '9%', 1350, '9%', 0, '18%', 0, 15000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-16 17:56:53', 'Neelasandra Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (359, 3121, '2019-12-16', 0, '0000-00-00', '', '2307', '21240', '50% of payment initially and remaining after completion of project', '[\"10-12 Pages of Healthcare website including hosting for 1 year,design,development,Maintenance for 1 year\"]', '', 'Ankith', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-16 17:56:18', 'Rajajinagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 0, 'Lead'), (360, 3125, '2019-12-16', 0, '0000-00-00', '', '2308', '23600', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of website including Domain for 1 year\\r\\nHosting for 1 year\\r\\nPayment gateway integration\\r\\nMaintenance for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nSocial media links integration\\r\\n\"]', '', 'B V Agarwal ', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2019-12-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-16 18:51:42', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"20000\"]', 'Within State', 'tax', 0, 'Lead'), (361, 0, '2019-12-27', 0, '0000-00-00', '', '2309', '29500', '1.50% of payment initially and remaining after completion of project\r\n2.Content will be provided by client\r\n3.Domain and server provided by client', '[\"static bootstrap website with 2 interaction page including\\r\\nlanguage plugin\"]', '', 'Vijay ', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-01-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2019-12-27 15:17:58', 'Banashankari Bangalore Karnartaka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 696, 'Account'), (362, 138, '2020-01-02', 0, '0000-00-00', '', '2310', '14160', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of dynamic website includes:\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance for 1 year\\r\\n6.Support for 1 year\"]', '', 'Principal', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-01-17', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-02 16:19:56', 'SMITI ,Kanakapura Bangalore\r\nkarnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (363, 2182, '2020-01-03', 0, '0000-00-00', '', '2311', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of Dynamic website\\r\\nincludes\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance for 1 year\\r\\n6.Support for 1 year\\r\\n7.Social media link integration\\r\\n\"]', '', 'Shilpa', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-01-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-03 14:12:36', 'J P Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (364, 3160, '2020-01-03', 0, '0000-00-00', '', '2312', '29500', '1.50% of payment initially and remaining after completion of project\r\n2.Content & logo should be provided by client ', '[\"Static website similar to kmohan.com including \\r\\nDesign\\r\\nDevelopment \\r\\n& Hosting for 1 year\"]', '', 'Thandav Murthy', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-01-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-03 15:52:50', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (365, 0, '2020-01-04', 67, '0000-00-00', '', '2313', '181130', '50% of payment initially and remaining after completion of project', '[\"Community website along with matrimony application, Blog , Career \",\"Payment gateway integration \",\"Mobile application development \"]', '', 'Devaraj B', 0, 'Waiting For Approval', '9%', 13815, '9%', 13815, '18%', 0, 153500, '2020-01-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-04 12:47:47', ' 0', '0000-00-00 00:00:00', '[\"50000\",\"3500\",\"100000\"]', 'Within State', 'tax', 0, 'Potential'), (366, 3165, '2020-01-06', 0, '0000-00-00', '', '2314', '31860', '50% of payment initially and remaining after completion of project', '[\"E-commerce website similar to Unniyarcha.com\\/bcositssilver.com\"]', '', 'Akhil Bhandari', 0, 'Waiting For Approval', '9%', 2430, '9%', 2430, '18%', 0, 27000, '2020-01-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-06 16:42:40', '#139,3rd main road,B/W 8th & 9th cross,Margosa Road,Malleshwaram Bangalore Karnataka 560003', '0000-00-00 00:00:00', '[\"27000\"]', 'Within State', 'tax', 0, 'Lead'), (367, 3166, '2020-01-06', 0, '0000-00-00', '', '2315', '0', '1.50% of payment initially and remaining after completion of project.\r\n2. Duration of the Project development : 2 weeks', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 0, '2020-01-21', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2020-01-06 18:40:25', 'Singapore Singapore Singapore 0', '0000-00-00 00:00:00', '[\"0\"]', 'Within State', 'no_tax', 0, 'Lead'), (368, 3166, '2020-01-06', 0, '0000-00-00', '', '2315', '75000', '50% of payment initially and remaining after completion of project', '[\"To Create a prototype for Nexus ,\\r\\nIt should have the following categories \\r\\nWebsite Name: Nexus\\r\\nCategories: \\r\\na) Top Financial News\\r\\nb) Top Reads from my Organisation\\r\\nc) In Depth Coverage\\r\\nd) Just published Content\\r\\ne) Top Videos\\r\\nf) Infotainment\\r\\nDesign Reference : Netflix\\r\\n(it should have horizontal and vertical scroll category wise )\"]', '', 'Nishtha Aathana', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 75000, '2020-01-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-06 18:44:49', 'Singapore Singapore Singapore 0', '0000-00-00 00:00:00', '[\"75000\"]', '', 'no_tax', 0, 'Lead'), (369, 3173, '2020-01-08', 0, '0000-00-00', '', '2316', '16520', '1.50% of payment initially and remaining after completion of project\r\n2.Content should be provided by client ', '[\"5-6 Pages of static website including \\r\\nDomain for 1 year Hosting for 1 year, Design, Development, \\r\\nSocial Media links integration\\r\\nGoogle map \\r\\n1 E-mail Id(gmail) Maintenance, Support for 1 year \"]', '', 'Rethesh ', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2020-01-23', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-13 17:33:36', 'M G Road Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"14000\"]', 'Within State', 'tax', 0, 'Lead'), (370, 3168, '2020-01-09', 0, '0000-00-00', '', '2317', '12272', '50% of payment initially and remaining after completion of project', '[\"Static website(8000)\\r\\nDomain(2400)(Optional if the old vendor din\'t provide the credentials it includes)\"]', '', 'C R FABRICATOR', 0, 'Waiting For Approval', '9%', 936, '9%', 936, '18%', 0, 10400, '2020-01-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-09 17:09:34', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '0000-00-00 00:00:00', '[\"10400\"]', 'Within State', 'tax', 697, 'Account'), (371, 0, '2020-01-10', 0, '0000-00-00', '', '2318', '3540', '50% of payment initially and remaining after completion of project', '[\"Hosting Renewal\"]', '', 'Cosmos Clean System', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2020-01-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-10 11:05:54', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Bangalore Karnataka 560087', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 537, 'Account'), (372, 3183, '2020-01-13', 0, '0000-00-00', '', '2319', '236000', '50% of payment initially and remaining after completion of project', '[\"Multi Vendor E-commerce application\"]', '', 'Akbar', 0, 'Waiting For Approval', '9%', 18000, '9%', 18000, '18%', 0, 200000, '2020-01-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-13 11:44:38', 'J P Nagar,9th Phase Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"200000\"]', 'Within State', 'tax', 0, 'Lead'), (373, 3184, '2020-01-13', 0, '0000-00-00', '', '2320', '76700', '1.50% of payment initially and remaining after completion of project\r\n2.Hosting & 30hours of support : Rs.7000/-+tax per year.\r\n3. We use PHP,MYSQL Data base,and Angular JS', '[\"Application similar to https:\\/\\/yourdost.com\\/ with self testing,Blog,about us,contact us,Blog pages.\"]', '', 'Monish ', 0, 'Waiting For Approval', '9%', 5850, '9%', 5850, '18%', 0, 65000, '2020-01-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-13 13:34:50', 'Koramangala Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"65000\"]', 'Within State', 'tax', 0, 'Lead'); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (374, 3191, '2020-01-14', 0, '0000-00-00', '', '2321', '88500', '1.50% of payment initially and remaining after completion of project\r\n2.SMS Charges will be extra.\r\n3.AMC : 20% of the project amount.', '[\"MLM Software with Binary Plan\\r\\nServer Package:\\r\\n5GB data server\\r\\n2GB Bandwidth\\r\\n2 GB Ram\"]', '', 'Rohit', 0, 'Waiting For Approval', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2020-01-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-14 11:16:12', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"75000\"]', 'Within State', 'tax', 0, 'Lead'), (375, 3192, '2020-01-14', 0, '0000-00-00', '', '2322', '141600', '1.50% of payment initially and remaining after completion of project\r\n2.AMC: 20% of the Project amount\r\n3.Domain & hosting will cost :Rs.10000/- but we are reducing Rs.30,000/-', '[\"Web application for a career guidence which includes\\r\\n 1.Assesment Module\\r\\n2.Resume Module\\r\\n3.Counselling Module\\r\\n4.Design\\r\\n5.Development\\r\\n6.Payment Gateway\"]', '', 'Chethan', 0, 'Waiting For Approval', '9%', 10800, '9%', 10800, '18%', 0, 120000, '2020-01-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-16 13:43:43', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"120000\"]', 'Within State', 'tax', 0, 'Lead'), (376, 3197, '2020-01-16', 0, '0000-00-00', '', '2323', '23600', '1.50% of payment initially and remaining after completion of project', '[\"Re-design of linen hub(Static website) with 1 webmail \",\"Google Adwords\"]', '', 'Linen Hub', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2020-01-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-16 14:09:14', '#86,2nd main,Vidyaranyanagar,Magadi road Bangalore Karnataka 560023', '0000-00-00 00:00:00', '[\"12000\",\"8000\"]', 'Within State', 'tax', 698, 'Account'), (377, 3198, '2020-01-16', 0, '0000-00-00', '', '2324', '29500', '50% of payment initially and remaining after completion of project', '[\"Re-Design Of Static website with \\r\\nDesign\\r\\nDevelopment\\r\\nMaintenance\\r\\nSupport\"]', '', 'Roopa', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-01-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-16 16:09:10', 'Bhattarahalli,Near K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (378, 3199, '2020-01-16', 0, '0000-00-00', '', '2325', '20060', '50% of payment initially and remaining after completion of project', '[\"Static website \\r\\nHosting for 1 year\\r\\ndesign\\r\\ndevelopment\\r\\nMaintenance\\r\\nsupport for 1 year\",\"Google adwords\"]', '', 'Suresh ', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2020-01-31', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-16 18:18:57', 'Nagarabhavi Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"9000\",\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (379, 3142, '2020-01-20', 0, '0000-00-00', '', '2326', '41300', '50% of payment initially and remaining after completion of project', '[\"10-15 Pages of dynamic website includes\\r\\nDomain for 1 year\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\nand Admin Dashboard\"]', '', 'Nikhil ', 0, 'Waiting For Approval', '9%', 3150, '9%', 3150, '18%', 0, 35000, '2020-02-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-20 18:42:48', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"35000\"]', 'Within State', 'tax', 0, 'Lead'), (380, 3084, '2020-01-23', 0, '0000-00-00', '', '2327', '153400', '50% of payment initially and remaining after completion of project', '[\"Kalpavruksha Project Implementation\"]', '', 'Joseph Edwin Prashanth ', 0, 'Waiting For Approval', '9%', 11700, '9%', 11700, '18%', 0, 130000, '2020-02-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-23 15:11:26', 'Cambridge Layout,Indiranagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"130000\"]', 'Within State', 'tax', 0, 'Lead'), (381, 3212, '2020-01-24', 0, '0000-00-00', '', '2328', '17700', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Static website Including Domain for 1 year\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nMaintenance\\r\\nSupport for 1 year\",\"Google adwords\"]', '', 'Minu Madhan', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-02-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-24 11:23:42', 'J P Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"7000\",\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (382, 3213, '2020-01-24', 0, '0000-00-00', '', '2329', '12980', '1.50% of payment initially and remaining after completion of project\r\n2.Content should be provided', '[\"5-6 Pages of static website Including\\r\\nDomain for 1 year,\\r\\nHosting for 1 year,\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year,\\r\\nContact form,\\r\\n2 design concepts,\\r\\nSocial media links integration\\r\\n\"]', '', 'Sindhoori', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2020-02-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-24 15:15:04', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"11000\"]', 'Within State', 'tax', 0, 'Lead'), (383, 3218, '2020-01-24', 0, '0000-00-00', '', '2330', '29500', '50% of payment initially and remaining after completion of project', '[\"15 Pages of Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year,\\r\\nDesign,\\r\\nDevelopment,\\r\\n3 Design concepts,\\r\\nCross Browser compatible,\\r\\nContact form,\\r\\nSEO Friendly,\\r\\nGoogle Map,\\r\\nSocial media links integration\\r\\nMaintenance for 1 year\\r\\nSupport for 1 year\"]', '', 'Sanjib ', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-02-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-24 18:42:51', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (384, 0, '2020-01-27', 0, '0000-00-00', '', '2331', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting will be provided by client\r\n', '[\" Dynamic website for ZYLUS firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Geetha K', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2020-01-27 17:46:48', 'J P Nagar , 2nd Phase Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 700, 'Account'), (385, 3221, '2020-01-27', 0, '0000-00-00', '', '2332', '17700', '50% of payment initially and remaining after completion of project', '[\"5-6 Pages of Dynamic website Including \\r\\nDomain for 1 year,\\r\\nHosting for 1 year\\r\\nDesign\\r\\nDevelopment\\r\\nPayment gateway\\r\\n1 web mail\\r\\ncontact form,\\r\\nGoogle map,\\r\\nSocial media links integration,\\r\\nMaintenance for 1 year,\\r\\nSupport for 1 year.\"]', '', 'Imran', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-02-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-27 17:11:39', 'R T Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (386, 0, '2020-01-27', 0, '0000-00-00', '', '2333', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting provided by Client', '[\"Dynamic website for Transe firm including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\"]', '', 'Geetha K', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2020-01-27 17:45:59', 'J P Nagar , 2nd Phase Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 700, 'Account'), (387, 3217, '2020-01-27', 0, '0000-00-00', '', '2334', '38350', '1.50% of payment initially and remaining after completion of project.\r\n2.Domain & Hosting Provided by Client', '[\"6-7 Pages of Dynamic website\",\"1. Adwords link \\r\\n2. Google Analytics\",\"E-mail Id 5GB Rs.500\\/Email id\",\"SEO Package starts from Rs.15000\\/- per month\"]', '', 'Raj ', 0, 'Waiting For Approval', '9%', 2925, '9%', 2925, '18%', 0, 32500, '2020-02-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-27 18:58:20', 'Jayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\",\"5000\",\"500\",\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (388, 3222, '2020-01-28', 0, '0000-00-00', '', '2335', '11800', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Static website including Domain,\\r\\nHosting for 1 year, Design , Development,Maintenance for 1 year , Support for 1 year , \\r\\n 2 E-mail id.\"]', '', 'Anusha', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2020-02-12', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-01-28 14:05:39', 'Kengeri Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (389, 3230, '2020-02-04', 0, '0000-00-00', '', '2336', '17700', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Payment gateway ,\\r\\n6.Maintenance for 1 year ,\\r\\n7.Support for 1 year\"]', '', 'Kamalaksha', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-02-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-04 11:57:00', 'Electronic city Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (390, 0, '2020-02-04', 0, '0000-00-00', '', '2337', '25960', '50% of payment initially and remaining after completion of project', '[\"Dynamic website development in WordPress\"]', '', 'Skill Tree Academy', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2020-02-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-04 12:10:57', 'Sahakar Nagar Banagalore Karnataka ', '0000-00-00 00:00:00', '[\"22000\"]', 'Within State', 'tax', 564, 'Account'), (391, 0, '2020-02-05', 0, '0000-00-00', '', '2338', '501500', '50% of payment initially and remaining after completion of project', '[\"E-commerce Magento platform \"]', '', 'Navin K', 0, 'Waiting For Approval', '9%', 38250, '9%', 38250, '18%', 0, 425000, '2020-02-20', 'Rekha', 'WAITING', 'INACTIVE', 'Quotation', '2020-02-05 15:56:40', 'Bangalore Bangalore\r\nKarnataka 0', '0000-00-00 00:00:00', '[\"425000\"]', 'Within State', 'tax', 699, 'Account'), (392, 3231, '2020-02-05', 0, '0000-00-00', '', '2338', '501500', '50% of payment initially and remaining after completion of project', '[\"E-commerce Magento platform \"]', '', 'NONAHomes', 0, 'Waiting For Approval', '9%', 38250, '9%', 38250, '18%', 0, 425000, '2020-02-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-05 15:59:51', 'Bangalore Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"425000\"]', 'Within State', 'tax', 699, 'Account'), (393, 132, '2020-02-06', 0, '0000-00-00', '', '2339', '9440', '50% of payment initially and remaining after completion of project', '[\"$-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Harish', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-02-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-06 15:39:38', 'Hanumanthnagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (394, 0, '2020-02-07', 0, '0000-00-00', '', '2340', '27140', '50% of payment initially and remaining after completion of project', '[\"server renewal for 6 months (Feb 28- August 31 of 2020)\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2020-02-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-07 14:27:53', ' Bangalore ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 159, 'Account'), (395, 0, '2020-02-07', 0, '0000-00-00', '', '2341', '27140', '50% of payment initially and remaining after completion of project', '[\"server renewal for 6 months (Feb 28- August 31 of 2020)\"]', '', 'Deco-Textil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2020-02-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-07 14:29:41', 'Swan House Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 207, 'Account'), (396, 3234, '2020-01-27', 0, '0000-00-00', '', '2333', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting provided by client', '[\"Dynamic website for Varna Creations including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance,\\r\\nSupport for 1 year\"]', '', 'Varna Creations', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-10 13:28:27', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 701, 'Account'), (397, 3220, '2020-01-27', 0, '0000-00-00', '', '2331', '14160', '1.50% of payment initially and remaining after completion of project\r\n2.Domain & Hosting provided by Client.', '[\" Dynamic website for Transe Vision Care Pvt Ltd. including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\n Support for 1 year\"]', '', 'Transe Vision Care Pvt.Ltd', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-02-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-10 13:29:14', '#814,23rd main,2nd phase,J p Nagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 700, 'Account'), (398, 3107, '2020-02-18', 0, '0000-00-00', '', '2332', '100300', '50% of payment initially and remaining after completion of project', '[\"Policy market data is added by admin and access by user\"]', '', 'Vijendra gowda ', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2020-03-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-18 13:28:49', 'Bommanahalli Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"85000\"]', 'Within State', 'tax', 0, 'Lead'), (399, 0, '2020-02-18', 69, '0000-00-00', '', '2333', '94400', '50% of payment initially and remaining after completion of project', '[\"E-Commerce application\"]', '', 'Mohan Nimbalkar', 0, 'Waiting For Approval', '9%', 7200, '9%', 7200, '18%', 0, 80000, '2020-03-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-18 15:33:01', 'No P-5, 31st main, Banagirinagar, BSK 3rd stage Bangalore Karnataka India 560085', '0000-00-00 00:00:00', '[\"80000\"]', 'Within State', 'tax', 0, 'Potential'), (400, 3242, '2020-02-22', 0, '0000-00-00', '', '2334', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Raja G', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-22 13:25:36', 'Bommanhalli Bangalore Karnataka 560004', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (401, 3244, '2020-02-24', 0, '0000-00-00', '', '2335', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Satish BG', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-24 12:27:07', 'LR Bande R T Nagar Bangaluru Karnataka 560043', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (402, 3245, '2020-02-24', 0, '0000-00-00', '', '2336', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Akash kumar', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-24 13:47:54', 'Rajajinagar Bangalore Karnataka 560023', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (403, 3246, '2020-02-24', 0, '0000-00-00', '', '2337', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Maintenance for 1 year ,\\r\\n6.Support for 1 year\"]', '', 'joyce priya', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-03-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-24 16:22:16', 'Indiranagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (404, 308, '2020-02-26', 0, '0000-00-00', '', '2338', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Maintenance for 1 year ,\\r\\n6.Support for 1 year\"]', '', 'Manoj', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-03-12', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-26 16:43:25', 'Banashankari Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (405, 0, '2020-02-27', 0, '0000-00-00', '', '2339', '7080', '50% of payment initially and remaining after completion of project', '[\"Website changes\"]', '', 'Elite Residencies', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-03-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-27 15:29:03', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 231, 'Account'), (406, 3248, '2020-02-27', 0, '0000-00-00', '', '2340', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Chandra Mouli', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-27 16:19:39', ' 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (407, 3248, '2020-02-27', 0, '0000-00-00', '', '2341', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Maintenance for 1 year ,\\r\\n6.Support for 1 year\"]', '', 'Chandra Mouli', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-03-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-02-27 16:44:34', ' 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (408, 1363, '2020-03-03', 0, '0000-00-00', '', '2342', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Maintenance for 1 year ,\\r\\n6.Support for 1 year\"]', '', 'Suhas', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-03-18', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-03 18:22:43', ' 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (409, 3248, '2020-03-04', 0, '0000-00-00', '', '2343', '7080', '50% of payment initially and remaining after completion of project', '[\"Domain and 3 mail id\"]', '', 'Chandra Mouli', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-03-19', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-04 12:18:00', ' 0', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (410, 3250, '2020-03-05', 0, '0000-00-00', '', '2344', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Veeksha', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-05 12:55:04', ' 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (411, 3251, '2020-03-05', 0, '0000-00-00', '', '2345', '9440', '50% of payment initially and remaining after completion of project', '[\"4-5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\"]', '', 'Kadambari', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-03-20', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-05 17:01:36', 'Vasanthnagar Bangalore Karnataka 560068', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (412, 1463, '2020-03-07', 0, '0000-00-00', '', '2346', '23600', 'new patch once payment done we will update to production', '[\"Updatation for life sys product .\"]', '', 'Dilip', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2020-03-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-07 15:56:28', 'Jp nagar Bangalore 0', '0000-00-00 00:00:00', '[\"20000\"]', 'Within State', 'tax', 0, 'Lead'), (413, 0, '2020-03-09', 0, '0000-00-00', '', '2347', '5310', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for dentics till Feb 2021\"]', '', 'Rajiv Dental Care Centre', 0, 'Waiting For Approval', '9%', 405, '9%', 405, '18%', 0, 4500, '2020-03-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-09 10:30:14', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"4500\"]', 'Within State', 'tax', 464, 'Account'), (414, 3252, '2020-03-09', 0, '0000-00-00', '', '2348', '14160', '50% of payment initially and remaining after completion of project', '[\"4-5 Pages of Dynamic website Includes\\r\\n1.Domain for 1 year ,\\r\\n2.Hosting for 1 year ,\\r\\n3.Design ,\\r\\n4.Development ,\\r\\n5.Maintenance for 1 year ,\\r\\n6.Support for 1 year\"]', '', 'Siddaram', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2020-03-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-09 13:53:46', ' 0', '0000-00-00 00:00:00', '[\"12000\"]', 'Within State', 'tax', 0, 'Lead'), (415, 0, '2020-03-13', 0, '0000-00-00', '', '2349', '2500', '50% of payment initially and remaining after completion of project', '[\"support charges\"]', '', 'AB Squares', 0, 'Waiting For Approval', '9%', 225, '9%', 225, '18%', 0, 2500, '2020-03-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-03-13 18:46:26', '# 33, Sheshamma Layout, Opp to Sarla Birla School, Bannerghatta, Bengaluru 560 083, Karnataka, India. Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"2500\"]', '', 'no_tax', 578, 'Account'), (416, 0, '2020-05-06', 0, '0000-00-00', '', '2350', '4720', '50% of payment initially and remaining after completion of project', '[\"Domine and hosting renewal of SRMG.in\"]', '', 'S R Marble and Granite', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-06 16:41:04', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 307, 'Account'), (417, 0, '2020-05-06', 0, '0000-00-00', '', '2351', '4720', '50% of payment initially and remaining after completion of project', '[\"Domine and Hosting Renewal SRMG.in\"]', '', 'SRMG STONE PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-06 16:53:40', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 307, 'Account'), (418, 0, '2020-05-13', 0, '0000-00-00', '', '2352', '4720', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for domain and hosting \"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-05-28', 'Ashwini', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-13 12:32:19', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 328, 'Account'), (419, 3253, '2020-05-19', 0, '0000-00-00', '', '2353', '17700', '50% of payment initially and remaining after completion of project', '[\"Word press website development.\"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-06-03', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-19 11:51:48', ' Bangalore 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 709, 'Account'), (420, 0, '2020-05-19', 0, '0000-00-00', '', '2354', '6500', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for website\"]', '', 'Kids Zone', 0, 'Waiting For Approval', '9%', 496, '9%', 496, '18%', 0, 5508, '2020-06-03', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-30 12:40:52', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5508\"]', 'Within State', 'tax', 94, 'Account'), (421, 0, '2020-05-21', 0, '0000-00-00', '', '2355', '8260', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for website\"]', '', 'Aditi Consultancy', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-21 11:04:14', ' Bangalore ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 63, 'Account'), (422, 0, '2020-05-21', 0, '0000-00-00', '', '2356', '5900', '50% of payment initially and remaining after completion of project', '[\"AMC renewal for website\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-06-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-21 16:39:28', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 102, 'Account'), (423, 0, '2020-06-01', 0, '0000-00-00', '', '2357', '4720', '100% of payment to be made.', '[\"AMC renewal for website 2020-2021\"]', '', 'SIRI Global Services', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-06-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-01 18:30:25', '#13, Siri Landmark, Above Vishal Megamart 4th Floor, Uttarahalli Main Road Bangalore Karnataka 560061', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 630, 'Account'), (424, 3254, '2020-05-22', 0, '0000-00-00', '', '2358', '31860', '50% of payment initially and remaining after completion of project', '[\"Dynamic web site creation with SEO Keywords Added\"]', '', 'Sushmitha shetty', 0, 'Waiting For Approval', '9%', 2430, '9%', 2430, '18%', 0, 27000, '2020-06-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-22 12:54:47', ' Bangalore 0', '0000-00-00 00:00:00', '[\"27000\"]', 'Within State', 'tax', 0, 'Lead'), (425, 1640, '2020-05-22', 0, '0000-00-00', '', '2359', '278480', '100% of payment.', '[\"AMC renewal for Swan-Deco ERP Application May2020-May2021\\r\\n200 hrs of support\\/Development included.\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 21240, '9%', 21240, '18%', 0, 236000, '2020-06-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-22 17:49:39', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"236000\"]', 'Within State', 'tax', 0, 'Lead'), (426, 0, '2020-05-22', 0, '0000-00-00', '', '2360', '8260', '100% of payment.', '[\"AMC renewal for website\"]', '', 'Aditi Consultancy', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-22 17:56:45', ' Bangalore ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 63, 'Account'), (427, 0, '2020-05-25', 0, '0000-00-00', '', '2361', '8260', '100% of payment ', '[\"Hosting\",\"SSL\",\"AMC for the year 2020-2021\"]', '', 'Aditi Consultancy', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-09', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-25 11:05:43', ' Bangalore ', '0000-00-00 00:00:00', '[\"2500\",\"3500\",\"1000\"]', 'Within State', 'tax', 63, 'Account'), (428, 1640, '2020-05-27', 0, '0000-00-00', '', '2362', '118000', '100% of payment.', '[\"AMC renewal for Swansilk ERP Application May2020-May2021\\r\\n200 hrs of support\\/Development included.\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2020-06-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-28 10:52:04', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"100000\"]', 'Within State', 'tax', 0, 'Lead'), (429, 1641, '2020-05-27', 0, '0000-00-00', '', '2363', '118000', '100% of payment.', '[\"AMC renewal for Deco-Textil ERP Application May2020-May2021.\\r\\n200 hrs of support\\/Development included.\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2020-06-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-28 10:50:16', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"100000\"]', 'Within State', 'tax', 0, 'Lead'), (430, 0, '2020-05-28', 0, '0000-00-00', '', '2364', '5900', '100% of payment.', '[\"AMC renewal for website\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-06-12', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-28 10:44:47', 'Happy Garden, #1008 MIG, 9th Main, 2nd Cross, Vivekananda Nagar, Mysore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 102, 'Account'), (431, 0, '2020-05-29', 0, '0000-00-00', '', '2365', '5900', '100% of payment.', '[\"AMC renewal for website\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-06-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-29 10:36:00', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 102, 'Account'), (432, 0, '2020-05-30', 0, '0000-00-00', '', '2366', '25960', '100% of payment to be made.', '[\"AMC for website for year 2020-2021\\r\\n\\r\\nAMC Period: 01-06-2020 to 30-05-2021\"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2020-06-14', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-05-30 16:00:54', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '0000-00-00 00:00:00', '[\"22000\"]', 'Within State', 'tax', 487, 'Account'), (433, 0, '2020-06-08', 0, '0000-00-00', '', '2367', '525000', '50% of payment initially and remaining after completion of the project', '[\"Medusys Application Development \"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 525000, '2020-06-23', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-08 16:15:30', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"525000\"]', '', 'no_tax', 713, 'Account'), (434, 0, '2020-06-08', 0, '0000-00-00', '', '2368', '7080', '100% of payment initially.', '[\"Hosting Renewal for Website \"]', '', 'Venus Surgical Agencies', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-06-23', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-08 20:21:26', 'No. 10/1, 10/2, Ground Floor 1st Main, Mount Joy Extension, Hanumantha Nagar Bengaluru - 560 019, INDIA Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 152, 'Account'), (435, 0, '2020-06-09', 0, '0000-00-00', '', '2369', '4720', '100% of payment to be made.', '[\"AMC renewal for website.\"]', '', 'Anamiivaa', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-06-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-09 11:42:53', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 311, 'Account'), (436, 0, '2020-06-11', 0, '0000-00-00', '', '2370', '5900', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Leenik Biotech', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-06-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-11 13:15:15', ' ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 628, 'Account'), (437, 2756, '2020-07-28', 0, '0000-00-00', '', '2371', '4720', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Vlight Services Private Limited', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-08-12', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-28 14:34:58', 'K R Puram Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 660, 'Account'), (438, 2053, '2020-06-15', 0, '0000-00-00', '', '2372', '8260', '100% of payment to be made.', '[\"2 website hosting renewal for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-06-30', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-15 17:58:34', '#6, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 264, 'Account'), (439, 2053, '2020-06-15', 0, '0000-00-00', '', '2373', '7000', '100% of payment to be made.', '[\"2 website hosting renewal for the year 2020-2021\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 534, '9%', 534, '18%', 0, 5932, '2020-06-30', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-15 18:03:58', '#6, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5932\"]', 'Within State', 'tax', 264, 'Account'), (440, 0, '2020-06-16', 0, '0000-00-00', '', '2374', '35400', '100% of payment to be made.', '[\"AMC on ABP Portal\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-07-01', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-16 13:44:56', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 197, 'Account'), (441, 0, '2020-06-16', 0, '0000-00-00', '', '2375', '9440', '100% of payment to be made.', '[\"3 New pages and Modify home page\"]', '', 'Salemaker', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-07-01', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-16 16:00:00', 'Pride Bilekahalli Banergatta Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 105, 'Account'), (442, 0, '2020-06-19', 0, '0000-00-00', '', '2376', '4720', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Turbmax', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-07-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-19 13:15:45', 'Batrahalli near ICiC bank Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 588, 'Account'), (443, 3255, '2020-06-24', 0, '0000-00-00', '', '2377', '48000', '50% of payment initially and remaining after completion of project', '[\"Dentics cloud software\"]', '', 'Dr jayanthi ', 0, 'Waiting For Approval', '9%', 3661, '9%', 3661, '18%', 0, 40678, '2020-07-09', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-24 13:19:50', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"40678\"]', 'Within State', 'tax', 0, 'Lead'), (444, 116, '2020-06-27', 0, '0000-00-00', '', '2378', '7080', '100% of payment to be made.', '[\"Domain and Hosting renewal from 25-06-2020 to 25-06-2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-07-10', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-06-27 15:18:48', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (445, 116, '2020-09-24', 0, '0000-00-00', '', '2379', '7080', '100% of payment to be made.', '[\"AMC renewal for website.\\r\\n\\r\\nAMC Period: 24-09-2020 to 24-09-2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-10-09', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-24 15:10:58', 'Sarjapur road bellandur gate Bangalore ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (446, 0, '2020-07-08', 0, '0000-00-00', '', '2380', '8260', '50% of payment initially and remaining after completion of project', '[\"5 pages of static website including\\r\\n1.Domain for 1 year\\r\\n2.Hosting for 1 year\\r\\n3.Design\\r\\n4.Development\\r\\n5.Maintenance\\r\\n6.Support for 1 year\\r\\n\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-07-23', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-08 14:02:59', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 715, 'Account'), (447, 0, '2020-07-10', 0, '0000-00-00', '', '2381', '4720', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'TOG Services', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-07-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-10 15:48:03', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka 560078', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 665, 'Account'), (448, 2952, '2020-07-13', 0, '0000-00-00', '', '2382', '8000', '100% of payment to be made.', '[\"Chatbot\"]', '', 'TOBIK LIFELINE NIG.LTD', 0, 'Waiting For Approval', '9%', 610, '9%', 610, '18%', 0, 6780, '2020-07-28', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-13 12:29:57', '#12/#102/2(Arulillam house),Agrehara village,Didarahalli hobli Bangalore Karnataka 560077', '0000-00-00 00:00:00', '[\"6780\"]', 'Within State', 'tax', 686, 'Account'), (449, 0, '2020-07-21', 0, '0000-00-00', '', '2383', '17700', '50% of payment initially and remaining after completion of project.', '[\"Static website with payment gateway\"]', '', 'Nishkal Shetty', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2020-08-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-21 13:11:33', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 716, 'Account'), (450, 0, '2020-07-21', 0, '0000-00-00', '', '2384', '9440', '100% of payment to be made.', '[\"AMC renewal for website\\r\\n(apimysore.org)\"]', '', 'Brindavan hospital', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-08-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-21 18:43:19', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka 570002', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 653, 'Account'), (451, 0, '2020-07-22', 0, '0000-00-00', '', '2385', '6372', '100% of payment to be made.', '[\"3 E-mail Id per mail id 1800 (1800*3)\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 486, '9%', 486, '18%', 0, 5400, '2020-08-06', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-22 11:30:46', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5400\"]', 'Within State', 'tax', 715, 'Account'), (452, 0, '2020-07-22', 0, '0000-00-00', '', '2386', '283200', '50% of payment initially and remaining after completion of project', '[\"Android APP Development For Marketing\",\"Hosting Of android App to Android Playstore Fee\",\"Upgradation of GSS ERP.\",\"Annual Maintenance Charge for ERP (waived off as upgradation is in Process)\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 21600, '9%', 21600, '18%', 0, 240000, '2020-08-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-25 13:10:57', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"90000\",\"10000\",\"140000\",\"0\"]', 'Within State', 'tax', 169, 'Account'), (453, 0, '2020-07-23', 0, '0000-00-00', '', '2387', '9440', '100% of payment to be made.', '[\"Below is breakup\\r\\n\\r\\nDomain = Rs.1000\\/-\\r\\nServer = Rs.4000\\/-\\r\\nMaintenance = Rs.3000\\/-\\r\\n\"]', '', 'Brindavan hospital', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-08-07', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-07-23 17:55:58', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka 570002', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 653, 'Account'), (454, 0, '2020-08-07', 0, '0000-00-00', '', '2388', '45000', '100% of payment initially and remaining after completion of project', '[\"1. AMC Rs.5000 \\/ year + GST\\r\\n\\r\\n2. The customer to manage the DLT \\r\\n registration and sender ID. Once \\r\\n they get the Sender ID approved, \\r\\n we can configure the same in the \\r\\n PMS software. SMS as per the \\r\\n package they choose. We will send \\r\\n the SMS package tariff soon.\"]', '', 'The Dental Square Multispeciality Dental clinic', 0, 'Waiting For Approval', '9%', 3432, '9%', 3432, '18%', 0, 38136, '2020-08-22', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-07 18:11:32', '#62 Sapna complex, 2nd Floor, Neeladri road, Electronic city, Phase 1 Bangalore-560 100 karnataka ', '0000-00-00 00:00:00', '[\"38136\"]', 'Within State', 'tax', 717, 'Account'), (455, 0, '2020-08-08', 0, '0000-00-00', '', '2389', '40000', '50% of payment initially and remaining after completion of project', '[\"1. 20 pages\\r\\n2. Minimum 50 images\\r\\n3. 1 Online form \\r\\n4. 2 sample website designs\\r\\n5. HTML \\/ wordpress\\r\\n6. Inline chat integration\\r\\n7. Unlimited memory\\r\\n8. Cloud hosting\\r\\n9. CMS support\"]', '', 'Manukula Charitable and Educational Trust', 0, 'Waiting For Approval', '9%', 3051, '9%', 3051, '18%', 0, 33898, '2020-08-23', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-12 12:23:36', 'No. 20. 1st cross, KEB Road, anjana nagar, magadi main road, Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"33898\"]', 'Within State', 'tax', 328, 'Account'), (456, 0, '2020-08-10', 0, '0000-00-00', '', '2390', '4720', '100% of payment to be made.', '[\"20 hours of support included on the website.\"]', '', 'Avyukt Pharmaceuticals', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-08-25', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-10 17:00:05', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka 560021', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 587, 'Account'), (457, 2890, '2020-08-14', 0, '0000-00-00', '', '2391', '4720', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Manju ', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-08-29', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-14 18:53:05', 'Vijayanagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 0, 'Lead'), (458, 3256, '2020-08-17', 0, '0000-00-00', '', '2392', '53100', '50% of payment initially and remaining after completion of project', '[\"Website design and development for Personal coach .\",\"Scheduler and payment gateway.\\r\\n(Payment gateway commission will be 2 percent for every transaction).\"]', '', 'Athar Ali', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2020-09-01', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-17 18:12:16', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"30000\",\"15000\"]', 'Within State', 'tax', 0, 'Lead'), (459, 0, '2020-08-23', 0, '0000-00-00', '', '2393', '306800', '50% of payment initially and remaining after completion of project', '[\"e-Commerce Application with Android and iOS application\\r\\nincludes basic shared server cost also\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 23400, '9%', 23400, '18%', 0, 260000, '2020-09-07', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-23 12:04:06', 'Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"260000\"]', 'Within State', 'tax', 715, 'Account'), (460, 0, '2020-08-25', 0, '0000-00-00', '', '2394', '7500', '100% of payment initially and remaining after completion of project', '[\"2\\\" Thermal Printer includes software applications lifetime license, 1yr motherboard warranty\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 572, '9%', 572, '18%', 0, 6356, '2020-09-09', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-25 16:34:56', 'Bangalore-Karnataka,India', '0000-00-00 00:00:00', '[\"6356\"]', 'Within State', 'tax', 715, 'Account'), (461, 3256, '2020-08-26', 0, '0000-00-00', '', '2395', '56640', '50% of payment initially and remaining after completion of project', '[\"8 page static website\",\"Registration, sms and email integration, survey page development\",\"Payment gateway\"]', '', 'Athar Ali', 0, 'Waiting For Approval', '9%', 4320, '9%', 4320, '18%', 0, 48000, '2020-09-10', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-26 17:03:56', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"24000\",\"16000\",\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (462, 3256, '2020-08-26', 0, '0000-00-00', '', '2396', '24780', '50% of payment initially and remaining after completion of project', '[\"6 Page website\"]', '', 'Athar Ali', 0, 'Waiting For Approval', '9%', 1890, '9%', 1890, '18%', 0, 21000, '2020-09-10', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-26 17:56:46', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"21000\"]', 'Within State', 'tax', 0, 'Lead'), (463, 0, '2020-08-29', 0, '0000-00-00', '', '2397', '23542', '100% of payment to be made.', '[\"2 nos X 3\\\" thermal printer \\r\\n(8475 X 2)\",\"Configuration service charges\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 1796, '9%', 1796, '18%', 0, 19950, '2020-09-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-08-29 12:56:02', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"16950\",\"3000\"]', 'Within State', 'tax', 715, 'Account'), (464, 0, '2020-09-01', 0, '0000-00-00', '', '2398', '29500', '100% of payment to be made.', '[\"Server renewal 40 GB + extendable for one Year\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2020-09-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-01 12:18:49', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 169, 'Account'), (465, 0, '2020-09-16', 0, '0000-00-00', '', '2399', '27140', '50% of payment initially and remaining after completion of project', '[\"1.\\tLogo and Stationery (Letterhead, Envelope, Visiting cards, Flyer)\\r\\n2.\\tDomain and Hosting \\r\\n3.\\t Dynamic website development \\r\\n4.\\t E-mail configuration-1 NOS\\r\\n\"]', '', 'Ankush Rajpurohit', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2020-10-01', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-18 18:26:37', '370,6th cross Kamakshi Hospital road Mysuru-570 009 Karnataka ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 718, 'Account'), (466, 0, '2020-09-23', 0, '0000-00-00', '', '2400', '8260', '100% of payment to be made.', '[\"Payment gateway integration with documentation.\"]', '', 'T.saifuddin & co', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-10-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-23 13:43:53', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 526, 'Account'), (467, 0, '2020-09-26', 0, '0000-00-00', '', '2401', '1500000', '50% of payment initially and remaining after completion of project', '[\"Web Application and Development\"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 1500000, '2020-10-11', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-28 18:35:57', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"1500000\"]', '', 'no_tax', 713, 'Account'); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (468, 0, '2020-09-28', 0, '0000-00-00', '', '2402', '4720', '100% of payment to be made.', '[\"AMC renewal for website\"]', '', 'Sri Venu Glass', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2020-10-13', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-28 15:49:10', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka 560043', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 540, 'Account'), (469, 0, '2020-09-30', 0, '0000-00-00', '', '2403', '1180', '100% of payment to be made.', '[\"AMC renewal for website.\"]', '', 'Biosite India Pvt Ltd', 0, 'Waiting For Approval', '9%', 90, '9%', 90, '18%', 0, 1000, '2020-10-15', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-09-30 12:53:30', 'jp nagar 7th phase Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"1000\"]', 'Within State', 'tax', 260, 'Account'), (470, 0, '2020-10-01', 0, '0000-00-00', '', '2404', '2360', '100% of payment to be made.', '[\"Website changes\\r\\n1.Need to update new address and year in website.\\r\\n2. Add Tagline in LOGO\\r\\n3. favicon changes\"]', '', 'Biosite India Pvt Ltd', 0, 'Waiting For Approval', '9%', 180, '9%', 180, '18%', 0, 2000, '2020-10-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-01 11:51:29', 'jp nagar 7th phase Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"2000\"]', 'Within State', 'tax', 260, 'Account'), (471, 0, '2020-10-01', 0, '0000-00-00', '', '2405', '8260', '100% of payment to be made.', '[\"E-Commerce Website Development\"]', '', 'The giz shop pvt ltd ', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-10-16', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-01 12:32:33', 'H b r layout 3rd block Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 558, 'Account'), (472, 0, '2020-10-06', 0, '0000-00-00', '', '2406', '204140', '50% of payment initially and remaining after completion of project', '[\"1.Dynamic Website with 6 pages\\r\\n2.New patient registration\\r\\n3.Payment gateway integration\\r\\n4.Invoice generation\\r\\n5.Updating diagnostic report\\r\\n6.Appointment booking\\r\\n7.Viewing and downloading result \\r\\n by patient\\r\\n8. SSL Certificate\\r\\n9.Domain and Hosting\"]', '', 'Athmika ramesh', 0, 'Waiting For Approval', '9%', 15570, '9%', 15570, '18%', 0, 173000, '2020-10-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-06 15:29:38', ' ', '0000-00-00 00:00:00', '[\"173000\"]', 'Within State', 'tax', 720, 'Account'), (473, 0, '2020-10-06', 0, '0000-00-00', '', '2407', '35400', '50% of payment initially and remaining after completion of project', '[\" Dynamic website for 5 Pages. Including\\r\\nDesign,\\r\\nDevelopment,\\r\\nMaintenance and\\r\\nSupport for 1 year\\r\\n\",\"Domain : 1000\\r\\nHosting : 4000\\r\\nSSL Certificate : 4000\\r\\nFor 1 year\"]', '', 'Athmika ramesh', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-10-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-06 17:11:42', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"21000\",\"9000\"]', 'Within State', 'tax', 720, 'Account'), (474, 0, '2020-10-20', 0, '0000-00-00', '', '2415', '165000', '50% of payment initially and remaining after completion of project', '[\"Application changes. \"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 165000, '2020-11-04', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-20 19:00:57', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"165000\"]', '', 'no_tax', 713, 'Account'), (475, 0, '2020-10-21', 0, '0000-00-00', '', '2416', '10620', '100% of payment to be made.', '[\"Website Renewal\",\"Dentics Renewal\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2020-11-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-10-21 18:43:01', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\",\"4000\"]', 'Within State', 'tax', 2, 'Account'), (476, 0, '2020-12-24', 0, '0000-00-00', '', '2417', '4720', '100% of payment to be made. ', '[\"AMC renewal for website\\r\\nFrom 24-12-2020 To 24-12-2021\"]', '', 'FDOT', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-01-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-12-24 10:47:12', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA 560027', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 543, 'Account'), (477, 0, '2020-11-06', 0, '0000-00-00', '', '2418', '3540', '100% of payment to be made.', '[\"Website changes.\"]', '', 'silicon Education', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2020-11-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-06 12:28:04', ' ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 647, 'Account'), (478, 0, '2020-11-06', 0, '0000-00-00', '', '2419', '7080', '100% of payment to be made.', '[\"Website changes.\"]', '', 'LASO ', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2020-11-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-06 14:05:44', ' ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 624, 'Account'), (479, 0, '2020-11-06', 0, '0000-00-00', '', '2420', '7670', '100% of payment to be made.', '[\"AMC Renewal for website\"]', '', 'Radion Dental Equipments Pvt Ltd', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2020-11-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-06 17:44:13', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka 560096', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 218, 'Account'), (480, 0, '2020-11-06', 0, '0000-00-00', '', '2421', '25000', '50% of payment initially and remaining after completion of project', '[\"Application changes\"]', '', 'Dr Gurunath Murthy', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 25000, '2020-11-21', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-06 18:32:34', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"25000\"]', '', 'no_tax', 713, 'Account'), (481, 0, '2020-11-09', 0, '0000-00-00', '', '2422', '5900', '100% of payment to made.', '[\"Domain Renewal.\\r\\n\",\"Hosting Renewal.\",\"Service Charges.\"]', '', 'Indian Society of Professional Social Works', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-11-24', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-09 15:01:22', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"1200\",\"2800\",\"1000\"]', 'Within State', 'tax', 235, 'Account'), (482, 3258, '2020-11-11', 0, '0000-00-00', '', '2423', '16520', '50% of payment initially and remaining before completion of project', '[\"1.Domain and Hosting\\r\\n2.Google Map\\r\\n3.Distribution Details\\r\\n4.Profile\\r\\n5.About Company\\r\\nFrom 2nd year AMC charges will be 4000+GST(Yearly once)\"]', '', 'Surya M P', 0, 'Waiting For Approval', '9%', 1260, '9%', 1260, '18%', 0, 14000, '2020-11-26', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-11 15:44:33', 'Plot No.78 ,Hootgalli Industrial Area,Mysuru-570016 Karnataka 0', '0000-00-00 00:00:00', '[\"14000\"]', 'Within State', 'tax', 0, 'Lead'), (483, 0, '2020-11-20', 0, '0000-00-00', '', '2424', '8260', '100% of payment to be made.', '[\"1.Domain Renewal\\r\\n2.Hosting Renewal\\r\\n3. SSL Certificate.\\r\\n4.Configuration and Installation.\"]', '', 'Fly Fast Express', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2020-12-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-20 13:39:26', '14/4 Mission Road, S.R nagar Banglore 560027 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 118, 'Account'), (484, 2577, '2020-11-20', 0, '0000-00-00', '', '2425', '5900', '100% of payment to be made.', '[\"AMC Renewal for website.\"]', '', 'Shanmuga K', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2020-12-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-20 17:13:39', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 0, 'Lead'), (485, 2577, '2020-11-20', 0, '0000-00-00', '', '2426', '11800', '100% of payment to be made.', '[\"1.Domain Renewal\\r\\n2.Hosting Renewal\\r\\n3.Configuration and Installation.\"]', '', 'Shanmuga K', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2020-12-05', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-20 19:24:01', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"10000\"]', 'Within State', 'tax', 0, 'Lead'), (486, 0, '2020-11-23', 0, '0000-00-00', '', '2427', '35400', '100% of payment to be made.', '[\"Hosting charges on AWS for Livsys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage\\r\\n100% of Payment to be made.\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2020-12-08', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-11-23 16:42:25', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 590, 'Account'), (487, 0, '2020-12-10', 0, '0000-00-00', '', '2428', '70800', '50% of payment initially and remaining after completion of project', '[\"New instance creation with UI theming.\\r\\nDelivery in 10 working days\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2020-12-25', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-12-10 18:55:57', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 590, 'Account'), (488, 2053, '2020-12-15', 0, '0000-00-00', '', '2429', '9440', '100% of payment to be made.', '[\"Website Changes.\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2020-12-30', 'Rekha', 'EXPIRED', 'ACTIVE', 'Quotation', '2020-12-15 13:58:15', '#6, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 264, 'Account'), (489, 0, '2021-01-04', 0, '0000-00-00', '', '2430', '17700', '100% of payment to be done', '[\"e-Commerce website uploading, linking and configuration with product upload\\r\\n\"]', '', 'Happy Garden', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2021-01-19', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-04 19:25:53', ' ASWINI AGROTECH PLOTS 42 &43 KIADB INDUSTRIAL AREA SOMANAHALLI 571429 Karnataka ', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 102, 'Account'), (490, 0, '2021-01-08', 0, '0000-00-00', '', '2431', '5900', '100% of payment to be done', '[\"Domain\",\"Hosting\",\"Service Charges\"]', '', 'Mia Casa', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-01-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-08 17:44:03', '#7, 16th Cross, Malleshwaram, 6th Block, Malleshwaram West, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"1000\",\"3000\",\"1000\"]', 'Within State', 'tax', 263, 'Account'), (491, 3145, '2021-01-21', 0, '0000-00-00', '', '2432', '14160', '100% payment to be done', '[\"Domain renewal charges\",\"Linux managed hosting renewal\\r\\nwith server upgradation. \\r\\nStorage: 5GB, Bandwidth: 25GB\",\"Service charges:\\r\\n20 hours development support. Version upgradation\"]', '', 'Hokkaidobliss', 0, 'Waiting For Approval', '9%', 1080, '9%', 1080, '18%', 0, 12000, '2021-02-05', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-21 18:25:45', 'Banashankari Bangalore Karnartaka 0', '0000-00-00 00:00:00', '[\"1500\",\"5000\",\"5500\"]', 'Within State', 'tax', 696, 'Account'), (492, 0, '2021-01-21', 0, '0000-00-00', '', '2433', '80000', '100% payment to be done', '[\"Support for medusys application.\\r\\n150 support hours. Includes: development, server management, bug fixing and application stabilization. \\r\\nCharges are on per month basis.\"]', '', 'Medusys Pty Ltd', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 80000, '2021-02-05', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-21 18:40:11', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"80000\"]', '', 'no_tax', 713, 'Account'), (493, 0, '2021-01-22', 0, '0000-00-00', '', '2434', '5900', '100% payment to be done', '[\"Website maintenance\\r\\nIncludes: Bug fixing and alignment issues twice a month\"]', '', 'INSTA BUCKS GOLD PVT KTD. ', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-02-06', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-22 13:18:50', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA 560032 ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 527, 'Account'), (494, 0, '2021-01-27', 0, '0000-00-00', '', '2435', '82600', '50% of payment initially and remaining before completion of project', '[\"ERP Application enhancement (January-2021)\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 6300, '9%', 6300, '18%', 0, 70000, '2021-02-11', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-02 16:23:51', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"70000\"]', 'Within State', 'tax', 169, 'Account'), (495, 0, '2021-01-28', 0, '0000-00-00', '', '2436', '45000', '100% payment to be done', '[\"Changes to existing application\\r\\nChanges List:\\r\\n1. Summary to be added in pdf and preview of answered questionnaire, Summary includes keywords. While adding questions, tickbox and text box (flag sign is better) to be given which if ticked should be treated as part of summary and textbox is the content for summary\\r\\n\\r\\n2. Add height, weight and calculate bmi\\r\\n\\r\\n3. Providing patients the option to add profile image and documents.\\r\\n\\r\\n4. Rectify the email footer for the first email sent to fill PHQs.(existing)\\r\\n\\r\\n5. After received column Action plan(maybe short textbox next\\/below to tickbox) and Actioned tickbox column\\r\\n\\r\\n6. Email addresses to be changed for emails to client.\"]', '', 'Medusys Pty Ltd', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2021-02-12', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-01-28 12:56:37', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"45000\"]', '', 'no_tax', 713, 'Account'), (496, 3259, '2021-01-30', 0, '0000-00-00', '', '2437', '78470', '100% payment with PO\r\nWarranty: 1 year warranty on POS machine and printer. Accessories carry 6 months warranty.', '[\"POS machine, 3inch Thermal Printer, Android software, \\r\\nQty-1\",\"Cloud Services(Yearly)\",\"Implementation charges(One time)\",\"Barcode Scanner\\r\\nQty-3\"]', '', 'Novel Tissues', 0, 'Waiting For Approval', '9%', 5985, '9%', 5985, '18%', 0, 66500, '2021-02-14', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-02 18:39:37', '#65A,Hootagalli, Ilavala Hobli Mysore Karnataka 570018', '0000-00-00 00:00:00', '[\"42000\",\"10000\",\"12000\",\"2500\"]', 'Within State', 'tax', 0, 'Lead'), (497, 0, '2021-02-05', 0, '0000-00-00', '', '2438', '7080', '100% payment to be done immediately', '[\"Renewal of Website with 2 domains\\r\\nFrom 6-2-2021 to 5-2-2022\"]', '', 'Kooldair Systems Pvt Ltd', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2021-02-20', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-05 12:25:27', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 267, 'Account'), (498, 0, '2021-02-05', 0, '0000-00-00', '', '2439', '27140', '100% payment to be done', '[\"Server Renewal\\r\\n(1-3-2021 to 31-8-2021)\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2021-02-20', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-05 14:06:00', ' Bangalore ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 159, 'Account'), (499, 1641, '2021-02-05', 0, '0000-00-00', '', '2440', '27140', '100% payment to be done', '[\"Server Renewal\\r\\n(1-3-2021 to 31-8-2021)\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2021-02-20', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-05 14:07:32', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (500, 3260, '2021-02-11', 0, '0000-00-00', '', '2441', '30000', '100% payment to be done ', '[\"Website with payment gateway\"]', '', 'Farah Mukhtar', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 30000, '2021-02-26', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-11 16:07:41', '#302,4th floor, 3rd cross, Xavier layout Bangalore Karantaka 560047', '0000-00-00 00:00:00', '[\"30000\"]', '', 'no_tax', 0, 'Lead'), (501, 0, '2021-02-18', 0, '0000-00-00', '', '2442', '147500', '50% of payment initially and remaining after beta application demo', '[\"ERP Implementation, Modules: Purchase, Inventory, Workflow and Access Control\"]', '', 'View paker India Pvt Ltd', 0, 'Waiting For Approval', '9%', 11250, '9%', 11250, '18%', 0, 125000, '2021-03-05', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-02-18 17:08:26', '84. 4th cross, Panduranganagar, Bannergatta road Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"125000\"]', 'Within State', 'tax', 724, 'Account'), (502, 0, '2021-03-05', 0, '0000-00-00', '', '2443', '4720', '100% payment to be done', '[\"AMC for year 2021-22\"]', '', 'John D Leo Engineering Inc', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-03-20', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-03-05 17:53:16', ' Bangalore ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 100, 'Account'), (503, 0, '2021-03-09', 0, '0000-00-00', '', '2444', '20650', '50% of payment initially and remaining after completion of project', '[\"Dynamic Website\",\"Hosting for 1 year\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 1575, '9%', 1575, '18%', 0, 17500, '2021-03-24', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-03-09 14:16:31', ' Bangalore Karnataka 560008', '0000-00-00 00:00:00', '[\"14000\",\"3500\"]', 'Within State', 'tax', 727, 'Account'), (504, 0, '2021-03-16', 0, '0000-00-00', '', '2445', '5900', '100% Payment to be done', '[\"DentICS AMC for Sri Krishna Sevashrama Hospital\"]', '', 'Dr Shesha Prasad', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-03-31', 'Subramanya', 'WAITING', 'INACTIVE', 'Quotation', '2021-03-30 13:34:53', ' Bengaluru ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 394, 'Account'), (505, 0, '2021-03-30', 0, '0000-00-00', '', '2446', '5900', '100% of payment to be done ', '[\"DentICS AMC for year 2021-22\"]', '', 'Yashas Dental Health Care', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-04-14', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-03-30 13:33:55', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 445, 'Account'), (506, 0, '2021-04-01', 0, '0000-00-00', '', '2447', '4720', '100% Payment to be done', '[\"Service page redesign\"]', '', 'INSTA BUCKS GOLD PVT KTD. ', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-04-16', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-04-01 13:01:09', 'No 78, Sri Hari Towers, 4th Floor Dinnur Main Road, RT Nagar BANGALORE KARNATAKA 560032 ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 527, 'Account'), (507, 3257, '2021-04-06', 0, '0000-00-00', '', '2448', '100000', '100% payment to be done', '[\"Digital marketing\\r\\nMonth: 3\"]', '', 'MMG Constructions LLP', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 100000, '2021-04-21', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-04-07 12:07:54', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022 0', '0000-00-00 00:00:00', '[\"100000\"]', 'Within State', 'no_tax', 721, 'Account'), (508, 0, '2021-04-09', 0, '0000-00-00', '', '2449', '4720', '100% payment to be done', '[\"Website AMC Renewal for year 2021-22\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-04-24', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-04-19 18:07:16', 'T-190, 16th Main, 36th Cross, Jayanagar, 4th T-Block, Bangalore- 560041 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 305, 'Account'), (509, 0, '2021-06-04', 0, '0000-00-00', '', '2450', '5900', '100% of payment to be done', '[\"AMC for website for year 2021-22\"]', '', 'Kids Zone', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-06-19', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-04 14:47:25', '#10, 2nd Main Road, Vyalikaval, Kodandarampura, Malleshwaram West, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 94, 'Account'), (510, 0, '2021-06-08', 0, '0000-00-00', '', '2451', '10620', '100% payment to be done ', '[\"AMC for DentICS for year 2021-22\",\"AMC for website for year 2021-22\"]', '', 'Ashirwad Dental Clinic', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2021-06-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-08 12:01:32', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\",\"5000\"]', 'Within State', 'tax', 129, 'Account'), (511, 0, '2021-06-08', 0, '0000-00-00', '', '2452', '5900', '100% Payment to be done', '[\"AMC for website for 2021-22\"]', '', 'Build Wick Ventures', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-06-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-08 12:24:50', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 629, 'Account'), (512, 0, '2021-06-08', 0, '0000-00-00', '', '2453', '5900', '100% payment to be done', '[\"AMC of Website for 2021-22\"]', '', 'Creative Networks', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-06-23', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-08 13:29:56', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 89, 'Account'), (513, 0, '2021-06-09', 0, '0000-00-00', '', '2454', '76700', '100% payment to be done', '[\"Hosting charges on AWS for Livsys Application \\r\\nMin Rs 5000\\/ per month for 6 months . Number of Instance = 1. Based on Usage.\",\"AMC for application 2021-22\\r\\n\\u2022 50-man hours of development or bug fixing.\\r\\n\\u2022 Server maintenance, if bought from Jayblues.\\r\\n\\u2022 Quarterly backup\\r\\n\\u2022 TAT of 4 hours.\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 5850, '9%', 5850, '18%', 0, 65000, '2021-06-24', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-09 11:18:24', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"30000\",\"35000\"]', 'Within State', 'tax', 590, 'Account'), (514, 3261, '2021-06-23', 0, '0000-00-00', '', '2455', '35400', '100% payment to be done', '[\"ERP Enhancement - 2\"]', '', 'Viewpaker Technology India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2021-07-08', 'Subramanya', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-06-23 17:09:46', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 724, 'Account'), (515, 0, '2021-07-06', 0, '0000-00-00', '', '2456', '25960', '100% of payment in Advance for AMC', '[\"AMC for Jsshospital.in 1-06-2021 To 30-05-2022\"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 1980, '9%', 1980, '18%', 0, 22000, '2021-07-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-07-06 15:41:50', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '0000-00-00 00:00:00', '[\"22000\"]', 'Within State', 'tax', 487, 'Account'), (516, 0, '2021-07-06', 0, '0000-00-00', '', '2457', '106200', '100% payment while start of AMC ', '[\"Annual Maintaining Charge Includes . Software version Upgradation of Mobile APP and Web Application\\r\\n100 Hrs\",\"Support Of Application for Minor changes\\/Upgradation 100 Hrs\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 8100, '9%', 8100, '18%', 0, 90000, '2021-07-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-07-08 19:07:21', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"45000\",\"45000\"]', 'Within State', 'tax', 169, 'Account'), (517, 0, '2021-07-12', 0, '0000-00-00', '', '2458', '5310', 'One time Payment while renewal.', '[\"Hosting and Domain for 1 year July 12 2021 to July 12 2022\"]', '', 'Udupi bakery', 0, 'Waiting For Approval', '9%', 405, '9%', 405, '18%', 0, 4500, '2021-07-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-07-12 15:30:28', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4500\"]', 'Within State', 'tax', 714, 'Account'), (518, 0, '2021-08-03', 0, '0000-00-00', '', '2459', '4720', 'No Comments ', '[\"Domain and Hosting Renewal For One Year 10 Aug 2021 - 1- Aug 2022\"]', '', 'Alert Global Security Service', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-03 18:21:38', '2nd floor, Ramegowda Building, K.R. Road, Opp Nalapaka Hotal,Hoskote,Bengaluru Rural District - 562114 Hoskote Karnataka 562114', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 544, 'Account'), (519, 0, '2021-08-03', 0, '0000-00-00', '', '2460', '4720', 'NO Comments', '[\"Hosting Renewal Till 5 Aug 2022\"]', '', 'Anamiivaa', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-03 18:36:26', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 311, 'Account'), (520, 0, '2021-08-03', 0, '0000-00-00', '', '2461', '4720', 'No Comments', '[\"Hosting and Domain Renewal For www.aswiniagrotech.com\"]', '', 'aswini agrotech', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-03 18:55:21', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 358, 'Account'), (521, 2053, '2021-08-04', 0, '0000-00-00', '', '2462', '8000', 'No Comments', '[\"Hosting Renewal and AMC for website \"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 8000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 11:26:31', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', '', 'no_tax', 0, 'Lead'), (522, 0, '2021-08-04', 0, '0000-00-00', '', '2463', '6000', 'No Comments', '[\"Hosting Renewal for website Till Jan 2022\"]', '', 'Dental Surgery Centre', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 6000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 11:40:28', 'No. 302, V.K.,PLAZA 100 Feet, Ring Road BANASHANKARI 3RD STAGE,7TH BLOCK,4TH PHASE,NEAR DEVEGOWDA PETROL PUMP, Banashankari 3rd Stage, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6000\"]', '', 'no_tax', 230, 'Account'), (523, 0, '2021-08-04', 0, '0000-00-00', '', '2464', '4720', 'No Comments', '[\"Website Renewal For 1 Year Till 15 August 2022. http:\\/\\/ecotravelsind.com\\/\"]', '', 'Eco Travells', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 12:04:29', '#266 5th main 34th A cross 4th block jayanagara Bangalore karnataka 560041', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 493, 'Account'), (524, 0, '2021-08-04', 0, '0000-00-00', '', '2465', '4720', 'No Comments', '[\"Hosting and Domain Renewal for Website Till August 2022\"]', '', 'Elite Canals Dental Clinic', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 12:38:27', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 618, 'Account'), (525, 0, '2021-08-04', 0, '0000-00-00', '', '2466', '4720', 'No Comments', '[\"Website Hosting and Domain Renewal till 5 Aug 2022\"]', '', 'FRESKO CHOICE MEAT PRODUCTS PVT LTD', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 13:38:05', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 715, 'Account'), (526, 0, '2021-08-04', 0, '0000-00-00', '', '2467', '4720', 'No Comments ', '[\"Hosting Renewal For eliteresidencies.com till Jan 2022\"]', '', 'Elite Residencies', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 14:01:09', '#2454 , 17th \'E\' cross, 9th main, banashankari 2nd stage, Bangalore -70 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 231, 'Account'), (527, 0, '2021-08-04', 0, '0000-00-00', '', '2468', '4720', 'No Comments', '[\"Website Hosting renewal and AMC till 27 July 2022\"]', '', 'G V IMPORTS & INFRA', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 14:42:16', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka 560001', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 488, 'Account'), (528, 0, '2021-08-04', 0, '0000-00-00', '', '2469', '5000', 'No Comments', '[\"Hosting Renewal Till Aug 2022\"]', '', 'Nuagefarm ', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 5000, '2021-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-04 18:07:56', ' ', '0000-00-00 00:00:00', '[\"5000\"]', '', 'no_tax', 559, 'Account'), (529, 15, '2021-08-05', 0, '0000-00-00', '', '2470', '5900', 'No Comments', '[\"Renewal of ssl certificate, Domain and Hosting for website royaleelectronics.in Till 10 August 2022\"]', '', 'Raghuveer', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-08-20', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-05 11:09:53', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka 560004', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 0, 'Lead'), (530, 1962, '2021-08-05', 0, '0000-00-00', '', '2471', '4720', 'No Comments', '[\"Renewal of website hosting and AMC for one Year Till 30-06-2022\"]', '', 'Indo Swiss Anti - Shock Limited', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-20', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-05 11:59:35', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka 572103.', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 600, 'Account'), (531, 0, '2021-08-09', 0, '0000-00-00', '', '2472', '5900', 'No Comments', '[\"AMC Renewal Till July 2022 \"]', '', 'LASO ', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-08-24', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-09 13:51:15', ' ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 624, 'Account'), (532, 0, '2021-08-09', 0, '0000-00-00', '', '2473', '4130', 'No Comments', '[\"Website Hosting renewal and AMC till 27 July 2022\"]', '', 'G V IMPORTS & INFRA', 0, 'Waiting For Approval', '9%', 315, '9%', 315, '18%', 0, 3500, '2021-08-24', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-09 14:19:03', '#atom sports gottigere Bannerghatta main road ,Bangalore-560001,Karnataka,India', '0000-00-00 00:00:00', '[\"3500\"]', 'Within State', 'tax', 488, 'Account'), (533, 3253, '2021-08-09', 0, '0000-00-00', '', '2474', '8850', 'No Comments ', '[\"Plugin Charges Schedule Appointment \"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 675, '9%', 675, '18%', 0, 7500, '2021-08-24', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-09 17:05:09', ' Banglore 0', '0000-00-00 00:00:00', '[\"7500\"]', 'Within State', 'tax', 709, 'Account'), (534, 2907, '2021-08-09', 0, '0000-00-00', '', '2475', '5900', 'No Comments', '[\"Website renewal for 12-03-2021 to 12-03-\\r\\n2022\"]', '', 'Narayani Holidays and Conferences Pvt Ltd', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-08-24', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-09 17:31:57', '#24, ,Bangalore-560079,Karnataka,India', '0000-00-00 00:00:00', '[\"5000\"]', '', 'Within State', 674, 'Account'), (535, 0, '2021-08-10', 0, '0000-00-00', '', '2476', '4720', 'No Comments', '[\"Website renewal for 19-03-2021 to 19-03-\\r\\n2022\"]', '', 'National Human Rights', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-25', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-10 13:47:49', 'Indranagar Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 576, 'Account'), (536, 0, '2021-08-10', 0, '0000-00-00', '', '2477', '4720', 'No Comments', '[\"Website renewal for 15-04-2021 to 16-04-\\r\\n2022\"]', '', 'NIRVANBODHI Yoga', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-25', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-10 16:24:13', ' ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 612, 'Account'), (537, 0, '2021-08-10', 0, '0000-00-00', '', '2478', '4720', 'No Comments', '[\"Website renewal for 25-03-2021 to 25-03-\\r\\n2022\"]', '', 'Pragathi Polymers', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-25', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-10 16:56:06', '342/15, opp to satellite bus stand, bapuji nagar, mysore road Bangalore Karnataka 560026', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 582, 'Account'), (538, 1961, '2021-08-10', 0, '0000-00-00', '', '2479', '4720', 'No Comments', '[\"Website renewal for 05-05-2021 to 05-05-\\r\\n2022\"]', '', 'Redstone Retreat', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-25', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-10 17:38:53', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. 0', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 0, 'Lead'), (539, 0, '2021-08-11', 0, '0000-00-00', '', '2480', '3540', 'No Comments', '[\"Hosting Renewal from 07-02-2021 to 07-02-2022\"]', '', 'Cosmos Clean System', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2021-08-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-11 13:40:45', ' #03, Dhanya Nilaya, Paramount White spring estates P Ltd, Balagere Main Road, Varthur, Bangalore Bangalore Karnataka 560087', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 537, 'Account'), (540, 0, '2021-08-11', 0, '0000-00-00', '', '2481', '94400', '50% of payment initially and remaining after completion of 40 Hrs', '[\"Support for BittexForex:\\r\\n\\r\\nSupport will be prepaid billing. Minimum 100 hrs package should be taken.\\r\\nRs 800 per hour billing \\r\\nServer support is also included.\\r\\nOnce we receive changes on BittexForex or any of the project which Jayblues has developed you can utilise the same package \\r\\nWeekly 5 days on working hours 10 to 6 support calls are taken .\\r\\nSupport package is valid for 1 year or once 100 hrs is consumed again new package of 100hrs should be taken.\\r\\nOn each support ticket we will update the number of Hrs required before start of work.once approved we will start the work.\\r\\nSupport ticket can be raised in mail or drive sheet or WhatsApp which ever client is comfortable but approval of Hrs required should be communicated by EMAIL from the concerned person.\"]', '', 'Bittex Forex Ltd', 0, 'Waiting For Approval', '9%', 7200, '9%', 7200, '18%', 0, 80000, '2021-08-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-11 15:25:51', 'Bellandur Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"80000\"]', 'Within State', 'tax', 729, 'Account'), (541, 2686, '2021-08-11', 0, '0000-00-00', '', '2482', '4720', 'No Comments', '[\"Hosting Renewal from 20-03-2021 to 20-\\r\\n03-2022\"]', '', 'SAMOURK IMPORTS & EXPORTS', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-11 16:54:27', 'BTM layout Bangalore karnataka 0', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 670, 'Account'), (542, 0, '2021-08-11', 0, '0000-00-00', '', '2483', '4720', 'No Comments', '[\"Hosting Renewal from 11-08-2021 to 11-\\r\\n08-2022\"]', '', 'silicon Education', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-11 18:11:08', ' ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 647, 'Account'), (543, 0, '2021-08-12', 0, '0000-00-00', '', '2484', '8850', 'No Comments', '[\"Website Renewal from 19-05-2021 to 19-05-2022\",\"11 e-mail ID\"]', '', 'SRMG STONE PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 675, '9%', 675, '18%', 0, 7500, '2021-08-27', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-12 16:28:03', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\",\"3500\"]', 'Within State', 'tax', 307, 'Account'), (544, 0, '2021-08-12', 0, '0000-00-00', '', '2485', '4720', 'No Comments', '[\"Website Renewal from 01-03-2021 to 01-03-2022\"]', '', 'Surya Woods', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-27', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-12 17:35:12', 'SURYA, #1441, 3rd Cross,C and D Block, Kuvempunagar, Mysuru - 570023 Mysore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 436, 'Account'), (545, 2734, '2021-08-13', 0, '0000-00-00', '', '2486', '4720', 'No Comments', '[\"Website Renewal from 01-07-2021 to 01-\\r\\n07-2022\"]', '', 'Travel Mitra', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-28', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-13 13:09:47', '1st floor, AASARE, 8th C Cross, Jnanajyotinagar, Ullal Cross Road, Jnanabharati post, (Near SCR Kalyana mantap) Bangalore Karnataka 560056', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 657, 'Account'), (546, 0, '2021-08-13', 0, '0000-00-00', '', '2487', '4720', '50% of payment initially and remaining after completion of project', '[\"Website Renewal from 01-03-2021 to 01-\\r\\n03-2022\"]', '', 'Trust Dental Corporation', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-28', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-13 13:41:37', '#5, Puttanna Cross, DVG Road, Basavanagudi, Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 392, 'Account'), (547, 0, '2021-08-16', 0, '0000-00-00', '', '2488', '4720', '50% of payment initially and remaining after completion of project', '[\"Website renewal for 16-08-2021 to 16-08-\\r\\n2022\"]', '', 'Turbmax', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-31', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-16 16:34:12', 'Batrahalli near ICiC bank Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 588, 'Account'), (548, 0, '2021-08-16', 0, '0000-00-00', '', '2489', '4720', 'No Comments', '[\"Website renewal for 01-03-2021 to 01-03-\\r\\n2022\"]', '', 'VISAVI FOOD VENTURES', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-31', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-16 16:52:30', 'N0.372,university layout, ringroad, Mysore-570023 mysore karnataka 570023 ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 515, 'Account'), (549, 2540, '2021-08-16', 0, '0000-00-00', '', '2490', '4720', 'No Comments', '[\"Website renewal for 18-06-2021 to 18-06-\\r\\n2022\"]', '', 'Syed', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-31', 'Biddu', 'WAITING', 'INACTIVE', 'Quotation', '2021-08-16 17:13:29', 'Basavanagudi Bangalore Karnataka 560064', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 0, 'Lead'), (550, 0, '2021-08-16', 0, '0000-00-00', '', '2490', '4720', 'No Comments', '[\"Website renewal for 18-06-2021 to 18-06-\\r\\n2022\"]', '', 'Zurie Developers', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-08-31', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-16 17:15:11', ' ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 634, 'Account'), (551, 0, '2021-08-17', 0, '0000-00-00', '', '2491', '45000', 'No Comments', '[\"AMC for ABP portal for One Year \"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 3432, '9%', 3432, '18%', 0, 38136, '2021-09-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-17 11:42:05', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"38136\"]', 'Within State', 'tax', 197, 'Account'), (552, 0, '2021-08-17', 0, '0000-00-00', '', '2492', '4720', 'No Comments', '[\"Hosting Renewal from 25-04-2021 to 25-\\r\\n04-2022\"]', '', 'Trupthi dental care', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-01', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-17 17:14:05', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 298, 'Account'), (553, 0, '2021-08-17', 0, '0000-00-00', '', '2493', '4720', 'No Comments', '[\"Hosting Renewal from 12-08-2021 to 12-08-2022\"]', '', 'Zepnur', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-01', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-17 17:29:10', 'Level 4, No. 305, Anand Onyx 5th Cross, 100 Feet Ring Rd, ter Ring Road, 5th Phase, J. P. Nagar, Bangalore karnataka 560078', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 247, 'Account'), (554, 0, '2021-08-24', 0, '0000-00-00', '', '2494', '3540', 'No Comments', '[\"AMC renewal from 01-07-2021 to 31-06-2022 \"]', '', 'Celestain', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2021-09-08', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-24 18:49:44', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 160, 'Account'), (555, 0, '2021-08-25', 0, '0000-00-00', '', '2495', '4720', 'No Comments', '[\"AMC renewal from 07-09-2021 to 07-09-2022\"]', '', 'Intercontinental Logistics', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-09', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-25 11:44:50', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 144, 'Account'), (556, 0, '2021-08-26', 0, '0000-00-00', '', '2496', '4720', 'No Comments', '[\"Website Hosting from 28-02-2021 to 28-02-2022\"]', '', 'Avyukt Pharmaceuticals', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-10', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-26 12:09:51', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka 560021', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 587, 'Account'), (557, 0, '2021-08-26', 0, '0000-00-00', '', '2497', '4720', 'No Comments', '[\"Website Renewal from 31-08-2021 to 31-08-2022\"]', '', 'TOG Services', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-10', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-26 16:29:21', 'Elita Promenade, A1, 1406, 14th Floor, J P Nagar, 7th Phase Bangalore Karnataka 560078', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 665, 'Account'), (558, 0, '2021-08-26', 0, '0000-00-00', '', '2498', '3540', 'No Comments', '[\"Website Renewal for Visavi Food from 02-06-2021 to 02-06-2022\"]', '', 'aswini agrotech', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2021-09-10', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-26 17:01:00', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 358, 'Account'), (559, 0, '2021-08-28', 0, '0000-00-00', '', '2499', '4720', 'No Comments', '[\"Website Hosting from 14-03-2021 to 14-03-2022\"]', '', 'Durvas Trading inc ', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-12', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-28 12:29:35', 'Royal corner. 1st floor, door 1,2 flat no103, lalbagh road, Banglore Karnataka 560027', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 512, 'Account'), (560, 0, '2021-08-28', 0, '0000-00-00', '', '2500', '4720', 'No Comments', '[\"Website Hosting from 01-03-2021 to 01-03-\\r\\n2022\"]', '', 'Namma Foundation', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-12', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-28 13:02:56', '#378,38th cross,26th Main,6th Block ,Jaynagar Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 483, 'Account'), (561, 0, '2021-08-28', 0, '0000-00-00', '', '2501', '4720', 'No Comments', '[\"Website Hosting from 23-052021 to 23-05-\\r\\n2022\\r\\n\"]', '', 'UPJ Infotech Pvt Ltd', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-09-12', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-28 16:54:01', '1st floor, No47, Savadappa, magadi Main Road, Agrahara Dasarahalli Bangalore Karnataka 560079', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 620, 'Account'), (562, 0, '2021-08-30', 0, '0000-00-00', '', '2502', '3540', 'No Comments', '[\"Website Hosting from 27-03-2021 to 27-03-2022\"]', '', 'Celestain', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2021-09-14', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-30 11:59:08', 'E-203, No. 71, Panduranga Nagar, Bannerghatta Main Road, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 160, 'Account'), (563, 0, '2021-08-30', 0, '0000-00-00', '', '2503', '5900', 'No Comments', '[\"Website Hosting from 01-03-2021 to 01-03-\\r\\n2022\"]', '', 'Navakruthee Enterprises', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-09-14', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-30 13:29:29', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka 560062', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 547, 'Account'), (564, 0, '2021-08-30', 0, '0000-00-00', '', '2504', '5900', 'No Comments', '[\"AMC renewal Till 28 FEB 2022\\r\\nFor website\"]', '', 'Poornaprajna International School', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-09-14', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-30 13:44:50', '#150, Patel Layout, Cheemasandra, Virgonagar Post, Bangalore, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 279, 'Account'), (565, 0, '2021-08-30', 0, '0000-00-00', '', '2505', '8260', 'No Comments', '[\"Hosting\",\"SSL\",\"AMC from 25-05-2021 to 25-05-2022\"]', '', 'Aditi Consultancy', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2021-09-14', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-30 17:06:54', ' Bangalore ', '0000-00-00 00:00:00', '[\"2500\",\"3500\",\"1000\"]', 'Within State', 'tax', 63, 'Account'), (566, 0, '2021-08-31', 0, '0000-00-00', '', '2506', '5900', 'No Comments', '[\"Wesbsite Hosting renewal from 16-06-2021 to 16-06-2022\"]', '', 'khincha dental centre', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-09-15', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-08-31 13:37:54', '\'Aashirwad\', 9/1 O.V.H. Road, Basavangudi, Bangalore - 560 004. Bengaluru Karnataka 560 004.', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 391, 'Account'); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (567, 3271, '2021-09-07', 0, '0000-00-00', '', '2507', '66160', 'No Comments', '[\"Dentics Software Life Time License. Support and SMS charges will be added every year \",\"Server and Domain Charges for 1 year\",\" For 5000 SMS package with 1 year validity is 2600 + 18% GST (Rs 468) = Rs 3068\\r\\n For 10000 SMS package with 1 year validity is 4300 + 18% GST (Rs 774) = Rs 5074\"]', '', 'Dr Srinivas', 0, 'Waiting For Approval', '9%', 5046, '9%', 5046, '18%', 0, 56068, '2021-09-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-07 19:05:24', ' Bangalore 0', '0000-00-00 00:00:00', '[\"45000\",\"8000\",\"3068\"]', 'Within State', 'tax', 731, 'Account'), (568, 116, '2021-09-22', 0, '0000-00-00', '', '2508', '7080', 'No Comments', '[\"AMC renewal for website.\\r\\n\\r\\nAMC Period : 1 Oct 2020 to 1 Oct 2021\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2021-10-07', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-22 11:10:19', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (569, 0, '2021-09-22', 0, '0000-00-00', '', '2509', '15000', 'No Comments', '[\"AMC for Hosting renewal from 01 Oct 2021 to 01 Oct 2022\"]', '', 'Catabill', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2021-10-07', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-22 12:24:53', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"15000\"]', '', 'no_tax', 295, 'Account'), (570, 0, '2021-09-22', 0, '0000-00-00', '', '2510', '5900', 'No Comments', '[\"AMC renewal for website.from 01 Oct 2021 to 01 Oct 2022\"]', '', 'Dr Madhusudhan(Smile Studio)', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-10-07', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-22 12:58:31', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 107, 'Account'), (571, 1962, '2021-09-23', 0, '0000-00-00', '', '2511', '29500', '50% of payment initially and remaining after completion of project', '[\"Website Development\"]', '', 'Indo Swiss Anti - Shock Limited', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2021-10-08', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-23 10:57:10', '#45/46 Satyamangala Industrial Area, Satyamangala, Tumakuru, Karnataka 572103. Bangalore Karnataka 572103.', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 600, 'Account'), (572, 0, '2021-09-23', 0, '0000-00-00', '', '2512', '29500', '50% of payment initially and remaining after completion of project', '[\"Website Development\"]', '', 'AeroCision Aerocomp India Pvt. Ltd.', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2021-10-08', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-09-23 11:30:12', '143-A1, Bommasandra Industrial Area, Bommasandra, Bangalore 560-099 ', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 732, 'Account'), (573, 0, '2021-09-28', 0, '0000-00-00', '', '2513', '53100', '50% of payment initially and remaining after completion of project. ', '[\"Prestashop E-commerce Development with upgraded version \"]', '', 'T.saifuddin & co', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2021-10-13', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-08 16:14:44', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 526, 'Account'), (574, 0, '2021-10-07', 0, '0000-00-00', '', '2514', '18644', 'No Comments', '[\"Website Development with Domain Hosting & Email Accounts\"]', '', 'Siri Global Services', 0, 'Waiting For Approval', '9%', 1422, '9%', 1422, '18%', 0, 15800, '2021-10-22', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-07 11:34:09', ' ', '0000-00-00 00:00:00', '[\"15800\"]', 'Within State', 'tax', 734, 'Account'), (575, 0, '2021-10-11', 0, '0000-00-00', '', '2515', '1770', 'No Comments', '[\"Domain renewal\"]', '', 'Dr Madhusudhan(Smile Studio)', 0, 'Waiting For Approval', '9%', 135, '9%', 135, '18%', 0, 1500, '2021-10-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-11 11:24:26', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"1500\"]', 'Within State', 'tax', 107, 'Account'), (576, 0, '2021-10-11', 0, '0000-00-00', '', '2516', '15000', 'No Comments', '[\"AMC for Hosting renewal\"]', '', 'Catabill', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 15000, '2021-10-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-11 11:43:07', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"15000\"]', '', 'no_tax', 295, 'Account'), (577, 116, '2021-10-11', 0, '0000-00-00', '', '2517', '7080', 'No Comments', '[\"AMC renewal for website.\\r\\nAMC Period : 1 Oct 2021 to 1 Oct 2022\"]', '', 'ALT training college', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2021-10-26', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-11 16:17:30', 'Sarjapur road bellandur gate Bangalore Bangalore 0', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 0, 'Lead'), (578, 0, '2021-10-13', 0, '0000-00-00', '', '2518', '8496', 'No Comments', '[\"Email Accounts - Total 9 \"]', '', 'Siri Global Services', 0, 'Waiting For Approval', '9%', 648, '9%', 648, '18%', 0, 7200, '2021-10-28', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-13 12:45:16', ' ', '0000-00-00 00:00:00', '[\"7200\"]', 'Within State', 'tax', 734, 'Account'), (579, 0, '2021-10-20', 0, '0000-00-00', '', '2519', '4720', 'No Comments', '[\"AMC renewal for website\"]', '', 'Avyukt Pharmaceuticals', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-11-04', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-20 16:03:46', 'No. 929, 3rd Cross Road, 8th A, Main Road, Prakash nagar, 3rd Stage, Rajajinagar, Bengaluru, Karnataka 560021 Banagalore Karnataka 560021', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 587, 'Account'), (580, 0, '2021-10-21', 0, '0000-00-00', '', '2520', '52510', 'No Comments', '[\"Digital Marketing & Ad Campaign Management in Google, Facebook, Instagram\",\"Website domain & hosting renewal from 21-10-2021 to 21-10-2022\"]', '', 'Dr Madhusudhan(Smile Studio)', 0, 'Waiting For Approval', '9%', 4005, '9%', 4005, '18%', 0, 44500, '2021-11-05', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-21 14:01:00', '#74, M.M. Road, Frazer Town, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"40000\",\"4500\"]', 'Within State', 'tax', 107, 'Account'), (581, 0, '2021-10-30', 0, '0000-00-00', '', '2521', '7000', 'No Comments', '[\"Re-designing & Video Editing\"]', '', 'DR JaiKrishna', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 0, 7000, '2021-11-14', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-10-30 18:26:02', ' Bengaluru ', '0000-00-00 00:00:00', '[\"7000\"]', '', 'no_tax', 395, 'Account'), (582, 0, '2021-11-02', 0, '0000-00-00', '', '2522', '9440', 'No Comments', '[\"Email Accounts 16No\'s with configuration \"]', '', 'Radion Dental Equipments Pvt Ltd', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2021-11-17', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-02 18:23:48', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout, Bangalore Karnataka 560096', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 218, 'Account'), (583, 0, '2021-11-04', 0, '0000-00-00', '', '2523', '7670', 'No comments', '[\"Bandwith increasing to 10 GB per day\"]', '', 'Ragav Diagnostic and Research centre Pvt Ltd', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2021-11-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-04 12:45:53', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 186, 'Account'), (584, 0, '2021-11-09', 0, '0000-00-00', '', '2524', '10620', 'No Comments', '[\"Website Renewal\",\"Dentics Renewal\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 810, '9%', 810, '18%', 0, 9000, '2021-11-24', 'Biddu', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-09 11:00:11', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\",\"4000\"]', 'Within State', 'tax', 2, 'Account'), (585, 0, '2021-11-12', 0, '0000-00-00', '', '2525', '11800', 'No comments', '[\"Website Hosting and Domain Renewal for 1 year .\",\"AMC renewal for dentics for 1 year\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2021-11-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-12 12:40:41', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\",\"5000\"]', 'Within State', 'tax', 2, 'Account'), (586, 0, '2021-11-12', 0, '0000-00-00', '', '2526', '29500', 'Quotation is for one month. ', '[\"Paid Marketing Management\\r\\nGoogle Ads:\\r\\n1. Keywords in campaign (Upto 200)\\r\\n2. Ad Copies copywriting (including text and banners) Upto 40\\r\\n3. Negative & fraud click optimisation\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google analytics)\\r\\n6. Bid Management across ads, keywords, locations, devices, Interests\\r\\n7. A\\/B Testing\\r\\n8. Search ads, Display Ads (Google Partner websites)\\r\\n9. YouTube video ads (clients need to provide video)\\r\\n10. Monthly results analysis\\/reporting\\r\\n11. Audience behaviour report\\r\\n12. ROI analysis\\/report\\r\\n13.Ads, landing pages & keywords\\r\\nperformance testing\",\"Landing Page ( Single Page ) One time cost.\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2021-11-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-12-03 11:34:33', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076', '0000-00-00 00:00:00', '[\"23000\",\"2000\"]', 'Within State', 'tax', 305, 'Account'), (587, 0, '2021-11-18', 0, '0000-00-00', '', '2527', '8260', 'No Comments', '[\"Increasing the Hosting Bandwidth from 10 GB to 25 GB Per Day\"]', '', 'Ragav Diagnostic and Research centre Pvt Ltd', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2021-12-03', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-18 12:39:42', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 186, 'Account'), (588, 0, '2021-11-22', 0, '0000-00-00', '', '2528', '7670', 'No Comments ', '[\"Domain and Hosting renewal for 1 year till November 13 2022\"]', '', 'T.saifuddin & co', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2021-12-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-22 16:54:55', 'T Saifuddin and Co 20 Silver Jubilee Park Road Bangalore Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 526, 'Account'), (589, 0, '2021-11-22', 0, '0000-00-00', '', '2529', '5900', 'No Comments ', '[\"Domain and Hosting Renewal for one Year till 13 Nov 2022\"]', '', 'Fly Fast Express', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-12-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-22 16:58:03', '14/4 Mission Road, S.R nagar Banglore 560027 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 118, 'Account'), (590, 0, '2021-11-29', 0, '0000-00-00', '', '2530', '5900', 'No Comments ', '[\"Hosting and Domain Renewal till 1 December 2022\"]', '', 'Ankush Rajpurohit', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-29 11:50:59', '370,6th cross Kamakshi Hospital road Mysuru-570 009 Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 718, 'Account'), (591, 0, '2021-11-29', 0, '0000-00-00', '', '2531', '4720', 'No Comments', '[\"Hosting and Domain renewal Till 1 Dec 2022\"]', '', 'Erigo Associates', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-29 12:19:15', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 723, 'Account'), (592, 0, '2021-11-29', 0, '0000-00-00', '', '2532', '4720', 'No comments', '[\"Hosting and domain Renewal Till 1 Dec 2022\"]', '', 'FDOT', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-29 12:34:54', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA 560027', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 543, 'Account'), (593, 0, '2021-11-29', 0, '0000-00-00', '', '2533', '5900', 'No Comments', '[\"Hosting and domain Renewal till 1 Dec 2022\"]', '', 'Jazz Antique Metals', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2021-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-29 12:38:25', '13/1, 3rd main,11th cross, Koramangala 1st block Bangalore Karnataka 560034', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 546, 'Account'), (594, 0, '2021-11-29', 0, '0000-00-00', '', '2534', '7670', 'No comments', '[\"Hosting and domain renewal of website\"]', '', 'Radion Equipments Pvt Ltd', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2021-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-29 13:18:10', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 426, 'Account'), (595, 0, '2021-11-30', 0, '0000-00-00', '', '2535', '7080', 'No Comments', '[\"Hosting and Domain renewal till 1st Dec 2022\"]', '', 'Medusys Pty Ltd', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2021-12-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-11-30 18:08:26', 'No 36, Caloroga St, Wattle Park SA - 5066 Australia ', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 713, 'Account'), (596, 0, '2021-12-01', 0, '0000-00-00', '', '2536', '4720', 'No Comments', '[\"Domain and Hosting renewal till 1st Dec 2022\"]', '', 'Sri Venu Glass', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-12-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-12-01 16:47:55', 'Shop no.52/A, Ramamurthy Nagar Main Road, Banaswadi, Near Bharat Petrol Bunk, Opp Indian Bank, Bangalore Karnataka 560043', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 540, 'Account'), (597, 0, '2021-12-02', 0, '0000-00-00', '', '2537', '4720', 'No Comments', '[\"Hosting for one year and linking domain Till Dec 1 st 2022\"]', '', 'Aditya Dairy Farm', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2021-12-17', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-12-02 16:26:55', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 531, 'Account'), (598, 3272, '2021-12-06', 0, '0000-00-00', '', '2538', '53100', '50% of payment initially and remaining after completion of project', '[\"Dentics software. One time payment .\\r\\n\\r\\n1. AMC Rs.5000 \\/ year + GST\\r\\n\\r\\n2. The customer to manage the DLT \\r\\n registration and sender ID. Once \\r\\n they get the Sender ID approved, \\r\\n we can configure the same in the \\r\\n PMS software. SMS as per the \\r\\n package they choose. We will send \\r\\n the SMS package tariff soon.\"]', '', 'Dr Divya chalapathy', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2021-12-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2021-12-06 14:52:54', 'No.728/9 , Bommasandra industrial area Main Road Near SBI Bank, Bangalore karnataka 560009', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 0, 'Lead'), (599, 0, '2022-01-04', 0, '0000-00-00', '', '2539', '5900', 'No comments', '[\"Domain and hosting renewal for one year till 1st jan 2022\"]', '', 'Durga Steels Corporation', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-01-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-01-04 16:34:30', 'DURGA Steel Corporation Bangalore Karnataka 560068', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 82, 'Account'), (600, 3118, '2022-01-04', 0, '0000-00-00', '', '2540', '17700', 'No Comments ', '[\"AMC for year 2022-23\"]', '', 'Dayakar Poly clinic', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2022-01-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-01-04 16:41:40', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 691, 'Account'), (601, 0, '2022-01-19', 0, '0000-00-00', '', '2541', '6726', 'No Comments', '[\"AMC for Dentics software for one year .\"]', '', 'Yashas Dental Health Care', 0, 'Waiting For Approval', '9%', 513, '9%', 513, '18%', 0, 5700, '2022-02-03', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-01-19 12:12:57', '#1112, 35th \'D\' Cross, 28th Main, 4th \'T’ Block, Jayanagar, Bangalore - 560041. Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"5700\"]', 'Within State', 'tax', 445, 'Account'), (602, 3257, '2022-01-27', 0, '0000-00-00', '', '2542', '40120', 'No Comments', '[\"Dhanush co-operative society, Logo design , office stationary , website development\",\"Manvitha Housing co-operative society, Logo design , office stationary , website development\"]', '', 'MMG Constructions LLP', 0, 'Waiting For Approval', '9%', 3060, '9%', 3060, '18%', 0, 34000, '2022-02-11', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-01-27 11:26:41', 'New Kantharaj Urs Rd, Kuvempunagara North, Kuvempu Nagara Mysore Karnataka 570022 0', '0000-00-00 00:00:00', '[\"17000\",\"17000\"]', 'Within State', 'tax', 721, 'Account'), (603, 0, '2022-02-01', 0, '0000-00-00', '', '2543', '4720', 'No Comments', '[\"Domain and Server Renewal till Feb 2022\"]', '', 'Century pools', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 12:51:41', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 591, 'Account'), (604, 3168, '2022-02-01', 0, '0000-00-00', '', '2544', '4720', 'No Comments', '[\"Website domain and hosting renewal Till 26 Jan 2023\"]', '', 'C R FABRICATOR', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 13:59:45', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 697, 'Account'), (605, 3145, '2022-02-01', 0, '0000-00-00', '', '2545', '7670', 'No Comments', '[\"hokkaidobliss.com Website renewal till FEB 2023\"]', '', 'Hokkaidobliss', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 14:07:23', 'Banashankari Bangalore Karnartaka 0', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 696, 'Account'), (606, 0, '2022-02-01', 0, '0000-00-00', '', '2546', '4720', 'No Comments', '[\"Website Hosting and Domain Renewal For one Year Till Feb 2023\"]', '', 'JSH Facility Solutions', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 16:33:03', '374 , 1st cross , Raghavanagar , NTY layout , Mysore Road , Bangalore-560026 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 265, 'Account'), (607, 0, '2022-02-01', 0, '0000-00-00', '', '2547', '5900', 'No Comments', '[\"Website Hosting and Domain Renewal till Feb 2023 \"]', '', 'Kooldair Systems Pvt Ltd', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 16:45:11', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 267, 'Account'), (608, 0, '2022-02-01', 0, '0000-00-00', '', '2548', '4720', 'No Comments', '[\"Website hosting and Domain renewal till Feb 2023\"]', '', 'Trupthi dental care', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-02-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-01 17:07:30', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 298, 'Account'), (609, 0, '2022-02-11', 0, '0000-00-00', '', '2549', '27140', 'No comments', '[\"Server Renewal swansilk for 6 months Till August 31 2022\"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2022-02-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-11 16:22:04', ' Bangalore ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 159, 'Account'), (610, 1641, '2022-02-11', 0, '0000-00-00', '', '2550', '27140', 'No comments', '[\"Server Renewal DecoTestil for 6 months Till August 31 2022\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2022-02-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-11 16:23:35', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (611, 15, '2022-02-14', 0, '0000-00-00', '', '2551', '2832', 'No comments. Configuration take one day.', '[\"4 Email Id for 6 months. \"]', '', 'Raghuveer', 0, 'Waiting For Approval', '9%', 216, '9%', 216, '18%', 0, 2400, '2022-03-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-02-14 11:47:17', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka 560004', '0000-00-00 00:00:00', '[\"2400\"]', 'Within State', 'tax', 0, 'Lead'), (612, 0, '2022-03-14', 0, '0000-00-00', '', '2552', '118000', '50% of payment initially and remaining after completion of project', '[\"\\r\\nThe objective of the is application is to collect the CVs. Segregate and store them in a systematic way for the easy search and retrieval. Maintenance of data bases of candidates.\\r\\nAdmin will verify and correct the details submitted by the candidates, download the CVs, edit the CV to remove contact details and other information\\u2019s and upload partial CVs. This partial CV is visible for the clients. At any given point of time in each candidate\\u2019s profile will have two CVs. \\r\\nAdmin will also have search option to search the CVs, to handle the requests from the clients. \\r\\nAdmin can create the candidate\\u2019s profile on behalf of them and upload their CVs. \\r\\n\\r\\nDevelopment phase one Admin and Candidate module. In admin Module uploader role is also included .\",\"server charges yearly 25 GB bandwidth and 10 GB storage. Shared Hosting \"]', '', 'Apt Hr Consultancy', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2022-03-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-03-14 18:40:12', '2nd Floor, No 39, Suite No 1469, NGEF Lane, Indiranagar First Stage, Bangalore Karnataka 560038', '0000-00-00 00:00:00', '[\"85000\",\"15000\"]', 'Within State', 'tax', 738, 'Account'), (613, 0, '2022-04-09', 0, '0000-00-00', '', '2553', '30090', '50% of payment initially and remaining after completion of project', '[\"One Website development charge for 10 - 15 pages static website.\",\"Hosting and server charges Yearly\",\"Logo Design and office stationary design(letter head, visiting card and envelope) \"]', '', 'Jyothi', 0, 'Waiting For Approval', '9%', 2295, '9%', 2295, '18%', 0, 25500, '2022-04-24', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-04-09 18:49:29', 'Electronic City Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"15000\",\"4500\",\"6000\"]', 'Within State', 'tax', 742, 'Account'), (614, 0, '2022-05-12', 0, '0000-00-00', '', '2554', '17700', 'No Comments', '[\"Website hosting Renewal for 1 year\"]', '', 'Government PU College Tumkur', 0, 'Waiting For Approval', '9%', 1350, '9%', 1350, '18%', 0, 15000, '2022-05-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-05-12 18:41:28', 'Government PU college Tumkur ', '0000-00-00 00:00:00', '[\"15000\"]', 'Within State', 'tax', 739, 'Account'), (615, 0, '2022-05-12', 0, '0000-00-00', '', '2555', '4720', 'No Comments ', '[\"Website Hosting and domain renewal till may 2023\"]', '', 'Mpowering skills', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-05-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-05-12 18:59:40', ' Bangalore ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 128, 'Account'), (616, 0, '2022-05-12', 0, '0000-00-00', '', '2556', '5900', 'No Comments', '[\"Website hosting and domain renewal\"]', '', 'Sphoorthi Jyothi Foundation', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-05-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-05-12 19:13:19', ' ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 616, 'Account'), (617, 0, '2022-05-30', 0, '0000-00-00', '', '2557', '5900', 'No comments', '[\"website hosting and domain renewal for one year from the date of renewal .\"]', '', 'Yuva Sene', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-06-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-05-30 16:13:27', 'YUVA SENE #43A/1,M I G Flat, Nandini Layout, Bangalore 560096 Bangalore karnataka 560096', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 520, 'Account'), (618, 0, '2022-06-23', 0, '0000-00-00', '', '2558', '5900', 'No Comments', '[\"Website hosting and domain renewal \"]', '', 'Creative Networks', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-07-08', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-06-23 12:57:21', '#9, 1st Cross, Veerabhadranagar, Banashankari 3rd Stage, Bangalore-560085 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 89, 'Account'), (619, 0, '2022-07-05', 0, '0000-00-00', '', '2559', '11800', 'No comments ', '[\"website Hosting and domain renewal for 1 year till july 2023 \",\"Dentics software renewal for one year till July 2023\"]', '', 'Ashirwad Dental Clinic', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2022-07-20', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-07-27 13:19:02', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\",\"5000\"]', 'Within State', 'tax', 129, 'Account'), (620, 0, '2022-07-13', 0, '0000-00-00', '', '2560', '29500', 'NO comments', '[\"ERP support package of 50 hours 1 year valid . 50% of payment initially and remaining after completion of 6 months that is Till 31 Dec 2022\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-07-28', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-07-13 17:01:40', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 169, 'Account'), (621, 0, '2022-07-14', 0, '0000-00-00', '', '2561', '53100', 'No comments ', '[\"ERP support package of 50 hours 1 year valid . till July 2023\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 4050, '9%', 4050, '18%', 0, 45000, '2022-07-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-07-14 17:05:50', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"45000\"]', 'Within State', 'tax', 169, 'Account'), (622, 0, '2022-07-18', 0, '0000-00-00', '', '2562', '5900', 'No comments', '[\"Website hosting and domain renewal till july 2023\"]', '', 'Navakruthee Enterprises', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-08-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-07-18 19:34:02', 'NO.64, A-6, 1 ST FLOOR, NVM BUILDING, 3 RD MAIN, 3 RD CROSS, VASANTHAPURA MAIN ROAD, NEAR MAHALAKSHMI TEMPLE Bangalore Karnataka 560062', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 547, 'Account'), (623, 0, '2022-07-27', 0, '0000-00-00', '', '2563', '29500', 'No comments', '[\"Application Support for 35 hours valid till one year .June 2023 (reduced 10K for AWS bill)\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-08-11', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-07-27 13:26:52', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 590, 'Account'), (624, 0, '2022-08-04', 0, '0000-00-00', '', '2564', '4720', 'No Comments', '[\"Hosting charges for one year till march 2023\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-08-04 17:50:48', ' Bangalore Karnataka 560008', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 727, 'Account'), (625, 2696, '2022-08-04', 0, '0000-00-00', '', '2565', '5900', 'no comments', '[\"hosting and domain renewal Till July 2023\"]', '', 'SLV Scientific Supplies', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-08-04 17:56:50', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 654, 'Account'), (626, 0, '2022-08-04', 0, '0000-00-00', '', '2566', '5310', 'No comments', '[\"Hosting and domain renewal till August 2023\"]', '', 'Elite Canals Dental Clinic', 0, 'Waiting For Approval', '9%', 405, '9%', 405, '18%', 0, 4500, '2022-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-08-04 18:00:32', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4500\"]', 'Within State', 'tax', 618, 'Account'), (627, 0, '2022-08-23', 0, '0000-00-00', '', '2567', '12980', 'For content updation . Content has to be sent through mail and communication done through phone.', '[\"APIMYSORE.ORG website hosting and domain renewal for one year .Along with 10hrs of support for website changes\",\"content updation for the website for one year (rs 500\\/- for one time updation totally 8 times in a year we will update) \"]', '', 'Brindavan hospital', 0, 'Waiting For Approval', '9%', 990, '9%', 990, '18%', 0, 11000, '2022-09-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-28 14:16:13', '2744, Kalidasa Rd, 4th Block, Vani Vilas Mohalla Mysuru, Karnataka 570002', '0000-00-00 00:00:00', '[\"7000\",\"4000\"]', 'Within State', 'tax', 653, 'Account'), (628, 0, '2022-08-24', 0, '0000-00-00', '', '2568', '35400', 'No comments', '[\"Google Email Id for 10 number. For one year subscription. \\r\\n30 GB cloud storage per user\\r\\n\",\"service charge for Migration from existing email id.\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2022-09-08', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-08-24 18:49:40', ' Bangalore Karnataka 560008', '0000-00-00 00:00:00', '[\"25000\",\"5000\"]', 'Within State', 'tax', 727, 'Account'), (629, 0, '2022-09-14', 0, '0000-00-00', '', '2569', '4720', 'No comments', '[\"Domain and hosting renewal for one year till sept 2023\"]', '', 'Intercontinental Logistics', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 11:29:11', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 144, 'Account'), (630, 0, '2022-09-14', 0, '0000-00-00', '', '2570', '4720', 'No comments', '[\"Website hosting renewal\"]', '', 'Anamiivaa', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 17:05:55', ' #707, 2nd B Main, 1st Floor, Jeevan Nilaya, OMBR Layout, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 311, 'Account'), (631, 0, '2022-09-14', 0, '0000-00-00', '', '2571', '9500', 'No comments', '[\"Hosting renewal till Sept 2023.\\r\\nFrom sept 2021- sept 2023\"]', '', 'Aruna Cadd printers', 0, 'Waiting For Approval', '9%', 725, '9%', 725, '18%', 0, 8050, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 17:26:11', 'S112-C, 1st Floor, Manipal Centre, South Block, Dickenson Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"8050\"]', 'Within State', 'tax', 314, 'Account'), (632, 0, '2022-09-14', 0, '0000-00-00', '', '2572', '4720', 'No comments', '[\"Hosting renewal for one year till sept 2023\"]', '', 'Aditya Dairy Farm', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 17:29:50', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 531, 'Account'), (633, 0, '2022-09-14', 0, '0000-00-00', '', '2573', '4720', '50% of payment initially and remaining after completion of project', '[\"Website hosting renewal till sept 2023\"]', '', 'B4B Data Solutions', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 17:31:45', ' ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 637, 'Account'), (634, 2053, '2022-09-14', 0, '0000-00-00', '', '2574', '9440', 'No comments', '[\"Hosting Renewal and AMC for website till sept 2023\"]', '', 'Dental Diagnostic Centre', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 17:49:32', 'No 9, Katha No 47/9, Jai Plaza symphony, 9th main, sector 6 HSR LAYOUT, Bangalore, Karnataka, India Pin - 560 102 +91 80-2572 3661 Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (635, 0, '2022-09-14', 0, '0000-00-00', '', '2575', '4720', 'No comments', '[\"Website hosting renewal for one year till sept 2023\"]', '', 'FDOT', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 18:06:20', 'NO:12,OLD NO:25,3rd CROSS,SUDHAMANAGAR,BANGALORE,560027 BANGALORE KARNATAKA 560027', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 543, 'Account'), (636, 0, '2022-09-14', 0, '0000-00-00', '', '2576', '4720', 'No comments', '[\"Website renewal for one year till july 2023\"]', '', 'G V IMPORTS & INFRA', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-09-29', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-14 18:20:29', '#atom sports gottigere Bannerghatta main road Bangalore Karnataka 560001', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 488, 'Account'), (637, 2907, '2022-09-15', 0, '0000-00-00', '', '2577', '5900', 'No comments', '[\"Website hosting renewal For one year till sept 2023\"]', '', 'Narayani Holidays and Conferences Pvt Ltd', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2022-09-30', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-15 12:14:40', '#24, Bangalore Karnataka 560079', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 674, 'Account'), (638, 1961, '2022-09-16', 0, '0000-00-00', '', '2578', '4720', 'No Comments', '[\"website hosting renewal till sept 2023\"]', '', 'Redstone Retreat', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-10-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-16 12:19:45', 'Red Stone Retreat, Hanumanthapuram, Tamil Nadu 635107. 0', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 0, 'Lead'), (639, 0, '2022-09-16', 0, '0000-00-00', '', '2579', '4720', 'No Comments', '[\"website hosting renewal till sept 2023\"]', '', 'Turbmax', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-10-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-16 13:07:02', 'Batrahalli near ICiC bank Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 588, 'Account'), (640, 0, '2022-09-16', 0, '0000-00-00', '', '2580', '4720', 'No comments', '[\"Hosting renewal till sept 2023\"]', '', 'Nuagefarm ', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2022-10-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-16 13:46:10', ' ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 559, 'Account'), (641, 3274, '2022-09-27', 0, '0000-00-00', '', '2581', '3954', 'For Requirement collection will be managed through phone or email or our resource is represented to client location . service charge of Rs 1000/- per hour is billed only when our resource is represented to client location out of mysore. Within mysore No service charge on client location visiting. ', '[\"Poster Design for single poster.(content has to be provided from school)\",\"video editing (content has to be provided from school). Maximum 25 slides per video no limit on video length . \"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 302, '9%', 302, '18%', 0, 3350, '2022-10-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-30 11:50:23', ' Mysore 570012', '0000-00-00 00:00:00', '[\"850\",\"2500\"]', 'Within State', 'tax', 740, 'Account'), (642, 3274, '2022-09-27', 0, '0000-00-00', '', '2582', '102660', '50% of payment initially and remaining after completion of project.', '[\"website development charges for \\r\\nSt josephs dornahalli \",\"website development charges for https:\\/\\/www.mdes.co.in\\/ \",\"Support package will be provided with 50 hours package per year which can be utilised for both the websites. the validity of the package will be for one year. support package can be utilised for website updation and for any new development activities. Once support hours is completed it has to be recharged .\"]', '', 'St Josephs Central school', 0, 'Waiting For Approval', '9%', 7830, '9%', 7830, '18%', 0, 87000, '2022-10-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-30 11:46:23', ' Mysore 570012', '0000-00-00 00:00:00', '[\"22000\",\"45000\",\"20000\"]', 'Within State', 'tax', 740, 'Account'), (643, 0, '2022-09-27', 0, '0000-00-00', '', '2583', '45000', 'No comments', '[\"AMC for ABP portal for One Year till 17 -08-2023\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 3432, '9%', 3432, '18%', 0, 38136, '2022-10-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-27 17:28:46', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"38136\"]', 'Within State', 'tax', 197, 'Account'), (644, 3261, '2022-09-30', 0, '0000-00-00', '', '2584', '84960', 'No Comments', '[\"ERP support quotation for 72 hours (Three months duration)\"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 12960, 72000, '2022-10-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-30 16:27:40', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00 00:00:00', '[\"72000\"]', 'Out of State', 'tax', 724, 'Account'), (645, 0, '2022-09-30', 0, '0000-00-00', '', '2585', '34220', '50% of payment initially and remaining after completion of project', '[\"static website development (15 page) client has to provide the website content.\",\"Hosting charges for one year \"]', '', 'John D Leo Engineering Inc', 0, 'Waiting For Approval', '9%', 2610, '9%', 2610, '18%', 0, 29000, '2022-10-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-09-30 16:46:04', ' Bangalore ', '0000-00-00 00:00:00', '[\"24000\",\"5000\"]', 'Within State', 'tax', 100, 'Account'), (646, 0, '2022-11-15', 0, '0000-00-00', '', '2586', '29500', 'Payment Terms: 100% Advance along with the PO\r\nPrice is valid till 30th November, 2022.\r\nPrice is subject to change without any prior notice\r\nOrder once placed cannot be canceled\r\nIf any other Migration, Implementation, Development, Automation & Scripting will be charged extra.', '[\"M365 Business Basic and Configuration charges included\\r\\nFor one year. (One Email ID charge is 1500 and for 10 Email Id charges is 15000)\",\"Service Charges \"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-11-30', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-15 13:08:43', ' Bangalore Karnataka 560008', '0000-00-00 00:00:00', '[\"15000\",\"10000\"]', 'Within State', 'tax', 727, 'Account'), (647, 0, '2022-11-15', 0, '0000-00-00', '', '2587', '21240', '50% of payment initially and remaining after completion of project', '[\"Static Webiste Development and Maintenance Hosting and Domain Included.\"]', '', 'Sumukha Diabetes Centre and Poly Clinic', 0, 'Waiting For Approval', '9%', 1620, '9%', 1620, '18%', 0, 18000, '2022-11-30', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-15 18:04:56', 'No. 107, 1, 4th Main 11th Cross Rd, Vidyaranyapura Mysuru Karnataka 570008', '0000-00-00 00:00:00', '[\"18000\"]', 'Within State', 'tax', 743, 'Account'), (648, 0, '2022-11-15', 0, '0000-00-00', '', '2588', '29500', 'No Comments', '[\"Website Hosting and domain Renewal for one year Till Nov 2023 (Bandwidth unlimited bandwidth per day) \"]', '', 'Ragav Diagnostic and Research centre Pvt Ltd', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-11-30', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-15 17:48:27', 'No.10/804/1, Patalamma Temple Road, Ane Bande Road, Jayanagar 3rd Block East,Opposite to Kalyan Jewellers Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 186, 'Account'), (649, 3276, '2022-11-16', 0, '0000-00-00', '', '2589', '23600', '50% of payment initially and remaining after completion of project.\r\nAMC charges are extra. Rs. 5900/- Per year.', '[\"Website creation (including hosting and domain)\",\"Logo Re-creation\"]', '', 'Vishalakshi', 0, 'Waiting For Approval', '9%', 1800, '9%', 1800, '18%', 0, 20000, '2022-12-01', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-16 14:10:15', 'Govt. Employee Housing Loan Society, Near Sahakara Bhavan Mysore Karnataka 0', '0000-00-00 00:00:00', '[\"18000\",\"2000\"]', 'Within State', 'tax', 0, 'Lead'), (650, 3275, '2022-11-16', 0, '0000-00-00', '', '2590', '59000', '50% of payment initially and remaining after completion of project\r\n100% payment on Digital Marketing.\r\nAd cost not included, it is extra as applicable.', '[\"Website creation (Including Hosting and Domain charges for One year)\",\"Digital Marketing\"]', '', 'K P Realtors , (Balasubramanya B)', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2022-12-01', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-16 16:41:25', ' 0', '0000-00-00 00:00:00', '[\"20000\",\"30000\"]', 'Within State', 'tax', 0, 'Lead'), (651, 3277, '2022-11-18', 0, '0000-00-00', '', '2591', '115640', '50% of payment initially and remaining after completion of project.\r\nContent should be provided from Website owner.', '[\"WEBSITE CREATION MAINTENANCE & HOSTING , LOGO RECREATION (TEMPLE OF TRINITY) 20 pages website\",\"WEBSITE CREATION MAINTENANCE & HOSTING , LOGO RECREATION (LET\'S GO GREEN INDIA) 15 page website\",\"WEBSITE CREATION MAINTENANCE & HOSTING , (JDA PROJECTS) 15 page website\",\"TWO OFFICIAL MAIL ID IN Google CREATION\"]', '', 'JESUDAS', 0, 'Waiting For Approval', '9%', 8820, '9%', 8820, '18%', 0, 98000, '2022-12-03', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-18 12:07:39', '580, CH 44/3A, VANI VILLAS DOUBLE ROAD MYSORE KARNATAKA 0', '0000-00-00 00:00:00', '[\"35000\",\"30000\",\"25000\",\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (652, 0, '2022-11-24', 0, '0000-00-00', '', '2592', '112100', '100% should be made for purchase of server. Service cost can be paid after the installation.', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\\r\\n\",\"Configuration charges One-Time \\r\\n\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 8550, '9%', 8550, '18%', 0, 95000, '2022-12-09', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-24 14:55:07', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"80000\",\"15000\"]', 'Within State', 'tax', 197, 'Account'), (653, 0, '2022-11-29', 0, '0000-00-00', '', '2593', '182900', '100% payment expected ', '[\"New requirement = 139 hours \\r\\nsupport provided = 66 hours ( In this we have revived payment for 50 hours)\\r\\n\\r\\nTotal Pending payment is for = 139 + 16 = 155 hours \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 13950, '9%', 13950, '18%', 0, 155000, '2022-12-14', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-11-30 15:05:13', 'Bangalore ', '0000-00-00 00:00:00', '[\"155000\"]', 'Within State', 'tax', 737, 'Account'), (654, 0, '2022-11-30', 0, '0000-00-00', '', '2594', '135700', '50 % advance at the initial of the project and remaining after completion.', '[\"Industrial Exhibition for GAS Application \",\"Mels online exam Preparations \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 10350, '9%', 10350, '18%', 0, 115000, '2022-12-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-12-17 12:18:26', 'Bangalore ', '0000-00-00 00:00:00', '[\"65000\",\"50000\"]', 'Within State', 'tax', 737, 'Account'), (655, 0, '2022-12-06', 0, '0000-00-00', '', '2595', '26550', 'No comments', '[\"Hosting and domain renewal of website radions.in, radions.co.in\",\"Email Accounts 16No\'s\"]', '', 'Radion Equipments Pvt Ltd', 0, 'Waiting For Approval', '9%', 2025, '9%', 2025, '18%', 0, 22500, '2022-12-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-12-06 10:53:47', '#93/8, 2nd Circular Road, Dollars Scheme Colony, Nandini Layout Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"6500\",\"16000\"]', 'Within State', 'tax', 426, 'Account'), (656, 0, '2022-12-07', 0, '0000-00-00', '', '2596', '3540', 'No Comments', '[\"AMC renewal for website (only hosting)\"]', '', 'Aditya Dairy Farm', 0, 'Waiting For Approval', '9%', 270, '9%', 270, '18%', 0, 3000, '2022-12-22', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-12-07 11:44:54', 'Mulbagal Kothur Village, Ambikal post, Mulbagal 563132 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"3000\"]', 'Within State', 'tax', 531, 'Account'), (657, 0, '2022-12-07', 0, '0000-00-00', '', '2597', '7080', 'No Comments', '[\"DentICS AMC for Sri Krishna Sevashrama Hospital for year 2021-22\"]', '', 'Sri Krishna Sevashrama Hospital', 0, 'Waiting For Approval', '9%', 540, '9%', 540, '18%', 0, 6000, '2022-12-22', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-12-07 12:11:37', '49(540)10th Main, 32 \"C\" Cross, Jaynagar 4th Block, Behind 4th Block Bus Terminus, Bengaluru Karnataka 560011', '0000-00-00 00:00:00', '[\"6000\"]', 'Within State', 'tax', 728, 'Account'), (658, 0, '2022-12-15', 0, '0000-00-00', '', '2598', '29500', 'Payment Terms: 100% Advance.', '[\"M365 Business Basic and Configuration charges included For one year\"]', '', 'Sanghamithra Rural Financial Services', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2022-12-30', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2022-12-15 11:51:21', ' Bangalore Karnataka 560008', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 727, 'Account'), (659, 3118, '2023-01-02', 0, '0000-00-00', '', '2599', '20060', 'No Comments.', '[\"AMC for year 2023-24\"]', '', 'Dayakar Poly clinic', 0, 'Waiting For Approval', '9%', 1530, '9%', 1530, '18%', 0, 17000, '2023-01-17', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-01-02 18:06:49', 'Chikkamagaluru Chikkamagaluru Karnataka 0', '0000-00-00 00:00:00', '[\"17000\"]', 'Within State', 'tax', 691, 'Account'), (660, 0, '2023-01-10', 0, '0000-00-00', '', '2600', '70800', 'No Comments ', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till march 31 2023\\r\\n\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2023-01-25', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-01-11 17:07:31', 'Bangalore ', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 737, 'Account'); INSERT INTO `quotations` (`quotation_id`, `lead_id`, `quo_date`, `potential_id`, `response_date`, `probability`, `quotation_number`, `amount`, `comments`, `description`, `company`, `client_name`, `package_id`, `convert_status`, `gst`, `gst_amount`, `sgst`, `sgst_amount`, `igst`, `igst_amount`, `sub_total`, `quot_end_date`, `generated_by`, `quotation_status`, `delete_status`, `type`, `created_at`, `address`, `updated_at`, `price`, `tax_state`, `tax_no_tax`, `account_id`, `quatetion_from`) VALUES (661, 3261, '2023-01-10', 0, '0000-00-00', '', '2601', '88500', 'Server charges should be paid Upfront. Service charges can be paid once work done.', '[\"Server for ERP 16gb ram \\r\\n100 gb storage\\r\\nUnlimited bandwidth\\r\\n1 Dedicated IP address :\\r\\n4 core cpu. \\r\\nFrom the Month of Jan 2023 to June 2023 (6 months)\",\"Level 3 support 10 hours and one time Migration charges (6 months)\"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 6750, '9%', 6750, '18%', 0, 75000, '2023-01-25', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-01-10 14:48:12', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00 00:00:00', '[\"60000\",\"15000\"]', 'Within State', 'tax', 724, 'Account'), (662, 3168, '2023-01-11', 0, '0000-00-00', '', '2602', '4720', '-', '[\"Website domain and hosting renewal Till 26 Jan 2024\"]', '', 'C R FABRICATOR', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2023-01-26', 'Manjesh', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-01-11 12:20:40', '#277,Sri Nanjundeshwara Nilaya,11th main,Begur Road,Hongasandra Bangalore Karnataka 560068', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 697, 'Account'), (663, 0, '2023-03-04', 0, '0000-00-00', '', '2603', '80240', '50% of payment initially and remaining after completion of project', '[\"Website development and hosting along with domain for ISPSW association (6-10 pages of website ) content will be provided by ISPSW\",\"Journal Application where we can post multiple journals category , department wise and author wise \"]', '', 'Indian Society of Professional Social Works', 0, 'Waiting For Approval', '9%', 6120, '9%', 6120, '18%', 0, 68000, '2023-03-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-03-04 15:27:48', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"23000\",\"45000\"]', 'Within State', 'tax', 235, 'Account'), (664, 0, '2023-03-06', 0, '0000-00-00', '', '2604', '59000', 'Server Renewal for one year ', '[\"Server Renewal for GSSOrganised ERP till Feb 2024\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 4500, '9%', 4500, '18%', 0, 50000, '2023-03-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-03-06 13:35:05', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"50000\"]', 'Within State', 'tax', 169, 'Account'), (665, 0, '2023-03-07', 66, '0000-00-00', '', '2605', '413000', '50% of payment initially and 25% at the final Demo after Deployment of project to your servers remaining 25%', '[\"Development of online training Application with following \\r\\nFeatures \\r\\n\\r\\n1. Add Topics\\u2028 \\r\\n2. Training Plan\\u2028\\r\\n3. Add Content\\u2028\\r\\n4. Test Settings\\r\\n\\u20285. Batch\\r\\n\\u20286. Enrolled Users \\r\\n7. Feedbacks\\u2028\\r\\n8. Request Course\\r\\n\\r\\nApplication will be having Student Login \\r\\nFaculty Login\\r\\nAdmin Login\"]', '', 'DR Hemanth Naik', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-03-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-03-07 16:28:38', 'Viztouch Forensic Imaging Services private limited\r\nBangalore -560003\r\n', '0000-00-00 00:00:00', '[\"350000\"]', 'Within State', 'tax', 0, 'Potential'), (666, 0, '2023-03-09', 0, '0000-00-00', '', '2606', '342200', '50% of payment initially and remaining after completion of project', '[\"WITH ONE ADDITION OF VIDEO SECTION VIDEO SECTION SHOULD PROVIDE USERS ABiLITY TO ADD VIDEOS, SHARE, AND COMMENT, Reply, Ability to\\r\\ndelete ,comment ,reply from admin for any irrelevant (bad comments)\",\"vimeo API integration \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 26100, '9%', 26100, '18%', 0, 290000, '2023-03-24', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-03-09 14:09:05', 'Bangalore ', '0000-00-00 00:00:00', '[\"250000\",\"40000\"]', 'Within State', 'tax', 737, 'Account'), (667, 0, '2023-03-28', 0, '0000-00-00', '', '2607', '41300', '50% of payment initially and remaining after completion of project. Duration of the project is 7 working days ', '[\"New feature implementation for download of report under projects category . this feature includes upload option for admin and download option for user.\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 3150, '9%', 3150, '18%', 0, 35000, '2023-04-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-03-28 18:54:20', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"35000\"]', 'Within State', 'tax', 197, 'Account'), (668, 0, '2023-04-11', 0, '0000-00-00', '', '2608', '29500', '50% of payment initially and remaining after completion of project', '[\"New Feature implementation 60 hours of work . check for request status. upgradation of grid loading feature.\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2023-04-26', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-04-11 13:14:34', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 590, 'Account'), (669, 3261, '2023-04-17', 0, '0000-00-00', '', '2609', '165200', 'No comments ', '[\"Change request and Support From 13 August 2022 to 17 April 2023 Total 143.5 hours \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 25200, 140000, '2023-05-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-04-18 17:15:49', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00 00:00:00', '[\"140000\"]', 'Out of State', 'tax', 724, 'Account'), (670, 0, '2023-04-18', 0, '0000-00-00', '', '2610', '70800', 'No Comments', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till July 31 2023\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 5400, '9%', 5400, '18%', 0, 60000, '2023-05-03', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-04-18 16:24:18', 'Bangalore ', '0000-00-00 00:00:00', '[\"60000\"]', 'Within State', 'tax', 737, 'Account'), (671, 3255, '2023-04-20', 0, '0000-00-00', '', '2611', '8260', 'No Comments', '[\"Hosting for dentics Application Till April 2024\"]', '', 'The Dental Square Multispeciality Dental clinic', 0, 'Waiting For Approval', '9%', 630, '9%', 630, '18%', 0, 7000, '2023-05-05', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-04-21 12:59:36', 'Bangalore ', '0000-00-00 00:00:00', '[\"7000\"]', 'Within State', 'tax', 0, 'Lead'), (672, 3261, '2023-04-28', 0, '0000-00-00', '', '2612', '118000', 'No comments', '[\"Automated mail configuration for reports\",\"Four days rahul has supported in pondicherry\",\"Support from mysore\",\"Travel Allowance \"]', '', 'Plumage', 0, 'Waiting For Approval', '9%', 9000, '9%', 9000, '18%', 0, 100000, '2023-05-13', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-04-28 12:12:31', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry Pondicherry 605009', '0000-00-00 00:00:00', '[\"45000\",\"40000\",\"5000\",\"10000\"]', 'Within State', 'tax', 724, 'Account'), (673, 0, '2023-05-03', 0, '0000-00-00', '', '2613', '472000', '50% of payment initially and remaining after completion of project. Server Cost, vimeo subscription is not included in the quote during development stage JAYBLUES will provide. Once Application go live we suggest based on the traffic ', '[\"Web Application Development for Online training of multiple courses on different category which has payment gateway, vimeo video integration, ePDF and Audio study materials\",\"ViMEO video API integration\"]', '', 'AMCAD International', 0, 'Waiting For Approval', '9%', 36000, '9%', 36000, '18%', 0, 400000, '2023-05-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-03 12:43:06', 'Mysore ', '0000-00-00 00:00:00', '[\"350000\",\"50000\"]', 'Within State', 'tax', 744, 'Account'), (674, 0, '2023-05-03', 0, '0000-00-00', '', '2614', '35400', 'Service charge should paid in advance. Marketing budget will be paid through card or online directly to the social media ', '[\"Digital Marketing Lead Generation for Parivarthana school and college duration 1 month\"]', '', 'Parivarthana School & College', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2023-05-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-03 13:06:33', 'Srirangapatna Karnataka 571438', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 745, 'Account'), (675, 0, '2023-05-03', 0, '0000-00-00', '', '2615', '35400', '100 % payment at initial. Prepaid . Ad cost is not included in the following quote. ', '[\"Digital Marketing along with lead generation in google FB and Instagram monthly billing \"]', '', 'AMCAD International', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2023-05-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-03 19:09:46', 'Mysore ', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 744, 'Account'), (676, 0, '2023-05-12', 0, '0000-00-00', '', '2616', '7670', '50% of payment initially and remaining after completion of project', '[\"Dentics AMC for year till May 15 2024\"]', '', 'Ashirwad Dental Clinic', 0, 'Waiting For Approval', '9%', 585, '9%', 585, '18%', 0, 6500, '2023-05-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-12 16:50:02', '#680, 17th Cross, 26th Main, JP Nagar 6th Phase, Near Nandini Hotel, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"6500\"]', 'Within State', 'tax', 129, 'Account'), (677, 170, '2023-05-20', 0, '0000-00-00', '', '2617', '29500', '50% of payment initially and remaining after completion of project', '[\"Website development and hosting along with domain for ISPSW association (6-10 pages of website ) content will be provided by ISPSW including 1 year maintainence \"]', '', 'Indian Society of Professional Social Works', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2023-06-04', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-20 12:27:51', 'Department of Psychiatric Social Work,NIMHANS Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (678, 0, '2023-05-31', 0, '0000-00-00', '', '2618', '41300', '1 year support for 35 hours on issues and changes', '[\"AmC till May 31 2024\"]', '', 'Livsys Devices India Pvt Ltd', 0, 'Waiting For Approval', '9%', 3150, '9%', 3150, '18%', 0, 35000, '2023-06-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-05-31 19:09:47', '#26, G-Floor, 4th Cross, Jitendranagara, Anajanapura township Bengaluru Karnataka 560 062', '0000-00-00 00:00:00', '[\"35000\"]', 'Within State', 'tax', 590, 'Account'), (679, 0, '2023-06-13', 0, '0000-00-00', '', '2619', '29500', 'No comments', '[\"Catabill software Upgradation and Included in this AMC . Hosting server charges for one year included.\"]', '', 'Catabill', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2023-06-28', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-06-13 15:51:01', '104, Grape Garden Enclave, 64/3, 1st cross, vivekanandanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 295, 'Account'), (680, 0, '2023-07-03', 0, '0000-00-00', '', '2620', '265500', '50% of payment initially and remaining after completion of project', '[\"Digital Marketing monthly. Lead Generation. Service cost. Ad cost as per budgeted which is not included in service cost\",\"MLM Software with simple binary, limited to 10 link . multiple referral to any child \"]', '', 'AMCAD', 0, 'Waiting For Approval', '9%', 20250, '9%', 20250, '18%', 0, 225000, '2023-07-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-07-03 18:53:49', 'Rajakamal Estate, Bannur Main Road Halagayyanahundi, near R R Wedding Bells Mysuru Karnataka 570028', '0000-00-00 00:00:00', '[\"25000\",\"200000\"]', 'Within State', 'tax', 747, 'Account'), (681, 0, '2023-07-07', 0, '0000-00-00', '', '2621', '413000', '50% of payment initially and remaining after completion of project', '[\"Create a new header content to show the subscription validity date (all the time)\\r\\n - track subscription data\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nNotification for renewal of subscription\\r\\n\\r\\n Banner in the homepage after every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\r\\n Popup message upon every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\r\\nSame message in top of Notifications section (all the time from T-90days)\\r\\n\\r\\nEmail notifications to users T-90days\\/T-60days\\/T-45days\\/T-30days\\/T-15days\\/T-10days\\/T-5days\\/T-1day\\r\\n\\r\\nEmail Notifications users who have missed the renewal \\u2013 (T+ every 15days)\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023\",\"All users who have registered from 1\\/1\\/2023\\r\\n one year from date of registration\\r\\n\\r\\nRenewal and new membership drive\\r\\nWe can send discount information thru notifications for time bound registrations\\r\\n\\u2022(example\\u2026 if u renew T-90days - __ discount\\r\\n\\u2022T-60 to 90 days - ____\\r\\n\\u2022T-30 to 60 days _____\\r\\n\\u2022T-15 to 30 days _____\\r\\n\\r\\n We can provide some hidden discount e-card in GAS Medusys for renewals and in Medusys website for new registrations (fixed 10days or 15 days period) code- 5j851\\r\\n\\r\\nReferrals \\u2013 refer a friend and get discount for next subscription\\r\\n Example.. 5% discount for each reference.. 50% discount if you refer 10 people. 100% discount if you refer 20 people. GAMER ID\\r\\n\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-07-22', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-07-07 22:26:00', 'Bangalore ', '0000-00-00 00:00:00', '[\"225000\",\"125000\"]', 'Within State', 'tax', 737, 'Account'), (682, 0, '2023-07-22', 0, '0000-00-00', '', '2622', '76700', 'No Comments ', '[\"2x Intel Xeon E5-2695\\r\\n8 Core Processor\\r\\n16 RAM DDR4\\r\\n256 GB SSD\\r\\nCentos 7 64Bit MYSQL 5.7 or MariaDB 10.*\\r\\n100Mbit Unlimited Bandwith\\r\\n1 Dedicated IP address\\r\\n\\r\\nSupport hours package 25 hours for next 3 months.\\r\\n\\r\\nServer renewed till October 31 2023\\r\\n\",\"Users Login Support hours consumed June and July 2023 5 hours\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 5850, '9%', 5850, '18%', 0, 65000, '2023-08-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-07-22 13:02:38', 'Bangalore ', '0000-00-00 00:00:00', '[\"60000\",\"5000\"]', 'Within State', 'tax', 737, 'Account'), (683, 0, '2023-07-22', 0, '0000-00-00', '', '2623', '26550', 'No comments', '[\"ERP support package of 50 hours 1 year valid . till July 2024\"]', '', 'GSS PROJECT CONSULTANTS PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 2025, '9%', 2025, '18%', 0, 22500, '2023-08-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-07-22 13:33:12', '1104, Udayaravi Rd, Block K, Kuvempu Nagara Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"22500\"]', 'Within State', 'tax', 169, 'Account'), (684, 0, '2023-07-26', 0, '0000-00-00', '', '2624', '259600', '50% of payment initially and remaining after completion of project', '[\"PHASE 1\\r\\nCreate a new header content to show the subscription validity date (all the time) - track subscription data\\r\\nPHASE 1\\r\\n \\u2022 \\u2022\\r\\n\\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\nRegistration date and Subscription End Date field column in USER Management members list (all the time)\\r\\nRenew subscription\\r\\nRenewal and payment before the expiry date -\\r\\nRENEW NOW BUTTON TO BE SHOWN IN HOMESCREEN AFTER LOGIN Subscription date starts from\\r\\nRenewal and payment after the expiry date \\u2013\\r\\nRENEW NOW BUTTON TO BE SHOWN WHEN USER TRIES TO LOGIN WITH SAME\\r\\nUSERNAME PASSWORD.\\r\\n\\r\\nSubscriptions\\r\\nAll users who had registered in 2022 \\u2013 start 1\\/1\\/2023 to 31\\/12\\/2023 All users who have registered from 1\\/1\\/2023\\r\\none year from date of registration\\r\\n\",\"PHASE 2\\r\\nNotification for renewal of subscription\\r\\n\\u2022 Banner in the homepage after every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Popup message upon every login to alert user prior to 90 days (all the time from T-90days)\\r\\n\\u2022 Same message in top of Notifications section (all the time from T-90days)\\r\\n\\u2022 Email notifications to users T-90days\\/T-60days\\/T-45days\\/T-30days\\/T-15days\\/T-10days\\/T-5days\\/T-1day\\r\\n\\u2022 Email Notifications users who have missed the renewal \\u2013 (T+ every 15days)\\r\\n \\r\\n \\r\\n \\u2022 \\u2022 \\u2022 \\u2022 \\u2022 \\u2022\\r\\n\\u2022\\r\\n\\u2022 \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 19800, '9%', 19800, '18%', 0, 220000, '2023-08-10', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 15:58:50', 'Bangalore ', '0000-00-00 00:00:00', '[\"110000\",\"110000\"]', 'Within State', 'tax', 737, 'Account'), (685, 2696, '2023-08-04', 0, '0000-00-00', '', '2625', '5900', 'No Comments ', '[\"hosting and domain renewal Till July 2024\"]', '', 'SLV Scientific Supplies', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 14:39:34', '# 941, S N nagar, M K Halli near Rain Bow Public School land mark Trendz Apartment Gaddige Road Mysore Karnataka 570026', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 654, 'Account'), (686, 0, '2023-08-04', 0, '0000-00-00', '', '2626', '4720', 'No comments', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2024\\r\\n\"]', '', 'Elite Canals Dental Clinic', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 14:44:22', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 618, 'Account'), (687, 0, '2023-08-04', 0, '0000-00-00', '', '2627', '5900', 'No comments', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2024\\r\\n\"]', '', 'aswini agrotech', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 14:55:03', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 358, 'Account'), (688, 0, '2023-08-04', 0, '0000-00-00', '', '2628', '5664', 'No comments', '[\"Hosting and Domain Renewal for Website\\r\\nTill August 2024\\r\\n\"]', '', 'Royale electronics', 0, 'Waiting For Approval', '9%', 432, '9%', 432, '18%', 0, 4800, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 14:58:59', 'No.76 ,opp to Bharthi nursing home south end Road Basavangudi Bengaluru karnataka 560004', '0000-00-00 00:00:00', '[\"4800\"]', 'Within State', 'tax', 491, 'Account'), (689, 0, '2023-08-04', 0, '0000-00-00', '', '2629', '27140', 'NO COMMENTS', '[\"Server renewal for 6 months valid 22 Feb 24 \"]', '', 'Swansilk Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 15:17:15', ' Bangalore ', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 159, 'Account'), (690, 1641, '2023-08-04', 0, '0000-00-00', '', '2630', '27140', 'No comments', '[\"Server renewal for 6 months valid 22 Feb 24\\t\"]', '', 'DecoTextil Pvt Ltd', 0, 'Waiting For Approval', '9%', 2070, '9%', 2070, '18%', 0, 23000, '2023-08-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-04 15:19:36', ' Bangalore Karnataka 0', '0000-00-00 00:00:00', '[\"23000\"]', 'Within State', 'tax', 0, 'Lead'), (691, 0, '2023-08-23', 0, '0000-00-00', '', '2631', '354000', '50% of payment initially and remaining after completion of project. 45 working days for development.', '[\"LogBook Module development along with report (25 report has to download in a single file as per the login with filter option to reports similar to CNB. When user click on get report, message should be given that come after some time and download here )\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 27000, '9%', 27000, '18%', 0, 300000, '2023-09-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-25 14:45:26', 'Bangalore ', '0000-00-00 00:00:00', '[\"300000\"]', 'Within State', 'tax', 737, 'Account'), (692, 0, '2023-08-23', 0, '0000-00-00', '', '2631', '413000', '50% of payment initially and remaining after completion of project. 45 working days for development.', '[\"LogBook Module development along with report (25 report has to download in a single file as per the login with filter option to reports similar to CNB. When user click on get report, message should be given that come after some time and download here )\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 31500, '9%', 31500, '18%', 0, 350000, '2023-09-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-23 13:21:25', 'Bangalore ', '0000-00-00 00:00:00', '[\"350000\"]', 'Within State', 'tax', 737, 'Account'), (693, 0, '2023-08-25', 0, '0000-00-00', '', '2632', '129800', '50% of payment initially and remaining after completion of project.', '[\"Medusys GAS CPD Portfolio Module development\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 9900, '9%', 9900, '18%', 0, 110000, '2023-09-09', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-25 14:47:13', 'Bangalore ', '0000-00-00 00:00:00', '[\"110000\"]', 'Within State', 'tax', 737, 'Account'), (694, 0, '2023-08-26', 0, '0000-00-00', '', '2633', '29500', '50% of payment initially and remaining after completion of project', '[\"New page integration for admin and website display of inpatient and outpatient dynamically from admin login\"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 2250, '9%', 2250, '18%', 0, 25000, '2023-09-10', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-26 13:30:02', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka 570004', '0000-00-00 00:00:00', '[\"25000\"]', 'Within State', 'tax', 487, 'Account'), (695, 0, '2023-08-31', 0, '0000-00-00', '', '2634', '35400', '50% of payment initially and remaining after completion of project', '[\"MCQ module implementation using google sheets .\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 2700, '9%', 2700, '18%', 0, 30000, '2023-09-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-08-31 11:59:24', 'Bangalore ', '0000-00-00 00:00:00', '[\"30000\"]', 'Within State', 'tax', 737, 'Account'), (696, 0, '2023-09-12', 0, '0000-00-00', '', '2635', '5900', 'No Comments ', '[\"Hosting and server renewal for one year Till Sept 10 2024\"]', '', 'Jaisri Leather Fashions', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2023-09-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-09-12 11:27:27', 'No.49, 1 St Main, 2 Nd Cross, New Maruthi Nagar Extension chikkabanavara Bangalore Karnataka 560090', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 138, 'Account'), (697, 0, '2023-09-12', 0, '0000-00-00', '', '2636', '4720', 'No comments ', '[\"Website domain and hosting renewal till sept 10 2024\"]', '', 'Intercontinental Logistics', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2023-09-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-09-12 12:09:46', '#3/1,Coconut garden , 3rd main,1st cross, New thippasandra, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 144, 'Account'), (698, 0, '2023-09-12', 0, '0000-00-00', '', '2637', '500320', '50% of payment initially and remaining after completion of project', '[\"Medusys GAS CPD Portfolio Module development\\t\",\"LogBook Module development along with report (25 report has to download in a single file as per the login with filter option to reports similar to CNB. When user click on get report, message should be given that come after some time and download here )\\t\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 38160, '9%', 38160, '18%', 0, 424000, '2023-09-27', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-09-12 15:31:06', 'Bangalore ', '0000-00-00 00:00:00', '[\"110000\",\"314000\"]', 'Within State', 'tax', 737, 'Account'), (699, 0, '2023-10-18', 0, '0000-00-00', '', '2638', '11800', ' No comments', '[\"Dentics Renewal for one year \",\"Dentics server renewal for one year\"]', '', 'Savadi Dental Care', 0, 'Waiting For Approval', '9%', 900, '9%', 900, '18%', 0, 10000, '2023-11-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-10-18 13:48:29', 'SHIRAHA, 1st Floor, 296/D, 38th Cross, 9th main 5th Block, Jayanagar, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\",\"5000\"]', 'Within State', 'tax', 2, 'Account'), (700, 0, '2023-11-16', 0, '0000-00-00', '', '2639', '94400', 'Yearly billing ', '[\"Yearly Plan \\r\\n\\u00b7 200 GB storage\\r\\n\\u00b7 8 GB RAM\\r\\n\\u00b7 4 CPUs\\ufeffUnmetered traffic\\ufeff\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 7200, '9%', 7200, '18%', 0, 80000, '2023-12-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-11-16 14:10:52', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"80000\"]', 'Within State', 'tax', 197, 'Account'), (701, 0, '2023-11-21', 0, '0000-00-00', '', '2640', '141600', '50% of payment initially and remaining after completion of project', '[\"Redesign of DDCSMILES Website in New design and React Technology \"]', '', 'DR JaiKrishna', 0, 'Waiting For Approval', '9%', 10800, '9%', 10800, '18%', 0, 120000, '2023-12-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-11-21 14:56:11', ' Bengaluru ', '0000-00-00 00:00:00', '[\"120000\"]', 'Within State', 'tax', 395, 'Account'), (702, 3261, '2023-11-30', 0, '0000-00-00', '', '2641', '188800', 'Support ', '[\"Support for Plumage ERP 160 hours From May 2023 to Nov 2023\"]', '', 'Plumage Technology Private Limited', 0, 'Waiting For Approval', '9%', 0, '9%', 0, '18%', 28800, 160000, '2023-12-15', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-12-12 09:48:45', 'R.S. No. 17/2, Gothi Industrial Complex Vazhudavur Road, Kurumbapet Villianur Commune Pondicherry 605009', '0000-00-00 00:00:00', '[\"160000\"]', 'Out of State', 'tax', 724, 'Account'), (703, 3253, '2023-12-15', 0, '0000-00-00', '', '2642', '100300', '50% of payment initially and remaining after completion of project', '[\"1.6 static pages with responsive design compatible to mobile and tab screens \\r\\n 2. Schedule meeting with add in time available in back end\\r\\n3. Contact us from..\\r\\n4. Blogs\\r\\n5. \\u2060uploaded videos\\r\\n6.appointment scheduler \"]', '', 'Kshitij', 0, 'Waiting For Approval', '9%', 7650, '9%', 7650, '18%', 0, 85000, '2023-12-30', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-12-15 22:10:58', ' Banglore ', '0000-00-00 00:00:00', '[\"85000\"]', 'Within State', 'tax', 709, 'Account'), (704, 2053, '2023-12-19', 0, '0000-00-00', '', '2643', '9440', 'No comments', '[\"Hosting Renewal and AMC for website sept 2024\"]', '', 'DR JaiKrishna', 0, 'Waiting For Approval', '9%', 720, '9%', 720, '18%', 0, 8000, '2024-01-03', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-12-19 12:32:29', ' \r\nKarnataka 0', '0000-00-00 00:00:00', '[\"8000\"]', 'Within State', 'tax', 0, 'Lead'), (705, 0, '2023-12-22', 0, '0000-00-00', '', '2644', '278480', 'Support already provided ', '[\"Support on changes and new requirement . 229 hours from 01-08-2023 till 31-12-2023\",\"Login Support From 01-08-2023 till 31-12-2023 . 7 hours\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 21240, '9%', 21240, '18%', 0, 236000, '2024-01-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2023-12-22 21:29:50', 'Bangalore ', '0000-00-00 00:00:00', '[\"229000\",\"7000\"]', 'Within State', 'tax', 737, 'Account'), (706, 3271, '2024-01-04', 0, '0000-00-00', '', '2645', '5900', 'No comments', '[\"Website Renewal for one year till jan 3 2025 . BANGALOREORALMEDICINE.COM\\r\\n\"]', '', 'Sadguru’s Facial & Dental Clinic', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-01-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-01-04 19:15:17', '240, 1st Floor, Besides Hitech Kidney Stone Hospital 32nd Cross, 7th Block, Jayanagar Bangalore Karnataka 560082', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 731, 'Account'), (707, 0, '2024-01-20', 0, '0000-00-00', '', '2646', '595900', '50% of payment initially and remaining after completion of project.\r\nFor mobile App we need one month as approval takes time .\r\nLogbook web application will be given at 20 days.\r\nInstitution module development duration 45days .', '[\"Logbook New mobile Android webApp development and hosting \\r\\nLogbook Web Application and New server Setup \",\"Development of New Institution 1 Module for GAS application.\\r\\nNew server setup with 2 different database.\\r\\nNo new app provided .\\r\\nPresent GAS app will get this module.\\r\\n \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 45450, '9%', 45450, '18%', 0, 505000, '2024-02-04', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-01-20 15:11:39', 'Bangalore ', '0000-00-00 00:00:00', '[\"185000\",\"320000\"]', 'Within State', 'tax', 737, 'Account'), (708, 0, '2024-01-22', 0, '0000-00-00', '', '2647', '250160', '50% of payment initially and remaining after completion of project', '[\"Development of New Institution 1 Module for GAS application.\\r\\nNew server setup with 2 different database.\\r\\nPresent GAS app will get this module.\\r\\n \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 19080, '9%', 19080, '18%', 0, 212000, '2024-02-06', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-03-29 15:17:46', 'Bangalore ', '0000-00-00 00:00:00', '[\"212000\"]', 'Within State', 'tax', 737, 'Account'), (709, 0, '2024-01-16', 0, '0000-00-00', '', '2648', '144999', '100% payment in advance', '[\"BrightClass Eyeris A10 75 inch\\u201d with Built-in Android + BrightClass App on Android \",\"Birdcam VC1\"]', '', 'JSS Science and Technology University ', 0, 'Waiting For Approval', '9%', 11059, '9%', 11059, '18%', 0, 122881, '2024-02-18', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-03 12:50:40', ' Mysore Karnataka ', '0000-00-00 00:00:00', '[\"97881.36\",\"25000.00\"]', 'Within State', 'tax', 751, 'Account'), (710, 0, '2024-02-10', 4, '0000-00-00', '', '2649', '469499', '100% payment in advance', '[\"BrightClass Eyeris A10 65 inch\\u201d with Built-in Android + BrightClass App on Android \",\"BrightClass Eyeris A10 75 inch\\u201d with Built-in Android + BrightClass App on Android \",\"BrightClass Eyeris A10 86 inch\\u201d with Built-in Android + BrightClass App on Android \"]', '', 'JSS Hospital', 0, 'Waiting For Approval', '9%', 35809, '9%', 35809, '18%', 0, 397881, '2024-02-25', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-10 19:35:57', 'Mahathma Gandhi Road, Mysore Karnataka, India. Pin- 570004 Mysore Karnataka', '0000-00-00 00:00:00', '[\"97881.36\",\"110000\",\"190000\"]', 'Within State', 'tax', 0, 'Potential'), (711, 0, '2024-02-19', 0, '0000-00-00', '', '2650', '5900', 'No comments', '[\"Website hosting and domain renewal till feb 2025. Both domain has been renewed.\"]', '', 'Kooldair Systems Pvt Ltd', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-03-05', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-19 12:28:42', 'Gold Signature building, 3rd floor, Mosque road , Frazer town, Benguluru Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 267, 'Account'), (712, 0, '2024-02-21', 0, '0000-00-00', '', '2651', '4720', 'No comments', '[\"website domain and hosting renewal till FEB 25 th 2025\"]', '', 'Century pools', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2024-03-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-21 14:23:14', ' Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 591, 'Account'), (713, 0, '2024-02-21', 0, '0000-00-00', '', '2652', '4720', 'No comments', '[\"Website renewal and hosting renewal til 21 Feb 2025\"]', '', 'Trupthi dental care', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2024-03-07', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-21 14:30:03', 'NO.29,1st Floor,3rd Stage,Next to SBM,Vinayaka Layout, Vijayanagar,Bengaluru-560040. Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 298, 'Account'), (714, 0, '2024-02-24', 0, '0000-00-00', '', '2653', '215940', 'No comments', '[\"New Change request From 23 Dec 2023 To 22 FEB 2024 total 161 hours\",\"Support hours 27 Dec 2023 to 12 Feb 2023 is 22 hours\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 16470, '9%', 16470, '18%', 0, 183000, '2024-03-10', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-24 19:51:37', 'Bangalore ', '0000-00-00 00:00:00', '[\"161000\",\"22000\"]', 'Within State', 'tax', 737, 'Account'), (715, 0, '2024-02-26', 0, '0000-00-00', '', '2654', '13688', 'No comments', '[\"Rajiv Dental Hosting Renewal Rs 5000 for hosting 1 year . For two years we are renewing \",\"Domain Rs 800 for 1 year . For two years we are renewing \"]', '', 'Rajiv Dental Care Centre', 0, 'Waiting For Approval', '9%', 1044, '9%', 1044, '18%', 0, 11600, '2024-03-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-02-26 18:42:04', 'No. 29, 30/28, 1st Floor,Rajiv Plaza, 9th Main, 50Ft Road, Hanumantha Nagar, Bengaluru Karnataka ', '0000-00-00 00:00:00', '[\"10000\",\"1600\"]', 'Within State', 'tax', 464, 'Account'), (716, 0, '2024-03-28', 0, '0000-00-00', '', '2655', '5900', 'No comments', '[\"Website renewal and Till March 2025\"]', '', 'Truecon Enterprises', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-04-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-03-28 15:54:52', 'No 10/8 Someshwara layout, Bilekahalli, Bangalore 560076 Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 305, 'Account'), (717, 0, '2024-03-28', 0, '0000-00-00', '', '2656', '5900', 'No Comments', '[\"website Renewal till March 2025\"]', '', 'SRMG STONE PRIVATE LIMITED', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-04-12', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-03-28 15:57:32', '#58/1, Mantapa village, Jigani hobali, Anekal Taluk Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 307, 'Account'), (718, 0, '2024-04-17', 0, '0000-00-00', '', '2657', '5900', 'No comments', '[\"Hosting renewal for one year Till Dec 2024\"]', '', 'Turbmax', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-05-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-04-17 13:05:42', 'Batrahalli near ICiC bank Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 588, 'Account'), (719, 0, '2024-04-17', 0, '0000-00-00', '', '2658', '236000', 'No Comments', '[\"Medusys Logbook as separate application logbook.medusys.in with separate mobile app and database with multi tenant approach which Superadmin, admin and User login and registration of admin through superadmin\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 18000, '9%', 18000, '18%', 0, 200000, '2024-05-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-04-17 13:10:45', 'Bangalore ', '0000-00-00 00:00:00', '[\"200000\"]', 'Within State', 'tax', 737, 'Account'), (720, 0, '2024-04-17', 0, '0000-00-00', '', '2658', '236000', 'No Comments', '[\"Medusys Logbook as separate application logbook.medusys.in with separate mobile app and database with multi tenant approach which Superadmin, admin and User login and registration\\/management of admin through superadmin\"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 18000, '9%', 18000, '18%', 0, 200000, '2024-05-02', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-04-17 13:11:10', 'Bangalore ', '0000-00-00 00:00:00', '[\"200000\"]', 'Within State', 'tax', 737, 'Account'), (721, 0, '2024-05-09', 0, '0000-00-00', '', '2659', '188800', '50% of payment initially and remaining after completion of project', '[\"Logbook-safe Anaesthesia Simplified version Development . 25 working days \"]', '', 'Medusys', 0, 'Waiting For Approval', '9%', 14400, '9%', 14400, '18%', 0, 160000, '2024-05-24', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-05-09 15:37:55', 'Bangalore ', '0000-00-00 00:00:00', '[\"160000\"]', 'Within State', 'tax', 737, 'Account'), (722, 0, '2024-06-04', 0, '0000-00-00', '', '2660', '5900', 'No Comments', '[\"Website Hosting and domain renewal till Aug 2025\"]', '', 'aswini agrotech', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-06-19', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-06-04 12:41:23', 'Plots 42 & 43, KIADB Industrial Area, Somanahalli, Maddur Taluk, Mandya District - 571 429 Mandya Karnataka ', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 358, 'Account'), (723, 0, '2024-03-11', 0, '0000-00-00', '', '2661', '99474', 'Based on the indent order will be processed', '[\"Asus E410 Laptop Intel Celeron N4500 Processor 8 GB DDR4\\r\\n256 GB storage INTEL UHD graphics 14.0 inch screen Windows\\r\\n11 OS Numberpad \\r\\nQuantity 1\",\"Asus tabletop Desktop \\r\\n\\r\\nAsus AIO desktop.intel ci5-11th generation processor\\/8gb ram\\/256gb SSD Hard disk\\/1tb Hard disk\\/Asus 23.8 inch monitor\\/windows 10\\/web cam\\/wifi\\/bluetooth\\/Asus wireless keyboard and mouse \\r\\n\\r\\nQuantity 1\"]', '', 'Handithavalli Grama Panchayat', 0, 'Waiting For Approval', '9%', 7587, '9%', 7587, '18%', 0, 84300, '2024-07-21', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-06-27 13:26:44', 'Handithavalli Grama Periyapatana taluk Mysore Dist Karnataka ', '0000-00-00 00:00:00', '[\"31100\",\"53200\"]', 'Within State', 'tax', 754, 'Account'), (724, 0, '2024-06-24', 0, '0000-00-00', '', '2662', '129800', '100% payment in advance ', '[\"4K UHD Touch Display + Powered By EyeRIS A10 Pixel\\r\\nTouch Edge Optical Technology + Octa (8) Core A55 CPU +\\r\\nAndroid 12 (OTA Upgraded to Android 13) + 4GB RAM + 32\\r\\nGB on board storage + Quad (4) Core GPU Mali G52 MP2+\\r\\nOPS Slot\\r\\nComes With BrightClass S\\/w (with Institute Pro Plan for 1\\r\\nyear)\\r\\nColor : SilverDual Tone\\/White 75 Inch\"]', '', 'Parivarthana School & College', 0, 'Waiting For Approval', '9%', 9900, '9%', 9900, '18%', 0, 110000, '2024-07-09', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-06-24 12:13:38', 'Srirangapatna Karnataka 571438', '0000-00-00 00:00:00', '[\"110000\"]', 'Within State', 'tax', 745, 'Account'), (725, 2638, '2024-07-08', 0, '0000-00-00', '', '2663', '5900', 'No comments', '[\"Website hosting and domain renewal till 2025 July\"]', '', 'Shreenidhi Tours and Travels', 0, 'Waiting For Approval', '9%', 450, '9%', 450, '18%', 0, 5000, '2024-07-23', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-07-08 13:42:41', '# 3, 6th Main, 4th Stage, Nandhini Layout Bangalore Karnataka 560096', '0000-00-00 00:00:00', '[\"5000\"]', 'Within State', 'tax', 646, 'Account'), (726, 3281, '2024-08-01', 0, '0000-00-00', '', '2664', '50740', '50% of payment initially and remaining after completion of project', '[\"Website Development Hosting along with domain one time billing. After one year domain, hosting and maintainance 4700\\/- Billed annually \",\"What\'s included in Google Ads\\r\\n \\r\\nTotal Keywords in the campaigns (Up to 50)\\r\\n2. Ad Copies copywriting (Including text and banners) Up to 50\\r\\n3. Negative & fraud click optimisation\\r\\n4. Audience segmentation\\r\\n5. Conversion setup (Google ads, Google Analytics)\\r\\n6. Ads, landing pages & keywords performance testing\\r\\n7. Bid Management across ads, keywords, locations, devices, Interests\\r\\n8. Dynamic ads\\r\\n9. Rule-based bidding setup & optimization\\r\\n10. A\\/B Testing\\r\\n11. Search ads, Display Ads (Google Partner websites)\\r\\n12. Remarketing\\r\\n13. Google local ads (targeting call, store visit & Google map)\\r\\n14. Monthly results analysis\\/reporting\\r\\n15. Audience behavior report\\r\\n16. ROI analysis\\/reporting\\r\\n\\r\\nThe time period for us to plan and start the campaign would be 3\\u20136 working days. The service fee is mentioned for a month and paid upfront. \\r\\n\\r\\n\"]', '', 'Eknath Rai', 0, 'Waiting For Approval', '9%', 3870, '9%', 3870, '18%', 0, 43000, '2024-08-16', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-08-01 18:06:59', 'No.449, second floor, Sthira Building, New Kantharaj Urs Rd, TK Layout 4th Stage Mysore Karnataka 570023', '0000-00-00 00:00:00', '[\"18000\",\"25000\"]', 'Within State', 'tax', 0, 'Lead'), (727, 0, '2024-08-08', 0, '0000-00-00', '', '2665', '4720', 'No Comments', '[\"Website hosting and renewal till August 2025\"]', '', 'Elite Canals Dental Clinic', 0, 'Waiting For Approval', '9%', 360, '9%', 360, '18%', 0, 4000, '2024-08-23', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-08-08 17:28:16', 'slv complex, secondfloor opp sangeeta showroom ananth nagar main road electronic city phase 2, Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"4000\"]', 'Within State', 'tax', 618, 'Account'), (728, 0, '2024-09-18', 0, '0000-00-00', '', '2666', '767000', '50% of payment initially and remaining after completion of project', '[\"ERP application for Mysore Nirmithi Kendra which includes all the 11 constituency and all the 38 departments with multiple login Roles\"]', '', 'Mysore Nirmithi Kendra ', 0, 'Waiting For Approval', '9%', 58500, '9%', 58500, '18%', 0, 650000, '2024-11-01', 'Ajay', 'EXPIRED', 'ACTIVE', 'Quotation', '2024-10-03 14:03:30', '#98, Behind Regional College\r\nBogadi 2nd Stage Mysore - 570026', '0000-00-00 00:00:00', '[\"650000\"]', 'Within State', 'tax', 755, 'Account'), (729, 0, '2024-11-04', 0, '0000-00-00', '', '2667', '45000', 'No Comments', '[\"AMC for ABP portal for One Year till 17 -08-2025\"]', '', 'Yaskawa India Pvt Ltd', 0, 'Waiting For Approval', '9%', 3432, '9%', 3432, '18%', 0, 38136, '2024-11-19', 'Ajay', 'WAITING', 'ACTIVE', 'Quotation', '2024-11-04 12:44:17', '#17/A, 2nd Main, Electronic City, Phase - I,Hosur Road Bangalore Karnataka ', '0000-00-00 00:00:00', '[\"38136\"]', 'Within State', 'tax', 197, 'Account'); -- -------------------------------------------------------- -- -- Table structure for table `report_menu` -- CREATE TABLE `report_menu` ( `report_id` int(11) NOT NULL, `report_type` varchar(350) NOT NULL, `report_description` varchar(750) NOT NULL, `link_name` varchar(650) NOT NULL, `favorite_report` varchar(350) NOT NULL, `report_status` varchar(250) NOT NULL DEFAULT 'ACTIVE', `delete_status` varchar(150) NOT NULL DEFAULT 'ACTIVE', `type` varchar(500) NOT NULL, `created_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `report_menu` -- INSERT INTO `report_menu` (`report_id`, `report_type`, `report_description`, `link_name`, `favorite_report`, `report_status`, `delete_status`, `type`, `created_on`) VALUES (1, 'Today\'s Sales', 'Today\'s Sales', 'todays_sales', 'yes', 'ACTIVE', 'ACTIVE', 'Activity Reports', '2017-10-26 12:41:31'), (2, 'Sales This Month', 'This Month\'s Sales', 'month_sale', '', 'ACTIVE', 'ACTIVE', 'Activity Reports', '2018-03-24 10:55:03'), (3, 'Todays Leads ', 'Leads obtained today', 'today_leads', 'yes', 'ACTIVE', 'ACTIVE', 'POTENTIAL_DEACTIVE', '2017-10-30 06:25:42'), (4, 'Leads by Status', 'Leads and their statuses', 'lead_status', '', 'ACTIVE', 'ACTIVE', 'Lead Reports', '2018-03-24 10:55:03'), (5, 'Leads by Industry ', 'Leads by industry.', 'industry_leads', '', 'ACTIVE', 'ACTIVE', 'Lead Reports', '2018-03-24 10:55:03'), (6, 'Sales by Lead Source ', 'Sales gained from various Lead Sources', 'sales_source', 'yes', 'ACTIVE', 'ACTIVE', 'Lead Reports', '2018-03-24 10:55:03'), (7, 'Salesperson\'s Performance Report ', 'Potentials gained by salesperson', 'performance_report', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:52:50'), (8, 'Lead Conversion Across Owners ', 'Average Lead conversion time for the past 6 months, by owner', 'lead_conversion', 'yes', 'ACTIVE', 'ACTIVE', 'POTENTIAL_DEACTIVE', '2017-10-26 12:49:57'), (9, 'Lead Conversion Count across Owners ', 'Total number of Lead converted for the past 6 months, by all owners', 'conversion_count', '', 'ACTIVE', 'ACTIVE', 'POTENTIAL_DEACTIVE', '2017-10-26 12:49:57'), (10, 'Lead Conversion Across Industries ', 'Average time taken for Lead to be converted for the past six months, by industry', 'conversion_industry', 'yes', 'ACTIVE', 'ACTIVE', 'Sales Metrics Reports', '2018-03-24 10:55:03'), (11, 'Lead Conversion Across Sources ', 'Average time taken for Lead to be converted in the past 6 months, by source', 'conversion_source', 'yes', 'ACTIVE', 'ACTIVE', 'Sales Metrics Reports', '2018-03-24 10:55:03'), (12, 'Todays Calls \r\n', '', 'todays_call', 'yes', 'ACTIVE', 'DELETED', 'Sales Matrics Reports', '2017-09-12 06:05:30'), (13, 'Tasks and Events Report    ', '', 'event_task', '', 'ACTIVE', 'DELETED', 'Activity Reports', '2017-09-12 06:32:01'), (14, 'Call Status Report ', 'Call Status based report', 'call_status', '', 'ACTIVE', 'ACTIVE', 'Activity Reports', '2018-03-24 10:55:03'), (15, 'Converted Leads ', 'Leads converted to Account / Potential / Contact.', 'converted_leads', 'yes', 'ACTIVE', 'ACTIVE', 'Lead Reports', '2018-03-24 10:54:04'), (16, 'Leads by Ownership ', 'Leads by Owner', 'ownership', '', 'ACTIVE', 'DELETED', 'Sales Matrics Reports', '2017-09-12 06:33:44'), (17, 'Leads by Source ', 'Leads from various sources', 'leads_source', 'yes', 'ACTIVE', 'DELETED', 'Sales Matrics Reports', '2017-09-12 06:16:24'), (18, '    Events Report', '', 'event_task', '', 'DEACTIVE', 'ACTIVE', 'Activity Reports', '2017-09-05 13:43:57'), (19, 'Overall Sales Duration Across Lead Sources ', 'Average number of days taken for the Lead to be converted to Potential from various Lead sources', 'overall_sales', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:31'), (20, 'Contact Mailing List ', 'Contact Address details', 'mailing_list', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:34'), (21, 'Key Accounts ', 'Accounts with more Potentials', 'key_accounts', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:40'), (22, 'Accounts by Industry ', 'Accounts by Industry', 'account_industry', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:44'), (23, 'Planned Vs Realized Events this Month ', 'Know how many planned check-ins have been realized in the current month', 'planned_realised', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:47'), (24, 'Open Potentials ', 'Potentials Pending', 'potentials', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:50'), (25, 'Sales Cycle Duration Across Owners ', 'Average time taken for Potentials won, by Owner Potential', 'sales_cycle', '', 'DEACTIVE', 'ACTIVE', '', '2017-08-29 06:53:55'), (26, 'Overall Sales Duration Across Potential Type ', 'Average time taken forLead to be converted to Potential of different type', 'overall_potential', '', 'DEACTIVE', '', '', '2017-08-27 07:07:42'), (27, 'Potentials by Type ', 'Potentials by Type', 'potentail_type', '', 'DEACTIVE', '', '', '2017-08-27 06:59:14'), (28, 'Lost Potentials ', 'Potentials Lost', 'lost_potentials', '', 'DEACTIVE', '', '', '2017-08-27 06:58:32'), (29, 'Stage Vs Potential Type Report ', 'Summarizes the various stages of New and Existing Business', 'stage_potential', '', 'DEACTIVE', '', '', '2017-08-27 06:57:24'), (30, 'Sales Cycle Duration Across Potential Type ', 'Average time taken for the Potential to be won, by type', 'cycle_duration_potential', '', 'DEACTIVE', '', '', '2017-08-27 07:08:38'), (31, 'Sales Cycle Duration Across Lead Sources ', 'Average time taken for Potential to be won, by lead source', 'cycle_duration_lead', '', 'DEACTIVE', '', '', '2017-08-27 07:09:28'), (32, 'Potentials Closing this Month ', 'Potentials closing this month', 'potential_closing', '', 'DEACTIVE', '', '', '2017-08-27 06:58:12'), (33, 'Number of Check-Ins by Locality ', 'Get total number of monthly check-ins for customers by locality', 'locality', '', 'DEACTIVE', '', '', '2017-08-27 07:07:31'), (34, 'Pipeline by Stage ', 'Potentials by Stage', 'pipeline_stage', '', 'DEACTIVE', '', '', '2017-08-27 06:57:40'), (35, 'Check-Ins by Locality ', 'Get check-in details categorized by locality', 'checkin_locality', '', 'DEACTIVE', '', '', '2017-08-27 07:09:36'), (36, 'Check-Ins for Leads ', 'Get check-in details for each Lead', 'checkin_leads', '', 'DEACTIVE', '', '', '2017-08-27 07:09:45'), (37, 'Pipeline by Probability ', 'Potentials by Probability', 'pipeline_probability', '', 'DEACTIVE', '', '', '2017-08-27 06:59:30'), (38, 'Check-Ins for Accounts ', 'Get check-in details for each Account', 'checkin_accounts', '', 'DEACTIVE', '', '', '2017-08-27 07:09:52'); -- -------------------------------------------------------- -- -- Table structure for table `role` -- CREATE TABLE `role` ( `role_id` int(11) NOT NULL, `role_name` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `role` -- INSERT INTO `role` (`role_id`, `role_name`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'PHP Developer', 'ACTIVE', '2018-07-14 19:03:46', '2018-07-14 19:03:46'), (2, 'Designer', 'ACTIVE', '2018-07-26 11:49:13', '2018-07-26 11:49:13'), (3, 'UI Developer', 'ACTIVE', '2018-07-26 11:49:29', '2018-07-26 11:49:29'), (4, 'Business Development Executive', 'ACTIVE', '2018-07-26 11:50:40', '2018-07-26 11:50:40'), (5, 'Digital Marketing Executive', 'ACTIVE', '2018-07-26 11:51:11', '2018-07-26 11:51:11'), (6, 'Mobile Developer', 'ACTIVE', '2018-07-26 11:51:25', '2018-07-26 11:51:25'), (7, 'Member of Technical Staff', 'ACTIVE', '2018-07-26 13:44:06', '2018-07-26 13:44:06'), (8, 'Employee', 'ACTIVE', '2018-07-26 17:45:16', '2018-07-26 17:45:16'), (9, 'Employee', 'ACTIVE', '2018-07-27 11:18:47', '2018-07-27 11:18:47'); -- -------------------------------------------------------- -- -- Table structure for table `roles` -- CREATE TABLE `roles` ( `role_id` int(11) NOT NULL, `role_name` varchar(222) NOT NULL, `report_to` varchar(222) NOT NULL, `parent_id` int(11) NOT NULL DEFAULT 1, `zone` varchar(222) NOT NULL, `description` varchar(555) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `roles` -- INSERT INTO `roles` (`role_id`, `role_name`, `report_to`, `parent_id`, `zone`, `description`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'CEO', '0', 1, '', 'test', 'ACTIVE', '2017-08-29 16:06:36', '0000-00-00 00:00:00'), (57, 'Executive Director', '1', 1, '', 'Executive Director', 'ACTIVE', '2018-03-21 14:00:51', '0000-00-00 00:00:00'), (58, 'Manager', '57', 1, '', 'Manager', 'ACTIVE', '2018-03-21 14:01:12', '0000-00-00 00:00:00'), (59, 'Reg Manager', '58', 1, '', 'Reg Manager', 'ACTIVE', '2018-03-21 14:01:34', '2018-07-27 18:10:44'), (60, 'Executive', '58', 1, '', 'Executive', 'ACTIVE', '2018-03-21 14:02:11', '0000-00-00 00:00:00'), (61, 'Business Development Executive', '58', 1, '', 'Handling accounts with in 50k', 'ACTIVE', '2018-07-14 13:53:06', '2018-07-27 18:10:20'), (62, 'PHP Developer', '', 1, '', '', 'ACTIVE', '2018-07-27 18:04:53', '2018-07-27 18:04:53'), (63, 'Designer', '', 1, '', '', 'ACTIVE', '2018-07-27 18:32:03', '2018-07-27 18:32:03'), (64, 'Team Lead', '', 1, '', '', 'ACTIVE', '2018-07-27 18:32:13', '2018-07-27 18:32:13'), (65, 'UI Ux Developer', '', 1, '', '', 'ACTIVE', '2018-07-27 18:33:22', '2018-07-27 18:33:22'), (66, 'Tester', '', 1, '', '', 'ACTIVE', '2018-07-27 18:36:37', '2018-07-27 18:36:37'), (67, 'Digital Marketing Executive', '', 1, '', '', 'ACTIVE', '2018-07-27 18:39:39', '2018-07-27 18:39:39'), (68, 'Client', '', 1, '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (69, 'Delivery Lead', '', 1, '', '', 'ACTIVE', '2018-09-17 15:57:45', '2018-09-17 15:57:45'), (70, 'Admin', '', 1, '', '', 'ACTIVE', '2018-10-05 13:50:33', '2018-10-05 13:50:33'), (71, 'Support Executive', '', 1, '', '', 'ACTIVE', '2018-11-29 12:20:50', '2018-11-29 12:20:50'), (72, 'Accounts', '', 1, '', '', 'ACTIVE', '2019-01-26 18:29:24', '2019-01-26 18:29:24'), (73, 'HR Manager', '', 1, '', '', 'ACTIVE', '2019-05-17 14:26:12', '2019-05-17 14:26:12'), (74, 'Full Stack Developer', '', 1, '', '', 'ACTIVE', '2019-05-25 11:21:25', '2019-05-25 11:21:25'); -- -------------------------------------------------------- -- -- Table structure for table `salary` -- CREATE TABLE `salary` ( `salary_id` int(11) NOT NULL, `emp_id` int(11) NOT NULL, `earning` double NOT NULL, `deduction` double NOT NULL, `basic` double NOT NULL, `hra` double NOT NULL, `ca` double NOT NULL, `prof_tax` double NOT NULL, `special_allowance` double NOT NULL, `gross_earning` double NOT NULL, `gross_deduction` double NOT NULL, `net_pay` double NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `salary` -- INSERT INTO `salary` (`salary_id`, `emp_id`, `earning`, `deduction`, `basic`, `hra`, `ca`, `prof_tax`, `special_allowance`, `gross_earning`, `gross_deduction`, `net_pay`, `created_at`, `updated_at`) VALUES (1, 2, 25000, 25000, 12500, 5000, 1800, 0, 2700, 15000, 0, 25000, '2018-08-16 12:52:53', '2020-10-13'), (4, 75, 16500, 0, 8250, 3300, 1800, 0, 3150, 16500, 0, 16500, '2020-10-12 13:23:50', '0000-00-00'), (5, 23, 18000, 0, 9000, 3600, 1800, 0, 3600, 18000, 0, 18000, '2020-10-12 13:25:08', '0000-00-00'), (6, 40, 30000, 0, 15000, 6000, 1800, 0, 7200, 30000, 0, 30000, '2020-10-12 13:32:06', '0000-00-00'), (7, 36, 22500, 0, 11250, 5400, 1800, 0, 4950, 22500, 0, 22500, '2020-10-12 13:34:41', '2020-10-12'), (8, 82, 6000, 0, 3000, 1200, 0, 0, 1800, 6000, 0, 6000, '2020-10-12 13:36:42', '2020-10-12'), (9, 78, 35000, 0, 17500, 7000, 1800, 0, 8700, 35000, 0, 35000, '2020-10-12 13:37:33', '0000-00-00'), (10, 18, 22500, 0, 11250, 4500, 1800, 0, 4950, 22500, 0, 22500, '2020-10-12 13:39:15', '0000-00-00'), (11, 83, 6000, 0, 3000, 1200, 0, 0, 1800, 1800, 0, 6000, '2020-10-12 13:40:50', '0000-00-00'), (12, 76, 9000, 0, 4500, 1800, 0, 0, 2700, 9000, 0, 9000, '2020-10-12 13:41:59', '0000-00-00'), (13, 48, 18000, 0, 9000, 3600, 1800, 0, 3600, 18000, 0, 18000, '2020-10-12 13:42:44', '0000-00-00'), (14, 4, 35000, 0, 17500, 7000, 1800, 0, 8700, 35000, 0, 35000, '2020-10-12 13:45:13', '0000-00-00'), (15, 57, 16500, 0, 8250, 3300, 1800, 0, 3150, 16500, 0, 16500, '2020-10-12 13:46:17', '0000-00-00'), (16, 81, 6000, 0, 3000, 1200, 0, 0, 1800, 6000, 0, 6000, '2020-10-12 13:46:56', '0000-00-00'), (17, 84, 8000, 0, 4000, 1600, 1800, 0, 600, 8000, 0, 8000, '2020-10-12 13:52:20', '0000-00-00'), (18, 86, 8000, 0, 4000, 1600, 1800, 0, 600, 8000, 0, 8000, '2020-10-12 14:19:41', '0000-00-00'), (19, 85, 10000, 0, 5000, 2000, 1800, 0, 1200, 10000, 0, 10000, '2020-10-12 14:20:32', '0000-00-00'), (20, 95, 20000, 0, 120000, 48000, 0, 0, 32000, 0, 0, 200000, '2022-05-18 18:48:06', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `service_type` -- CREATE TABLE `service_type` ( `service_id` int(11) NOT NULL, `service_name` varchar(256) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `service_type` -- INSERT INTO `service_type` (`service_id`, `service_name`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Service Base', 'ACTIVE', '2018-07-05 05:24:17', '0000-00-00'), (2, 'Product Base', 'ACTIVE', '2018-07-05 03:09:00', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `share_project_task` -- CREATE TABLE `share_project_task` ( `id` int(11) NOT NULL, `client_requirement_id` int(11) NOT NULL, `assigner_id` int(11) NOT NULL, `responsible_person` text NOT NULL, `deadline` text NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `priority` int(11) NOT NULL, `project_id` int(11) NOT NULL, `attachment` text NOT NULL, `link` text NOT NULL, `link_text` text NOT NULL, `status` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_by` int(11) NOT NULL, `modified_by` int(11) NOT NULL, `modified_at` date NOT NULL, `created_at` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `sms` -- CREATE TABLE `sms` ( `sms_id` int(11) NOT NULL, `client` varchar(256) NOT NULL, `phone_number` int(11) NOT NULL, `message` text NOT NULL, `created_at` datetime NOT NULL, `updated_at` date NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `sms` -- INSERT INTO `sms` (`sms_id`, `client`, `phone_number`, `message`, `created_at`, `updated_at`) VALUES (1, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (2, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (3, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (4, 'Fira ulla:9845113293', 2147483647, 'gffgfgfg', '0000-00-00 00:00:00', '0000-00-00'), (5, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (6, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (7, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (8, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (9, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (10, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (11, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (12, 'Harish:7892731954', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (13, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (14, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (15, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (16, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (17, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (18, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (19, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (20, 'sumukh:9740733357', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (21, 'sumukh:9740733357', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (22, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (23, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (24, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (25, 'Fira ulla:9845113293', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (26, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (27, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (28, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (29, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (30, 'Jagadish:7899884774', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (31, 'satish:9945498777', 2147483647, 'hihiihh', '0000-00-00 00:00:00', '0000-00-00'), (32, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (33, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (34, 'satish:9945498777', 2147483647, 'Hello', '0000-00-00 00:00:00', '0000-00-00'), (35, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (36, 'satish:9945498777', 2147483647, 'hi', '0000-00-00 00:00:00', '0000-00-00'), (37, 'Hemanth:7411522296', 2147483647, 'hello', '0000-00-00 00:00:00', '0000-00-00'), (38, 'satish:9945498777', 2147483647, 'Hi HOw ARE YOU', '0000-00-00 00:00:00', '0000-00-00'), (39, 'satish:9945498777', 2147483647, 'Hi HOw ARE YOU', '0000-00-00 00:00:00', '0000-00-00'), (40, 'Ajay', 2147483647, 'Hello ', '0000-00-00 00:00:00', '0000-00-00'), (41, 'Rakesh:9880022066', 2147483647, 'hiiiiiiiiiiiii', '0000-00-00 00:00:00', '0000-00-00'), (42, 'Good rich pest control:9916777706', 2147483647, 'hello', '0000-00-00 00:00:00', '0000-00-00'), (43, 'Hemanth:7411522296', 2147483647, 'fdgf', '0000-00-00 00:00:00', '0000-00-00'), (44, 'satish:9945498777', 2147483647, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (45, 'null', 0, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (46, 'null', 0, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (47, 'null', 0, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (48, 'ajay', 2147483647, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (49, 'ajay', 2147483647, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (50, '', 2147483647, 'Shuklaambaradharam Vishnum, Shashivarnam Chaturbhujam | Prasannavadanam Dhyaayet, Sarva Vighnopashaanthaye || JAYBLUES Wishes you all a Happy GOWRI and GANESHA CHATURTHI. #GaneshaChaturthi2018', '0000-00-00 00:00:00', '0000-00-00'), (51, '', 2147483647, 'Shuklaambaradharam Vishnum, Shashivarnam Chaturbhujam | Prasannavadanam Dhyaayet, Sarva Vighnopashaanthaye || JAYBLUES Wishes you all a Happy GOWRI and GANESHA CHATURTHI. #GaneshaChaturthi2018', '0000-00-00 00:00:00', '0000-00-00'), (52, '', 2147483647, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'), (53, 'ajay', 2147483647, 'Happy Gowri Ganesha Festival', '0000-00-00 00:00:00', '0000-00-00'); -- -------------------------------------------------------- -- -- Table structure for table `stage_master` -- CREATE TABLE `stage_master` ( `smaster_id` int(11) NOT NULL, `potential_id` int(11) NOT NULL, `stage` text NOT NULL, `modified_by` text NOT NULL, `modified_time` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `stage_master` -- INSERT INTO `stage_master` (`smaster_id`, `potential_id`, `stage`, `modified_by`, `modified_time`) VALUES (12, 1, 'Need Analysis', 'manjunath', '2017-12-20 12:02:35'), (15, 2, 'Id Decision Maker', 'Divya', '2017-12-20 12:30:11'), (16, 2, 'Qualification', 'Divya', '2017-12-20 12:30:30'), (17, 1, 'Id Decision Maker', 'manjunath', '2017-12-20 15:55:53'), (18, 4, 'Id Decision Maker', 'yogesh', '2018-03-08 14:09:32'), (19, 7, 'Id Decision Maker', 'Select', '2018-03-15 18:27:34'), (20, 7, 'Negotiation/Review', '43', '2018-03-20 10:25:31'), (21, 3, 'Proposal/Price Quote', '5', '2018-03-23 12:11:57'), (22, 3, 'Closed Won', '5', '2018-03-23 17:12:39'), (23, 4, 'Id Decision Maker', '5', '2018-03-23 17:33:59'), (24, 20, 'Id Decision Maker', '8', '2018-03-27 08:02:12'), (25, 21, 'Need Analysis', '8', '2018-03-27 11:36:10'), (26, 21, 'Proposal/Price Quote', 'Select', '2018-03-27 14:12:53'), (27, 4, '', '5', '2018-03-28 17:36:37'), (28, 11, 'Closed Won', '20', '2018-09-04 12:26:17'), (29, 12, 'Closed Won', '20', '2018-09-04 12:46:53'), (30, 19, 'Closed Won', '36', '2019-01-02 13:37:26'), (31, 32, 'Closed Won', '36', '2019-01-02 19:44:24'), (32, 49, 'Closed Won', '36', '2019-01-08 11:34:06'), (33, 48, 'Closed Won', '24', '2019-01-09 12:51:46'), (34, 37, 'Closed Won', '36', '2019-01-09 12:57:21'), (35, 1, 'Value Proposition', '20', '2019-02-07 16:33:22'), (36, 10, 'Qualification', '20', '2019-06-08 13:54:42'), (37, 10, 'Closed Won', '20', '2019-06-08 13:55:00'); -- -------------------------------------------------------- -- -- Table structure for table `task_shared_persons` -- CREATE TABLE `task_shared_persons` ( `id` int(11) NOT NULL, `emp_id` int(11) NOT NULL, `task_id` int(11) NOT NULL, `project_id` int(11) NOT NULL, `created_at` date NOT NULL, `modified_at` date NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `client_requirement_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -------------------------------------------------------- -- -- Table structure for table `tickets` -- CREATE TABLE `tickets` ( `ticket_id` int(11) NOT NULL, `project_id` int(11) NOT NULL, `ticket_title` varchar(200) NOT NULL, `ticket_description` text NOT NULL, `ticket_priority` varchar(50) NOT NULL, `ticket_file` text NOT NULL, `ticket_link` varchar(200) NOT NULL, `ticket_link_text` varchar(100) NOT NULL, `created_by` int(11) NOT NULL, `ticket_status` varchar(50) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, `email` varchar(256) NOT NULL, `full_name` varchar(256) NOT NULL, `ticket_notice` varchar(256) NOT NULL, `ticket_source` text NOT NULL, `help_topic` text NOT NULL, `department` text NOT NULL, `sla_plan` varchar(256) NOT NULL, `due_date` date NOT NULL, `due_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `assign_to` varchar(256) NOT NULL, `canned_response` text NOT NULL, `append` varchar(256) NOT NULL, `canned_note` text NOT NULL, `date_of_closed` date NOT NULL, `closed_by` varchar(256) NOT NULL, `signature` text NOT NULL, `internal_note` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `tickets` -- INSERT INTO `tickets` (`ticket_id`, `project_id`, `ticket_title`, `ticket_description`, `ticket_priority`, `ticket_file`, `ticket_link`, `ticket_link_text`, `created_by`, `ticket_status`, `delete_status`, `created_at`, `updated_at`, `email`, `full_name`, `ticket_notice`, `ticket_source`, `help_topic`, `department`, `sla_plan`, `due_date`, `due_time`, `assign_to`, `canned_response`, `append`, `canned_note`, `date_of_closed`, `closed_by`, `signature`, `internal_note`) VALUES (1, 169, 'Changes in Report', '<ol>\n <li>All Report>>Page range have been change from 20 to 100.</li>\n <li>Cancellation Report>>Instead of Created date ,cancellation date has to be display.</li>\n</ol>\n', 'YES', '', '', '', 30, '', 'ACTIVE', '2019-03-11 18:46:44', '2019-03-11 18:48:37', '', '', '', '', '', '', '', '0000-00-00', '2019-03-11 13:18:37', '', '', '', '', '0000-00-00', '', '', ''), (2, 169, 'Status Report', '<p>Status Report>>selected Project should be selected in project dropdown and related data should display in grid.</p>\n', 'YES', '', '', '', 30, 'ASSIGNED', 'ACTIVE', '2019-03-11 18:50:08', '2019-03-11 18:50:27', '', '', '', '', '', '', '', '0000-00-00', '2019-03-11 13:22:56', '', '', '', '', '0000-00-00', '', '', ''), (3, 487, 'Support', '<p>In Testimonials, Video has to be display along with the content.</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-13 10:51:51', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-13 05:21:51', '', '', '', '', '0000-00-00', '', '', ''), (4, 159, 'Support', '<p>In billing- fabric>>Export Doc preview >> date has to be deleted and consignee detail has to be displayed.</p>\n\n<p>Work order>>Weaving >> In subgrid and in preview page>>Add bale extra column.</p>\n\n<p>In pending indent list >> In preview page>>Details are not showing, its showing empty.</p>\n\n<p>Report>>Marketing >> Here for quantity and foreign value>>Total values has to be displayed.</p>\n\n<p>Billing>>Madeups >> Here Delete this invoice number SSL/138/18-19.</p>\n\n<p>In madeups stock >> Add this detail 2018OSL162.</p>\n\n<p>history>>Weaved fabric >> For some detail quality is missing.</p>\n\n<p>history>>Weaved fabric >> Quality column>>Units has to be added.</p>\n\n<p>history>>Weaved fabric >> In balance column>>Balance calculation is wrong.</p>\n\n<p>WO>>fabric finishing >> One subgrid detail has to be moved to another WO number subgrid.</p>\n\n<p>WO>>fabric finishing >> Vendor name has to be renamed to "Textile Garments Process".<br />\nIn billing of madeups >> In subgrid>>Remane "Article" and "Order type" column to "LABEL".</p>\n\n<p>In billing>>Madeups >> In insert page>>After selecting more than 5 invoice, and if we have edit the expt wt>>Invoice list is showing empty.</p>\n\n<p>WO>>DC>>Fabric finishing embroidery >> Insert page>>If we do add stock, submit is not working>>This detail is not displaying in fabric inspection.</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-20 17:31:09', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-20 12:01:09', '', '', '', '', '0000-00-00', '', '', ''), (5, 207, 'Support', '<ul>\n <li>In billing- fabric>>Export Doc preview >> date has to be deleted and consignee detail has to be displayed.</li>\n <li>In Inward purchase, of fabric>>In Insert >> In this page, for PO 404>>Width- 147CMS has to be added.</li>\n <li>In Inward purchase, of fabric>>In Insert >> In this page, for PO 401>>Width- 147CMS has to be added.</li>\n <li>Wo>>Weaving >> In subgrid and in preview page>>Add bale extra column.</li>\n <li>WO>>Fabric finishing >> DTl 18-19-WO-F62>>For this workorder, vendor name has to be changed.</li>\n <li>In pending indent list >> In preview page>>Details are not showing, its showing empty.</li>\n <li>Report>>Marketing >> Here for quantity and foreign value>>Total values has to be displayed.</li>\n <li>WO>>Dyeing >> For D106 work order, one detail>>Color code has to be changed to "Pale Yellow".</li>\n <li>In billing>>Fabric >> In invoice edit>>If we add other charges, total value is not getting updated.<br />\n </li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-20 17:36:33', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-20 12:06:33', '', '', '', '', '0000-00-00', '', '', ''), (6, 159, 'Support', '<p> In purchase>> Inward purchase- fabric delivery>>In insert page, after we searched the detail, for grid add shade column and also in add stock page, add shade field below the width field.<br />\n </p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-22 11:39:29', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-22 06:09:29', '', '', '', '', '0000-00-00', '', '', ''), (7, 207, 'Support', '<p> In purchase>> Inward purchase- fabric delivery>>In insert page, after we searched the detail, for grid add shade column and also in add stock page, add shade field below the width field.</p>\n\n<p>In purchase>> Inward purchase- fabric delivery>>In insert page, after we searched the detail DTL-2019-PO-392, change product name from 140CMS 1518 31463/27 to 140CMS 1518 31463/37.</p>\n\n<p>In purchase>> Inward purchase- fabric delivery>>In insert page, after we searched the detail DTL-2019-PO-427, change product name from 147CMS BLACKOUT 3P001 WHIE to 140CMS BLACKOUT 3P001 WHIE.</p>\n\n<p>In purchase>> Inward purchase- fabric delivery>>In insert page, after we searched the detail DTL-2019-PO-427, in add stock page change width from 147 to 140.</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-22 11:47:53', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-22 06:17:53', '', '', '', '', '0000-00-00', '', '', ''), (8, 169, 'Support', '<ul>\n <li>Login Timings - fix it for 3hours</li>\n <li>Reception form : Booking & Registered sites should display in form. ( cancelled & refunded sites could not display). </li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-03-25 13:41:58', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-03-25 08:11:58', '', '', '', '', '0000-00-00', '', '', ''), (9, 58, 'Call milesweb and solve the issue', '<p>Website Maintenance : Website was not working due to server down. Issue raised on 25/3/2019</p>\n\n<p>Issue solved on 26/3/2019</p>\n', '', '', '', '', 80, '', 'ACTIVE', '2019-03-26 11:28:27', '2019-03-26 11:29:32', '', '', '', '', '', '', '', '0000-00-00', '2019-03-26 05:59:32', '', '', '', '', '0000-00-00', '', '', ''), (10, 256, 'Changes in Website', '<p>CARRIER pages upgradtion for linking to Email ID - issue raised on 28/3/2019<br />\n<br />\n<br />\nmail Id link to " hr@dsignexperts.com " - issue solved on 29/3/2019</p>\n', '', '', '', '', 36, '', 'ACTIVE', '2019-03-28 15:32:57', '2019-03-29 13:27:03', '', '', '', '', '', '', '', '0000-00-00', '2019-03-29 07:57:03', '', '', '', '', '0000-00-00', '', '', ''), (11, 534, 'Team Viewer', '<p>The client informed to take team viewer for updating the images and Content in the website -But still not picking the call - an issue raised on 28/3/2019</p>\n', '', '', '', '', 36, '', 'ACTIVE', '2019-03-28 16:55:49', '2019-03-28 17:05:51', '', '', '', '', '', '', '', '0000-00-00', '2019-03-28 11:35:51', '', '', '', '', '0000-00-00', '', '', ''), (12, 159, 'Support', '<ul>\n <li>In Create PO, Financial year wise PO number should be changed. It should be displayed in PO list, Preview and in all inward purchase list also in preview page.</li>\n <li>In fabric Inspection- Inspect Fabric>> Financial Year wise SSL piece number should be changed.It should be displayed in list, Preview.</li>\n <li>In Fabric and Madeups Billing>>Financial Year wise invoice number should be changed.It should be displayed in list, Preview.</li>\n <li>In PO list>>For Current year PO details, Radio button and Grid should be added. And Approved PO List should be renamed to Previous Year PO List.</li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-03 11:59:20', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-03 06:29:20', '', '', '', '', '0000-00-00', '', '', ''), (13, 207, 'Support', '<ul>\n <li>Work order - Twisting, WO>>Twisting>>T3 details is not showing in order delivery twisting.</li>\n <li>Inward Purchase- Fabric>>for DTL-2019-PO-392, Change the shade name as 31463/37.</li>\n <li>In Create PO, Financial year wise PO number should be changed. It should be displayed in PO list, Preview and in all inward purchase list also in preview page.</li>\n <li>In fabric Inspection- Inspect Fabric>> Financial Year wise SSL piece number should be changed.It should be displayed in list, Preview.</li>\n <li>In Fabric and Madeups Billing>>Financial Year wise invoice number should be changed.It should be displayed in list, Preview.</li>\n <li>In PO list>>For Current year PO details, Radio button and Grid should be added. And Approved PO List should be renamed to Previous Year PO List.</li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-03 12:01:58', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-03 06:31:58', '', '', '', '', '0000-00-00', '', '', ''), (14, 159, 'Support', '<ul>\n <li> Billing Madeups>>In C Preview, Other charges is not updated with the total value.</li>\n <li>In Fabric and Madeups Billing>>Financial Year wise invoice number should be changed.It should be displayed in list and in all the previews( C invoice, B invoice, SKU, PL, Box, PC, Airway, ND, AZO, Consignee, CO, Export Doc, US Customs and preview).</li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-04 11:34:33', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 06:04:33', '', '', '', '', '0000-00-00', '', '', ''), (15, 207, 'Support', '<p>In Fabric and Madeups Billing>>Financial Year wise invoice number should be changed.It should be displayed in list and in all the previews( C invoice, B invoice, SKU, PL, Box, PC, Airway, ND, AZO, Consignee, CO, Export Doc, US Customs and preview).</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-04 11:36:46', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 06:06:46', '', '', '', '', '0000-00-00', '', '', ''), (16, 590, 'Changes on banner images', '', 'YES', '1554362813Changes.docx', '', '', 80, 'RAISED', 'ACTIVE', '2019-04-04 12:56:53', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 07:26:53', '', '', '', '', '0000-00-00', '', '', ''), (17, 507, 'Link fb page and youtube page to the website', '', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-04-04 13:03:00', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 07:33:00', '', '', '', '', '0000-00-00', '', '', ''), (18, 159, 'Support', '<ul>\n <li>Report, In PO Report>>After changing to financial year wise, Search is not working Properly.</li>\n <li> In indent, in purchase - Fabric delivery>>If we searched fabric detail, financial year wise, Search is not working.</li>\n <li>Above mentioned changes and issues are working in dashboard also.</li>\n <li>In Stock position of Fabric>>If we split one PO num, and if we try to split another PO num. First PO num's SSL piece num will get added to 2nd PO num.</li>\n <li>Inward purchase>>fabric delivery,yarn delivery,consumables , spares and service delivery>>date has been organised in descending order.</li>\n <li>History>>Here date has been organised in descending order<br />\n </li>\n</ul>\n\n<p> </p>\n\n<p> </p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-04 18:28:03', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 12:58:03', '', '', '', '', '0000-00-00', '', '', ''), (19, 207, 'Support', '<ul>\n <li>Report, In PO Report>>After changing to financial year wise, Search is not working Properly.</li>\n <li> In indent, in purchase - Fabric delivery>>If we searched fabric detail, financial year wise, Search is not working.</li>\n <li>Above mentioned changes and issues are working in dashboard also.</li>\n <li>In Stock position of Fabric>>If we split one PO num, and if we try to split another PO num. First PO num's SSL piece num will get added to 2nd PO num.</li>\n <li>Inward purchase>>fabric delivery,yarn delivery,consumables , spares and service delivery>>date has been organised in descending order.</li>\n <li>History>>Here date has been organised in descending order</li>\n</ul>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-04 18:28:19', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-04 12:58:19', '', '', '', '', '0000-00-00', '', '', ''), (20, 169, 'Support', '<p>Payment Form and List >>For site no 16 of project Amritha Cocoshelter 119 , registration amount was not reflecting.</p>\n\n<p>Payment form>>Edit option is required for add more registration.</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-09 17:49:12', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-09 12:19:12', '', '', '', '', '0000-00-00', '', '', ''), (21, 169, 'Support', '<p>In Cancellation Form>>Required option is removed for "refund amount with".</p>\n', 'YES', '', '', '', 30, 'RAISED', 'ACTIVE', '2019-04-11 14:00:31', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-11 08:30:31', '', '', '', '', '0000-00-00', '', '', ''), (22, 487, 'Logo Change ', '<p>Updation of logo - 13/4/2019</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-04-22 13:44:17', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-22 08:14:17', '', '', '', '', '0000-00-00', '', '', ''), (23, 267, 'ZOHO mail Functionality', '<p>checked its working 22/4/2019</p>\n', 'YES', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-04-22 16:04:45', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-22 10:34:45', '', '', '', '', '0000-00-00', '', '', ''), (24, 426, 'Website Down. ', '<p>Retrieved the website with the backup</p>\n', 'YES', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-04-23 13:32:07', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-04-23 08:02:07', '', '', '', '', '0000-00-00', '', '', ''), (25, 487, 'Changes on appointment timings in the Website', '<p>Changes on the appointment timings in the website contact us page.</p>\n', 'YES', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-05-17 11:42:18', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-05-17 06:12:18', '', '', '', '', '0000-00-00', '', '', ''), (26, 0, '', '', 'Normal', '', '', '', 159, 'Open', 'ACTIVE', '2019-05-20 00:00:00', '0000-00-00 00:00:00', '', '', '1', 'Phone', '', '', 'System Default', '1970-01-01', '0000-00-00 00:00:00', '0', '0', '1', '', '0000-00-00', '', 'on', ''), (27, 105, 'Changes on the dates', '<p>Updated the dates in the Website</p>\n', 'YES', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-05-22 11:45:07', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-05-22 06:15:07', '', '', '', '', '0000-00-00', '', '', ''), (28, 128, 'Changes in the website', '<p>Mpowering Skills changes 4/6/2019</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-06-06 18:22:38', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-06-06 12:52:38', '', '', '', '', '0000-00-00', '', '', ''), (29, 588, 'added vission and mission in about us page', '<p>14/6/2019 - Added vision and mission in the About us page</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-06-14 13:21:33', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-06-14 07:51:33', '', '', '', '', '0000-00-00', '', '', ''), (30, 485, 'Changes in the home page', '<p>6/6/2019 -- Changes in the home page</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-06-14 13:23:11', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-06-14 07:53:11', '', '', '', '', '0000-00-00', '', '', ''), (31, 561, 'Mail Function not working for info@landmarq.in', '<p>25/6/2019: Mail Function not working for info@landmarq.in</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-06-25 12:05:58', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-06-25 06:35:58', '', '', '', '', '0000-00-00', '', '', ''), (32, 128, 'Link Social media to website', '', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-06-25 17:16:00', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-06-25 11:46:00', '', '', '', '', '0000-00-00', '', '', ''), (33, 318, 'Price changes in the Website', '', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-07-08 14:18:13', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-07-08 08:48:13', '', '', '', '', '0000-00-00', '', '', ''), (34, 218, 'Upgrade or changes in the website', '<p>Upgrade or changes in the website - 24/7/2019</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-07-24 11:01:29', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-07-24 05:31:29', '', '', '', '', '0000-00-00', '', '', ''), (35, 311, 'Upload the trust deed sent by them.', '<p>26/7/2019: Upload the trust deed sent by them.</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-07-30 12:06:40', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-07-30 06:36:40', '', '', '', '', '0000-00-00', '', '', ''), (36, 487, 'Update the contents in the website', '<p>19/8/2019 : Update the contents in the website</p>\n', 'YES', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-08-20 12:05:37', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-08-20 06:35:37', '', '', '', '', '0000-00-00', '', '', ''), (37, 235, 'Upload the photos and pdf in the website', '<p>20/8/2019: Upload the photos and pdf in the website</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-08-20 12:06:39', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-08-20 06:36:39', '', '', '', '', '0000-00-00', '', '', ''), (38, 487, 'To add video as Testimonials', '<p>13/9/2019</p>\n', '', '', '', '', 80, 'RAISED', 'ACTIVE', '2019-09-13 17:44:35', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-09-13 12:14:35', '', '', '', '', '0000-00-00', '', '', ''), (39, 487, 'Some of the changes and new requirement', '<p>1. YouTube links have given and uploaded videos to youtube.</p>\n\n<p>2. Added doctor details.</p>\n\n<p>3. Created page "Homecare".</p>\n', '', '', '', '', 26, 'RAISED', 'ACTIVE', '2019-12-10 12:59:03', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-12-10 07:29:03', '', '', '', '', '0000-00-00', '', '', ''), (40, 587, 'Created 4 tabs', 'Created 4 tabs in career opportunities & and added the contents for respective one.\n1.Accountant\n2.Dispatch Supervisor\n3.Sales and Marketing Executive\n4.Sales Coordinator', '', '', '', '', 26, 'RAISED', 'ACTIVE', '2019-12-23 18:29:52', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-12-23 12:59:52', '', '', '', '', '0000-00-00', '', '', ''), (41, 235, 'Add two pdf file', 'Added two pdf file one in events and one in opportunities', '', '', '', '', 26, 'RAISED', 'ACTIVE', '2019-12-24 13:09:00', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2019-12-24 07:39:00', '', '', '', '', '0000-00-00', '', '', ''), (42, 670, 'Mail id changes in website', '<p>Mail id of Samourk imports and exports changed from support@smourk.com to support@samourk.com</p>\n', '', '', '', '', 164, 'RAISED', 'ACTIVE', '2020-05-26 10:35:43', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2020-05-26 05:05:43', '', '', '', '', '0000-00-00', '', '', ''), (43, 647, 'Changes in website', '<p>Replaced content from k-12 to Teacher's Training under srvices</p>\n', '', '', '', '', 164, '', 'ACTIVE', '2020-06-05 10:34:43', '2020-06-11 16:42:17', '', '', '', '', '', '', '', '0000-00-00', '2020-06-11 11:12:17', '', '', '', '', '0000-00-00', '', '', ''), (44, 487, 'Creating New Tab Technology EDGE', '<p>Creating New Menu and adding the content for Technology Edge </p>\r\n', '', '', '', '', 20, 'RAISED', 'ACTIVE', '2020-07-06 12:10:51', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2020-07-06 06:40:51', '', '', '', '', '0000-00-00', '', '', ''), (45, 328, 'Content added in website', '<p>1.In Donate banner added one more bank details.</p>\n\n<p>2.In contact us banner added one more address.</p>\n', '', '', '', '', 164, 'RAISED', 'ACTIVE', '2020-07-07 16:19:13', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2020-07-07 10:49:13', '', '', '', '', '0000-00-00', '', '', ''), (46, 487, 'Content added in website', '<p>The word Cheif is added to Finance Officer under Administrative staff.</p>\n', '', '', '', '', 164, 'RAISED', 'ACTIVE', '2020-08-21 17:39:54', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2020-08-21 12:09:54', '', '', '', '', '0000-00-00', '', '', ''), (47, 487, 'Added New Tab in website', '<p>Added new tab name as Doctor or consultatnts with image.</p>\n', '', '', '', '', 164, 'RAISED', 'ACTIVE', '2020-10-15 18:46:40', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2020-10-15 13:16:40', '', '', '', '', '0000-00-00', '', '', ''), (48, 487, 'Telehealth care', '<p>Added tele Health Care new page for website.</p>\r\n\r\n<p>CDR files have been altered 10 pages</p>\r\n\r\n<p>Admin page Changes done </p>\r\n', '', '', '', '', 20, 'RAISED', 'ACTIVE', '2021-07-15 18:46:29', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2021-07-15 13:16:29', '', '', '', '', '0000-00-00', '', '', ''), (49, 264, 'website Updation', '<p>(2)Dental diagnosticswebsite - Analytics script tags added .</p>\r\n', '', '', '', '', 20, '', 'ACTIVE', '2022-02-18 12:09:05', '2022-02-18 12:09:44', '', '', '', '', '', '', '', '0000-00-00', '2022-02-18 06:39:44', '', '', '', '', '0000-00-00', '', '', ''), (50, 305, 'New requirements added', '<p>Product pages</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-22 11:48:58', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-22 06:18:58', '', '', '', '', '0000-00-00', '', '', ''), (51, 526, 'Support', '<p>Alignment issues solved </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-22 11:54:23', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-22 06:24:23', '', '', '', '', '0000-00-00', '', '', ''), (52, 724, 'tuesday 22/2/2022', '<p>(1) Adopter SN insertion for VP and Acer should be in packing stage </p>\r\n\r\n<p>(2)Remove customer panel and board no from the grids</p>\r\n\r\n<p>(3)Import/Forign vendor currency is in INR</p>\r\n\r\n<p>(4)Timestamp required for assembly and testing report</p>\r\n\r\n<p>(5)Time stamp should be in left side of the grid</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-23 11:17:28', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-23 05:47:28', '', '', '', '', '0000-00-00', '', '', ''), (53, 159, 'from 8/2/22 to 12/2/2022', '<p>(1)yarn raw grid , yarn twist grid , swan yarn dyed grid</p>\r\n\r\n<p>(2)added date anf location to stock position =>yarn-dyed grid , added update function to two grids</p>\r\n\r\n<p>(3)work order no 56 , customer list , unit production status, testing stage , update function</p>\r\n\r\n<p>(4)Swansilk update function to 4 grid</p>\r\n\r\n<p>(5)Swansilk added update function to 4 grids</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-23 11:53:11', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-23 06:23:11', '', '', '', '', '0000-00-00', '', '', ''), (54, 159, 'In stock (11/2/2022-12/2/2022)', '<p>stock added correction in issues to loom</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-24 12:14:41', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-24 06:44:41', '', '', '', '', '0000-00-00', '', '', ''), (55, 159, 'stock', '<p>(1)Add stock allows you to add multiple times.. and it will keep on adding to previous issue stock..</p>\r\n\r\n<p>(2)purpose / osl is added for all types of yarn.. it will show for the existing yarn also</p>\r\n\r\n<p>(3)Add puropose/osl code in issue to loom subgrid</p>\r\n\r\n<p>(4)Allow multiple add stock in subgrid - issue to loom</p>\r\n\r\n<p> </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-24 12:20:26', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-24 06:50:26', '', '', '', '', '0000-00-00', '', '', ''), (56, 159, 'transaction', '<p>(1)transaction order details</p>\r\n\r\n<p>(2)Completed order pending and complicated lists</p>\r\n\r\n<p>(3)fabric billing history</p>\r\n\r\n<p>(4)made up billing history and recent shipment</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-24 12:23:29', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-24 06:53:29', '', '', '', '', '0000-00-00', '', '', ''), (57, 197, 'Issues', '<p>(1)Unavailable documents list will be shared</p>\r\n\r\n<p>(2)High size Upload files not possible to upload</p>\r\n\r\n<p>(3)Logo for yaskawa is not available</p>\r\n\r\n<p>(4)Redirecting to dashboard from website link</p>\r\n\r\n<p>(5)PHP panel user name cfedentials to be sent</p>\r\n\r\n<p>(6)sampler bigger size file to be tested</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-24 12:35:54', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-24 07:05:54', '', '', '', '', '0000-00-00', '', '', ''), (58, 724, 'report section', '<p>(1)added packing report to production server,</p>\r\n\r\n<p>(2)solved autoscan issue in packeging report,</p>\r\n\r\n<p>(3)solving vender name issue in inspection report</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-24 12:39:53', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-24 07:09:53', '', '', '', '', '0000-00-00', '', '', ''), (59, 159, 'Support', '<p>Grid alignment---> Colour quality approval</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-25 11:05:40', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-25 05:35:40', '', '', '', '', '0000-00-00', '', '', ''), (60, 264, 'Support', '<p>updated counter plugin in home page</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-25 11:06:42', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-25 05:36:42', '', '', '', '', '0000-00-00', '', '', ''), (61, 487, 'new changes ', '<p>(1)Menu Order Change in Home Page and all inner pages</p>\r\n\r\n<p>(2)Slider Image added to home screen - Oxygen Plant inaguration</p>\r\n\r\n<p>(3)4 Slider images to be added to home screen</p>\r\n\r\n<p>(4)Ambulance spelling change in ambulance page</p>\r\n\r\n<p>(5)consultation day order change in general surgery</p>\r\n\r\n<p>(6)Photography word replaced with phototheraphy in home page menu and footer</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-25 13:26:28', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-25 07:56:28', '', '', '', '', '0000-00-00', '', '', ''), (62, 724, 'Report changes 24/2/2022', '<p>(1)Dashboard inspection quatity is not matching with actual data</p>\r\n\r\n<p>(2)Stock report loading time is more</p>\r\n\r\n<p>(3)Inspection reports shows jayblues under vendor name</p>\r\n\r\n<p>(4)In stock-->stock page all forms should be refreshed</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-25 14:02:01', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-25 08:32:01', '', '', '', '', '0000-00-00', '', '', ''), (63, 305, 'new requirements ', '<p>the old content is removed and added a new requirement in product page</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-28 11:15:46', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-28 05:45:46', '', '', '', '', '0000-00-00', '', '', ''), (64, 724, 'work order and report changes', '<p><strong>ON 10/01/2022 MEETING</strong></p>\r\n\r\n<p>(1)Add lot no, status column in export to excel</p>\r\n\r\n<p>(2)Produced goods column logic is wrong</p>\r\n\r\n<p>(3)Add Assembly Stage Page</p>\r\n\r\n<p>(4)Add Packing Stage Page</p>\r\n\r\n<p>(6)Unable to edit customer list</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-02-28 11:50:01', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-02-28 06:20:01', '', '', '', '', '0000-00-00', '', '', ''), (65, 721, 'Support', '<p>some minor issues will be solved </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-02 11:26:52', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-02 05:56:52', '', '', '', '', '0000-00-00', '', '', ''), (66, 713, 'Support', '<p>questionaries is not working and it is solved by sowmya </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-02 11:28:11', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-02 05:58:11', '', '', '', '', '0000-00-00', '', '', ''), (67, 724, 'minor issues', '<p>(1)Workorder-->Part # Twice the time refelected (Part # & Customer Part #)</p>\r\n\r\n<p>(2)Workorder-->Display page should be enlarge</p>\r\n\r\n<p>(3)Workorder-->Bill of material part # missing</p>\r\n\r\n<p>(4)Testing Stage-->Testing History column need to be remove</p>\r\n\r\n<p>(5)Repair Stage-->Repair history should be remove from repair stage</p>\r\n\r\n<p>(6)FG Inventory Report-->Part # Twice the time refelected (Part # & Customer Part #)</p>\r\n\r\n<p>(7)FG Inventory Report-->Time stamp --> Date and time should be Separate column.</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-02 11:39:08', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-02 06:09:08', '', '', '', '', '0000-00-00', '', '', ''), (68, 724, 'minor issues', '<p>(1)Assembly Report-->Time stamp required --> Date and time should be Separate column.</p>\r\n\r\n<p>(2)Assembly Report-->Operator name required</p>\r\n\r\n<p>(3)Testing Report-->Time stamp required --> Date and time should be Separate column.</p>\r\n\r\n<p>(4)Testing Report-->Operator name required</p>\r\n\r\n<p>(5)Repair Report-->Time stamp --> Date and time should be Separate column.</p>\r\n\r\n<p>(6)OQA Report-->Time stamp --> Date and time should be Separate column.</p>\r\n\r\n<p>(7)OQA Report-->Operator name required</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-02 11:45:04', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-02 06:15:04', '', '', '', '', '0000-00-00', '', '', ''), (69, 159, 'changes', '<p>(1)fabric billing history</p>\r\n\r\n<p>(2)recent shipment</p>\r\n\r\n<p>(3)made up billing history</p>\r\n\r\n<p>(4)Colour quality approval</p>\r\n\r\n<p>(5)Colour/ quality ->edit created a new page for that button ,then created a request for dtl n po</p>\r\n\r\n<p>(6)colour/quality->preview button added to the grid and a view to the same button</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-02 11:49:31', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-02 06:19:31', '', '', '', '', '0000-00-00', '', '', ''), (70, 713, 'server issues', '<p>Medusys --> testing server issues, staging and server set up</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-03 11:40:48', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-03 06:10:48', '', '', '', '', '0000-00-00', '', '', ''), (71, 724, 'changes (03/02/2022)', '<p>(1)Production>> repair stage-->products are not able to approve in repair stage</p>\r\n\r\n<p>(2)Unit production status-->Production>> UPS-->refreshing issue in UPA</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-03 12:30:08', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-03 07:00:08', '', '', '', '', '0000-00-00', '', '', ''), (72, 264, 'Support - 1 and half an hour', '<p>(1)home page slider image replaced(Tejaswi)</p>\r\n\r\n<p>(2)conent removed in testimonial page slider(CM Udasi)</p>\r\n\r\n<p>(3)added new content in testimonial page slider(Gopinath reddy)</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-03 15:55:04', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-03 10:25:04', '', '', '', '', '0000-00-00', '', '', ''), (73, 724, 'changes (04/02/2022)', '<p>(1)9 unit sn moved to testing stage ,<br />\r\n(2)Refresh issue solved'<br />\r\n(3)Product approval in repair stage moved to production<br />\r\n(4)Added subgrid to UPS</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-04 11:36:55', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-04 06:06:55', '', '', '', '', '0000-00-00', '', '', ''), (74, 724, 'Support', '<p>(1)Viewpaker support --> database<br />\r\n(2)Viewpaker stock details and stock report issue solving</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-07 11:20:35', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-07 05:50:35', '', '', '', '', '0000-00-00', '', '', ''), (75, 724, 'Production stage', '<p>(1)Moved 30 unit sn to testing and database changes,<br />\r\n(2)Moved unit production status subgrid to production<br />\r\n(3)Working on assembly stage toster issue</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-07 11:21:45', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-07 05:51:45', '', '', '', '', '0000-00-00', '', '', ''), (76, 159, 'new requirements ', '<p>(1)Colour/ quality ->edit created a new page for that button ,then created a request for dtl n po</p>\r\n\r\n<p>(2)colour/quality->preview button added to the grid and a view to the same button</p>\r\n\r\n<p>(3)Finished the updates s on insert colour quality approval</p>\r\n\r\n<p>(4)fabric and about # and search button in page</p>\r\n\r\n<p>(5)Completed yarn dtl po and colour quality approval is completed</p>\r\n\r\n<p>(6)Completed back-end of insert in colour quality approval it's successfully inserted</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-07 11:54:01', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-07 06:24:01', '', '', '', '', '0000-00-00', '', '', ''), (77, 724, 'changes', '<p>(1)unit SN generation-->generate 11 unit sn for WO-87</p>\r\n\r\n<p>(2)OQA Stage-->Dashboard data Vs OQA Page Data mismatch</p>\r\n\r\n<p>(3)Repair Stage-->Part name intead of shows product name check your logic</p>\r\n\r\n<p>(4)Repair Report-->Operator name required</p>\r\n\r\n<p>(5)Repair Report-->Product name intead of shows part name check your logic</p>\r\n\r\n<p>(6)Repair Report-->Product name data mismatch</p>\r\n\r\n<p>(7)All Heading should be centered</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-09 14:08:19', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-09 08:38:19', '', '', '', '', '0000-00-00', '', '', ''), (78, 724, 'Support', '<p>(1)viewpacker support-> database</p>\r\n\r\n<p>(2)stock report and stock details --> loading issues solved</p>\r\n\r\n<p>(3)data mismatch issues in stock report</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-09 14:10:29', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-09 08:40:29', '', '', '', '', '0000-00-00', '', '', ''), (79, 724, 'Referesh page->Issues', '<p>All forms are not refreshing after submiting--> issues solved</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-10 16:08:53', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-10 10:38:53', '', '', '', '', '0000-00-00', '', '', ''), (80, 724, 'Issues', '<p>(1)Inspection Report-->Vendor name logic wrong / Report should be double entry.</p>\r\n\r\n<p>(2)Material inward report-->Material inward report display issue</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-11 11:11:35', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-11 05:41:35', '', '', '', '', '0000-00-00', '', '', ''), (81, 264, 'Support', '<p>price list item added in price list page</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-14 11:55:22', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-14 06:25:22', '', '', '', '', '0000-00-00', '', '', ''), (82, 559, 'Support', '<p>new logo updated</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-14 11:55:43', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-14 06:25:43', '', '', '', '', '0000-00-00', '', '', ''), (83, 159, 'issues from 7/03/2022 to 11/03/2022', '<p>(1)Completed back-end of insert in colour quality approval it's successfully inserted</p>\r\n\r\n<p>(2)finished the edit insert and preview in colour quality approval</p>\r\n\r\n<p>(3)Work completed the changes given colour quality approval grid and in edit and in preview</p>\r\n\r\n<p>(4)changed date format and started loading grid issue of stock transfer</p>\r\n\r\n<p>(5)completed transfer stock loading grid issue</p>\r\n\r\n<p>(6)changes done in shade insert edit and preview</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-17 12:05:40', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-17 06:35:40', '', '', '', '', '0000-00-00', '', '', ''), (84, 159, 'New requirements added', '<p>two new views created in order due to ship</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-19 11:29:31', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-19 05:59:31', '', '', '', '', '0000-00-00', '', '', ''), (85, 159, 'Issues', '<p>(1)for every grid in transfer and received preview pc and transfer onclick go to new page the recived stock grid solved loading problem sloved loading problem of fbric inspection</p>\r\n\r\n<p>(2)loading issues in work orderdelivery, weaving issue to loom stock position fabric</p>\r\n\r\n<p>(3)loading issues in stock position yarn-raw,yarn-twisted grid loading issue of WO dyeing crated new view page in order due to ship</p>\r\n\r\n<p>(4)added access control to color quality approval and made small changes in add indent</p>\r\n', '', '', '', '', 192, '', 'ACTIVE', '2022-03-19 11:31:37', '2022-03-21 12:09:07', '', '', '', '', '', '', '', '0000-00-00', '2022-03-21 06:39:07', '', '', '', '', '0000-00-00', '', '', ''), (86, 159, 'Issues (1 week update)', '<p>(1)given access if button clicked page logged out (pending)</p>\r\n\r\n<p>(2)access issue sloved in order due to ship</p>\r\n\r\n<p>(3)access issue in color quality approval history purchased fabric new added new column</p>\r\n\r\n<p>(4)created new menu pending yarn list & 2nd part was to update the status column in the grid </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-03-24 13:32:46', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-03-24 08:02:46', '', '', '', '', '0000-00-00', '', '', ''), (87, 724, 'update by rahul from 17/03/2022 to 19/03/2022', '<p>(1)Adding grids to all the reports page</p>\r\n\r\n<p>(2)Adding export and print function to all the reports page</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-08 13:55:18', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-08 08:25:18', '', '', '', '', '0000-00-00', '', '', ''), (88, 724, 'from 21/3/22 to 23/3/2022', '<p>(1)Added export and print function to all the reports page</p>\r\n\r\n<p>(2)Moved grids to testing server and Solving stock details data mismatch issue</p>\r\n\r\n<p>(3)Solving Stock details data mismatch</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-08 13:57:42', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-08 08:27:42', '', '', '', '', '0000-00-00', '', '', ''), (89, 724, '28/03/2022 to 01/03/2022', '<p>(1)Adapter sn scanning feature added to production</p>\r\n\r\n<p>(2)Stock details mismatch issue</p>\r\n\r\n<p>(3)Stock details mismatch issue & Pdf conversion</p>\r\n\r\n<p>(4)Viewpaker report section minor issues solving</p>\r\n\r\n<p>(5)Viewpaker indent po changes in database and Po_id logic correction</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-08 14:00:32', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-08 08:30:32', '', '', '', '', '0000-00-00', '', '', ''), (90, 159, 'from 28/03/2022 to 2/04/2022', '<p>(1)added reqired on in th column and tried to update</p>\r\n\r\n<p>(2)2nd part was to update the status column in the grid which is completed"</p>\r\n\r\n<p>(3)crated nwe side menu yarn dyieng issued/supplier added preview to the pending yarn list</p>\r\n\r\n<p>(4)in yarn dyieng issued/supplier gerid wrong status was fetched edit was added to the status </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-08 14:10:30', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-08 08:40:30', '', '', '', '', '0000-00-00', '', '', ''), (91, 724, '1 week update by rahul from 4/04/2022 to 9/04/022', '<p>(1)Work order financial year logic and WO 121 unit sn missing in repair stage</p>\r\n\r\n<p>(2)4 unit sn changes in database and Error in work order status report</p>\r\n\r\n<p>(3)Added jqgrids to feedback page and Indent po chanages</p>\r\n\r\n<p>(4)Indent po chanages completed ,Show passed data in testing stage issue and Moved passed database changes</p>\r\n\r\n<p>(5)Work order status report logic issue solved</p>\r\n\r\n<p>(6)Indent po financial year issue solving and Packing stage print and alert issue is solving</p>\r\n\r\n<p> </p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-14 11:42:43', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-14 06:12:43', '', '', '', '', '0000-00-00', '', '', ''), (92, 159, 'new requirements ', '<p>(1)created new menu pending fabric list</p>\r\n\r\n<p>(2)wrongdata was fetched in the pending fabric list corrected</p>\r\n\r\n<p>(3)added preview and update status to the pending fabric list</p>\r\n\r\n<p>(4)created new edit button in yarn raw twisting dyed</p>\r\n\r\n<p>(5)changes given in History - Consumables and Spares completed</p>\r\n\r\n<p>(6)given changes in twisting Wo completed</p>\r\n', '', '', '', '', 192, 'RAISED', 'ACTIVE', '2022-04-14 11:46:55', '0000-00-00 00:00:00', '', '', '', '', '', '', '', '0000-00-00', '2022-04-14 06:16:55', '', '', '', '', '0000-00-00', '', '', ''); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `user_id` int(11) NOT NULL, `user_type_id` int(11) NOT NULL, `department_id` int(11) NOT NULL, `user_name` varchar(250) NOT NULL, `last_name` text NOT NULL, `Alias` varchar(200) NOT NULL, `email` varchar(100) NOT NULL, `Phone` varchar(20) NOT NULL, `Mobile` varchar(20) NOT NULL, `Fax` varchar(20) NOT NULL, `Website` varchar(50) NOT NULL, `Date_of_Birth` date NOT NULL, `Street` varchar(200) NOT NULL, `Zip_Code` varchar(10) NOT NULL, `Country` text NOT NULL, `City` text NOT NULL, `State` text NOT NULL, `password` varchar(250) NOT NULL, `salt_pass` text NOT NULL, `role_id` int(11) NOT NULL, `role` text NOT NULL, `zone` text NOT NULL, `profile_pick` text NOT NULL, `remember_status` int(11) NOT NULL, `customized_leave` varchar(111) NOT NULL, `Twitter` text NOT NULL, `Facebook` text NOT NULL, `Google` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`user_id`, `user_type_id`, `department_id`, `user_name`, `last_name`, `Alias`, `email`, `Phone`, `Mobile`, `Fax`, `Website`, `Date_of_Birth`, `Street`, `Zip_Code`, `Country`, `City`, `State`, `password`, `salt_pass`, `role_id`, `role`, `zone`, `profile_pick`, `remember_status`, `customized_leave`, `Twitter`, `Facebook`, `Google`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 1, 2, 'Admin', '', 'joy', 'admin@gmail.com', '', '', 'TY666', 'yaskawa.com', '2017-08-31', '3rd main,6th cross,', '570023', 'india', 'mysore', 'karnataka', '$2a$05$zCs.9X5iWuWHR4PCTtsEYOIEYkYAC.eYfHezY.OSqlPf4oaZptBEi', 'zCs.9X5iWuWHR4PCTtsEYb', 1, 'CEO', '', '15218066951521540946Desert.jpg', 1, '', 'abc@gmail.com', 'fac@gmail.com', 'g.com', 'ACTIVE', '0000-00-00 00:00:00', '2018-03-26 18:24:40'), (20, 2, 3, 'Ajay', 'Srinivas', '', 'ajay@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCeEabh2jA6V7KtF6HVJrYgC6tRAQ5CQge', 'pR8rxshumKOtrBBPgNYOCg', 1, 'CEO', ' ', '1531551659Hydrangeas.jpg', 0, '', '', '', '', 'ACTIVE', '2018-07-14 00:00:00', '2018-10-25 13:51:08'), (21, 2, 3, 'Nithin', 'Thayagrag', '', 'nithin@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 61, 'Business Development Executive', ' ', '1532680800Hydrangeas.jpg', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '2018-09-20 16:43:27'), (22, 2, 3, 'sowmya', 'shree', '', 'sowmya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 58, 'Manager', ' ', '1532687240Chrysanthemum - Copy.jpg', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (24, 2, 3, 'Subramanya', 'M', '', 'subramanya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCeOIojCip9ylqTFGflkb8m7cEB8jcXEAK', 'pR8rxshumKOtrBBPgNYOCg', 69, 'Delivery Lead', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '2018-09-21 13:43:37'), (25, 2, 3, 'Sridhar', '', '', 'sridhar@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 64, 'Team Lead', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '2018-10-24 19:12:45'), (26, 2, 3, 'Manjunath', 'B M', '', 'manjunath@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 64, 'Team Lead', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '2019-01-24 12:15:56'), (27, 2, 3, 'Shreemathi', 'M', '', 'shrimathi@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 62, 'PHP Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (28, 2, 3, 'Avinash', 'R', '', 'avinash.rgowda55@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 65, 'UI Ux Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (29, 2, 3, 'Vidya ', 'S Y', '', 'vidya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 62, 'PHP Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (30, 2, 3, 'Divyashree', 'M', '', 'divya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 66, 'Tester', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (31, 2, 3, 'Chayadevi ', 'M S', '', 'chaya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 64, 'Team Lead', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (32, 2, 3, 'Lalitha', 'B R', '', 'lalitha@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCeAWas6O/tLM1gKYw6OWJS4Sv5/UFta6G', 'pR8rxshumKOtrBBPgNYOCg', 62, 'PHP Developer', ' ', '1533129344Hydrangeas.jpg', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '2018-08-01 18:59:46'), (33, 2, 3, 'Harshith', 'MP', '', 'harshith@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 65, 'UI Ux Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (34, 2, 3, 'Lavanya', 'N', '', 'lavanya@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 63, 'Designer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (35, 2, 3, 'Prakuthi ', 'H L', '', 'prakruthi@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 66, 'Tester', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (36, 2, 3, 'Shri priya ', 'AM', '', 'shripriyamys@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 57, 'Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (37, 2, 3, 'Suhasini N', 'Hebbar', '', 'suhasinin15@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 67, 'Digital Marketing Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (38, 2, 3, 'Nithin K T', 'Thayagrag', '', 'nithin@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-27 00:00:00', '0000-00-00 00:00:00'), (39, 2, 3, 'Sneha nag', 'S', '', 'sne@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 62, 'PHP Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-28 00:00:00', '0000-00-00 00:00:00'), (40, 2, 3, 'Nayana ', 'K', '', 'nayanakumar1234@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 62, 'PHP Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-28 00:00:00', '0000-00-00 00:00:00'), (41, 2, 3, 'vivek', 'M', '', 'aryavivekm@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 63, 'Designer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-07-28 00:00:00', '0000-00-00 00:00:00'), (42, 3, 0, 'G V IMPORTS & INFRA', '', '', 'gvimportsinfra@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (48, 0, 0, 'Marrie\'s Food Factory', '', '', 'marriesfoodfactory@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (49, 0, 0, 'Testing campus infotech', '', '', 'Testingcampusinfotech@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (50, 0, 0, 'Namma Foundation', '', '', 'shanmuga@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (51, 0, 0, 'Vast business report pvt Ltd', '', '', 'vastbussinessreport@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (52, 0, 0, 'Brigade Bar & Restaurant', '', '', 'Brigade@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pR8rxshumKOtrBBPgNYOCerzGtsiqa..GvZeSYV3Wp7V.XQRU0nym', 'pR8rxshumKOtrBBPgNYOCg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (59, 3, 0, 'Durvas Trading inc ', '', '', 'durvastradinginc@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$SYraxy2xZPFQvR7JlJ/KLueXemZNF4U66b6t899Va8PSWLLIisVim', 'SYraxy2xZPFQvR7JlJ/KL4', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (60, 3, 0, 'Color Studio', '', '', 'colorsstudiosindia@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$ilaFPGuX.5DnV6Er6YihiOx7Idh6iI/R2AkrExTYDJoJGv77/uwBS', 'ilaFPGuX.5DnV6Er6YihiP', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (61, 3, 0, 'Proveraxius', '', '', 'proveraxios@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Ovh6rQ2.ebwxzdKfXAkbs.TOJoty7FIh4bUGWkyQ/wFL7ZzoknDmS', 'Ovh6rQ2.ebwxzdKfXAkbsN', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (62, 3, 0, 'Vardhaman Textiles', '', '', 'Vardhamantextiles@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$V2zJ9GecdyD0vqLtyFPPc.xR0c0aDqD4NLCs6vNyaoAuznT8bTjne', 'V2zJ9GecdyD0vqLtyFPPc.', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (63, 3, 0, 'Police investigation Newspaper', '', '', 'abdulla.bangalore16@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$6m/BZ0rzLebSIJMiCVb3a.XRNeUDgZ/ZsfaZ050x0mK18ILaTLnaq', '6m/BZ0rzLebSIJMiCVb3aG', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (64, 3, 0, 'Yuva Sene', '', '', 'advocatemalipavangowda@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$8HU7nfWzIBUp3hTXggs3oe2/ljBIMZGFNMCvkWgte65BcRkmDWADW', '8HU7nfWzIBUp3hTXggs3oh', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (65, 3, 0, 'Aryan Investments', '', '', 'dhanushg175@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$ifZhxbYZOnKsiklQvz0RueTffejMqshrg0yhWYvYIS9Ba/CYrNWWa', 'ifZhxbYZOnKsiklQvz0Rul', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (66, 3, 0, 'Manasa Garden Service', '', '', 'bhanugowdasb@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zwJD/vEmf99sWNim6KtcEO2BnFX8JxArpLMBvfS34gnVB1gVuEzfe', 'zwJD/vEmf99sWNim6KtcEa', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (67, 3, 0, 'chickpetdonnebiryanihouse', '', '', 'donnebiryani@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$jXRHJEcSsyUVPpNf.XiQx.HDcKpQ7veI0us5SLeqS7cmITXUNnFoa', 'jXRHJEcSsyUVPpNf.XiQxC', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (68, 3, 0, 'BSS Facility Mangement', '', '', 'bssfacility.blr@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$awbdaBwY1y0zZatWgutXhehA/0WFdhOweKkU79XtSrtck5giE2vlm', 'awbdaBwY1y0zZatWgutXhs', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (69, 2, 3, 'Shreerama', '', '', 'shreerama77@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$UTqwzC8S5bbDd8MATuGkJOsibjCo8rBm7CmF6nJ5tXRuQtSrI9r7K', 'UTqwzC8S5bbDd8MATuGkJW', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-10-30 00:00:00', '0000-00-00 00:00:00'), (70, 3, 0, 'KOSMIK - Refrigeration & Air Conditioning', '', '', 'Jaweed@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$XHvoNO7O2UnNbSD2F.3CCeuNw6manlrK8VsPd4Dk5FB9ljnoVKwqG', 'XHvoNO7O2UnNbSD2F.3CCe', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (71, 3, 0, 'T.saifuddin & co', '', '', 'saifuddinco@hotmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$UFrTeOngaCUFOZQWNt4iuO19/SNbdgDvLr8iTFBFvc1al1I3pcHgm', 'UFrTeOngaCUFOZQWNt4iuP', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (72, 3, 0, 'INSTA BUCKS GOLD PVT KTD. ', '', '', 'Balasubramani@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$3O0fGmw.pfKJw5Q9dUK5heesAHYma/tojM2kHSPZZ8lOOIenKREOG', '3O0fGmw.pfKJw5Q9dUK5hi', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (73, 3, 0, 'P Square foods', '', '', 'masterprithvi100@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$GG2dJH0kim6lV08Dn.79AO55HQBQvhnpPY/5j/lYMFzshBS2cioRS', 'GG2dJH0kim6lV08Dn.79AX', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (74, 3, 0, 'RP Printers', '', '', 'Rpprints@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$V52FC72Zreo1wKdxfYV8K.T8wPVgSeqgODWEMi5vAOCkKQ.Kfbeb6', 'V52FC72Zreo1wKdxfYV8KB', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (75, 3, 0, 'Eco Travells', '', '', 'ecotrvelsm@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$HynGEE6EJfCBgieWaZT2tOAiqVoJk.dBIY6jaigZq.DylI.JJ3Tz.', 'HynGEE6EJfCBgieWaZT2tO', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (76, 3, 0, 'My Hindustan Travells', '', '', 'myhindusthan@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$qp39jIFw0J8xjLbZbNU/2.wu7v3c1IQ5FB1.YRJ0u3Qj6E4jvsVoW', 'qp39jIFw0J8xjLbZbNU/2/', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (77, 2, 3, 'Navya', 'Shree', '', 'navyashree@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$ScPACJ7tny.anlUFksVMhOkE6/CHz5bHUXmVNB8SD2fK8GpH4Kvl6', 'ScPACJ7tny.anlUFksVMhZ', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-11-23 00:00:00', '0000-00-00 00:00:00'), (78, 3, 0, 'Spectrum Medical Publishers & Distributors ', '', '', 'Spectrummedicalpublishess@yahoo.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$lYSkaMNEmOX/ERKaycGq6.OqPtKLIu.21MEZYWHsDeSgp0m/IOtkS', 'lYSkaMNEmOX/ERKaycGq6I', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (79, 3, 0, 'Space Designs', '', '', 'Spacedesign@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$lCEe0IXbp0XfArcA1fNTGuHLC9QK4xCR0kdAKGbLCNy6a7Yb20V1m', 'lCEe0IXbp0XfArcA1fNTG5', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (80, 2, 3, 'Reshma', 'B', '', 'reshma@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$w8nq6z8a63Ke8pqBEn1RduRHRNdGgU9jYppH7PgLINV5O5BFc2cC6', 'w8nq6z8a63Ke8pqBEn1Rd0', 71, 'Support Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2018-11-29 00:00:00', '0000-00-00 00:00:00'), (81, 3, 0, 'JK Fashions', '', '', 'kirankumar06061991@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$eYreKzKnVLjlcQMa6WuJFO7D24PBPEJyUoAp8Pecb35LSYeoxyu32', 'eYreKzKnVLjlcQMa6WuJFZ', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (82, 3, 0, 'Cosmos Clean System', '', '', 'cosmosclean@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$MMr.8RSnkwkWhMJk19ptHO.6u5t6zm.jHveTQkX3lf4kzEAea82BG', 'MMr.8RSnkwkWhMJk19ptHT', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (83, 3, 0, 'SkyDreamzee', '', '', 'skydreamzee@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$kfUuDU54kPvtynTi0iIMGeg7OcfQU3UGFKJQjGToR4GMou/6cGoeS', 'kfUuDU54kPvtynTi0iIMGe', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (84, 3, 0, 'Indigo Plastics', '', '', 'rao@indigoplastics.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$POQsa73MeS3dYjRIkLwd1.2T46RK3G.TbTAwGZ3sBAZ.Rep6Hj1zG', 'POQsa73MeS3dYjRIkLwd1C', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (85, 3, 0, 'Jazz Anitique Metals', '', '', 'ramesh.mtsbeml@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$M3jxuhFofxXkRwBqAeFzhOIR43eV/p.wlhSxj8DDvTgT9nMaTeLxG', 'M3jxuhFofxXkRwBqAeFzhU', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (86, 3, 0, 'Guardian Care Taker', '', '', 'farah.zaina@yahoo.in', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Oj2wom9ngnxJap/TFxDkAu8bv0xky0HbB9blZ7gAnNOHpMxdQndJa', 'Oj2wom9ngnxJap/TFxDkA4', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (87, 3, 0, 'Sri Venu Glass', '', '', 'sales@srivenuglass.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$olIzNFFYMkPMyj32eVPTYOyXP1iMlFq/nRIdgxgBQt5fvnyTli3Cu', 'olIzNFFYMkPMyj32eVPTYb', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (88, 3, 0, 'St.Anns Public School', '', '', 'stannspublic2004@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$To2I5/jlfpi3tglv5NM2cOJl5RIxUAnuAQ0wngidv/uDcXbnmYCry', 'To2I5/jlfpi3tglv5NM2cY', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (89, 3, 0, 'Alert Global Security Service', '', '', 'agssblr@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$s0qmTpP7LUquYqQo8dUyke5r.mioIbEg4k.urnpWjo0Vc48yrpyxm', 's0qmTpP7LUquYqQo8dUykh', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (90, 3, 0, 'Classic transport solutions', '', '', 'Bashakhan@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$QP1wJmfo/HTlKg0upEDwl.fNt2jZ/LLslHXu9fS5wTNSZa18M4Gai', 'QP1wJmfo/HTlKg0upEDwlJ', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (91, 3, 0, 'Navakruthi Enterprises', '', '', 'navakruthee@yahoo.in', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$ZuZs.6YB54nJOmaO9uggJ.UB3v7y8FIznMpVxzNZjM2YrJLFmtB2.', 'ZuZs.6YB54nJOmaO9uggJK', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (92, 3, 0, 'Royale electronics', '', '', 'royaleelectronics1995@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$PnEFI6wvL79lJkHQ3lmqheMUF1VvZousa3hbxsQFZ2RnqBuCNI8c.', 'PnEFI6wvL79lJkHQ3lmqhl', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (93, 3, 0, 'Steel Man Security Force', '', '', 'support@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$LtLXveznnp76ARtY3bovXu92u/G4KgNXTamtjmp3Gj7wKFhQxtiwe', 'LtLXveznnp76ARtY3bovXy', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (94, 3, 0, 'Branils Enterprises', '', '', 'lab737@yahoo.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$vO8M87R9aJpNTxtZZGU3sOGiMzxyrOE/bQiOthNVNyLDV9BUOwR9K', 'vO8M87R9aJpNTxtZZGU3sY', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (95, 3, 0, 'Veshma Infratech', '', '', 'murundisrini@yahoo.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$V2wKlg4f/qxYIJ50hvVtH.OwDoF/6IoW1TqH0sUmIeetssxzJ9k.O', 'V2wKlg4f/qxYIJ50hvVtHE', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (96, 3, 0, 'Optimetz', '', '', 'prakash@optimetz.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$W9/PMOeEjlngKl.aT8H1s.L7zVcAouybU2wnQ0scuOvxN0XgzyS3u', 'W9/PMOeEjlngKl.aT8H1sN', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (97, 3, 0, 'Smart geo engineering services', '', '', 'smartgeoengg@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$1H5q7NpaLQx8nDgeVz9HPOZlCodIvqpaksrGtNzg2ZTPr.lWym6kK', '1H5q7NpaLQx8nDgeVz9HPZ', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (98, 3, 0, 'Nuagefarm ', '', '', 'devendra.meena@outlook.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$rxQ5NW9.MSLLjPf7MdwfhufWPeig1mAxHkZUWVjoNU9a71GYf9AZu', 'rxQ5NW9.MSLLjPf7Mdwfhy', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (99, 3, 0, 'Healing Touch', '', '', 'healingtouch@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$5k1iAyOJBBipSMk8C6xaXu6kAUCbcWTFMlQvCxJ/AtmhDch245fJG', '5k1iAyOJBBipSMk8C6xaX6', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (100, 3, 0, 'Advaith Motors', '', '', 'Shivu@yahoo.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Xx8uBP59c/6jZUQIvUF7S.sDeQgDz8Q2a3UjP6XeM2v/iJig2MO1i', 'Xx8uBP59c/6jZUQIvUF7SJ', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (101, 2, 3, 'Manjunath', 'B M', '', 'manjunath@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$bE9p5rYqo4.cxqqOyKlz6.ZdkxeHlLOA8SkkVvtlkdv2fbLXZRiX2', 'bE9p5rYqo4.cxqqOyKlz6K', 64, 'Team Lead', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-01-23 00:00:00', '0000-00-00 00:00:00'), (102, 2, 3, 'Avinash', 'R', '', 'avinash.rgowda55@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$PMa4b7tFQSUZ8gNuocMjAuxdvKozh85pEzA7gtikBD9f1t.r/9XLK', 'PMa4b7tFQSUZ8gNuocMjA4', 62, 'PHP Developer', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-01-24 00:00:00', '0000-00-00 00:00:00'), (103, 3, 0, 'Victory Vivin', '', '', 'venkatesh@victory.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$q7AYKZXKV8fzTbdo0MM2LewrYzMrbgarOQVsaICRdYamCvWe3dA5C', 'q7AYKZXKV8fzTbdo0MM2Lg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (104, 3, 0, 'Skill Tree Academy', '', '', 'jayaram@neutrinosolution.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$H6Uz9GqpR7Rr.Agg7239yOoXDp8Ia3DPsC4I4a.Mnpsx.8tVHIQ5W', 'H6Uz9GqpR7Rr.Agg7239yS', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (105, 2, 3, 'Accounts Manjunath', 'M', '', 'aadvi2018@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$HLm2DvfcKIimDkksrpwveeRBcTQsgI2OuqNwFgDx8.YLKR1h.MDQy', 'HLm2DvfcKIimDkksrpwvel', 72, 'Accounts', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-01-26 00:00:00', '0000-00-00 00:00:00'), (106, 3, 0, 'Vedic Vedant', '', '', 'tiwari@vedicvedant.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$HOKcTwBpcu3JbJJJN8AA8.pDC2j6tygECpdJC3bedoGclwgOW9D1a', 'HOKcTwBpcu3JbJJJN8AA8F', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (107, 3, 0, 'Land Marq', '', '', 'shekar2889@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$.n3xW8ztkescvA5MdsoEGuXcVQ7jloLjGaFFFAaW7VeyS5UoCikW6', '.n3xW8ztkescvA5MdsoEGv', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (108, 3, 0, 'Nature Homecare Products', '', '', 'naturehomecareproduct@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$5HP09RXkv75GFfrcDBCYz.zXCUQqWKCe6S3GZYCo2ee//1yPV5Ahq', '5HP09RXkv75GFfrcDBCYzI', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (109, 3, 0, 'Snoring and sleep annea clinic.', '', '', 'niveditha@snooringclinic.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$L4TceXMQqLukGyeHmUjswef2PLvsjKJyUJHkf0WpavktaDf5U14pO', 'L4TceXMQqLukGyeHmUjswq', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (110, 3, 0, 'Actovive', '', '', 'sandeep@actovive.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$bINvUFnCB6bTXFRCOM36YeMvtxSllDNmF8FT9ePw1Zsm6V5JPjDsa', 'bINvUFnCB6bTXFRCOM36Yo', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (111, 3, 0, 'SK Infrastructure', '', '', 'anand@sk.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$73qS5Mgba6B6NRdWzXE5peySQ4ouOZRTEY5qcUbqpvQN19WjPEtxW', '73qS5Mgba6B6NRdWzXE5pg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (112, 3, 0, 'Intiprocure', '', '', 'nraghub@live.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$jZt7ID7FJIufSF.nSbU3wuL1/xLIxdoM.0unMkchbUzqfl1HKJpfq', 'jZt7ID7FJIufSF.nSbU3w6', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (113, 3, 0, 'Blitzkrieg Audio Video Pvt Ltd', '', '', 'shashank.ks@blitzkriegav.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$NXgnQUCrjK94VBtsMoLg/eT3Mzz43UzDw5TUXY.x6rJ3qoL05Cr5C', 'NXgnQUCrjK94VBtsMoLg/f', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (114, 3, 0, 'Aanya INC', '', '', 'aanyaincblr@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$r/wfsWPmdBJF/VOz.UugEuqdJFyty2hY4MJrm3FTsfzYzo5XjHy4u', 'r/wfsWPmdBJF/VOz.UugE6', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (115, 3, 0, 'Sunlight Cloth drying ceiling hangers industries bangalore', '', '', 'mahadevaswamy@sunlight.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$SBjxWT.2TJaCZf5o2X5RZ.RrXttCL66XLyXUpGYybTakRzB99ju22', 'SBjxWT.2TJaCZf5o2X5RZ/', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (116, 3, 0, 'Shree Chowdeshwari Travells', '', '', 'chowdeshwari@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$5iIBI4m4B2FzUW8Dc/4sAulgIL..FQDU0lQX1H8N6LbTkkIPzjZqa', '5iIBI4m4B2FzUW8Dc/4sAy', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (117, 3, 0, 'AB Square', '', '', 'pradip@absquare.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$O1/t1922FNX1.cz7nOke9eeTrpn98O3MUsDvubtXjyCEbQDyFo9/m', 'O1/t1922FNX1.cz7nOke9h', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (118, 3, 0, 'SS Properties 786', '', '', 'mujeebulla1@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$95Xky4vegSs80H8TNvquNe.w9CtsJ0JHEwI/rrSwNNKgJWGaN/.US', '95Xky4vegSs80H8TNvquNq', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (119, 3, 0, 'Sri Manjunatha civil Constructions', '', '', 'subramani7823@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$9Rn8u6vXRm92KXAtIZml4up3kBqNI1/DNT4YVBgwCwWsWqQTn5K/K', '9Rn8u6vXRm92KXAtIZml4v', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (120, 3, 0, 'Vision Tutorials', '', '', 'soana@vision.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$7EQ4gLgoqewGDe.TulAFEeRoBAccvgsP0Em.SHDACtNxMEu.C5yBy', '7EQ4gLgoqewGDe.TulAFEs', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (121, 3, 0, 'Jus Prudens Advocates & Solicitors', '', '', 'meghachandra.dn@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$TtCB17Wfw2O08.1dx6/4tecZuoTUbsgvFeER8xhdqwNcGxeXjMjqq', 'TtCB17Wfw2O08.1dx6/4tt', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (122, 3, 0, 'AB Square', '', '', '', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Qs57RR5ZYUSaZuUmNgY85OmSxp8XMn79In1N8idinAh.qMLigIzGe', 'Qs57RR5ZYUSaZuUmNgY85R', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (123, 3, 0, 'Kracker Jack', '', '', 'aruna15aug@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$els4BL4Pavr/roqEZHgLqOovdZkpL0KYm32tm0bvNe8EwK9ihcOeS', 'els4BL4Pavr/roqEZHgLqR', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (124, 3, 0, 'The giz shop pvt ltd ', '', '', 'syed@thegizshop.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zuUg6k.ZSlQ1fO.XRQ4VsOk.9JpRPVZtHwq3eGL6blGXXXkzvKGBC', 'zuUg6k.ZSlQ1fO.XRQ4VsY', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (125, 3, 0, 'Koncept Kreation', '', '', 'ruksanaali@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zi8Hphx81hf28y294KSBqev9q8bzD7XZpY02mcXsuB/ZQ/OVGaBOO', 'zi8Hphx81hf28y294KSBqm', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (126, 3, 0, 'Turbmax', '', '', 'smadhu714@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$fvJek2ij16y4IMQBYdJGy.edNrzCBJVEisUN675EfcyAk4eS11ovG', 'fvJek2ij16y4IMQBYdJGyC', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (127, 3, 0, 'Sadhguru puja', '', '', 'suppor@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$iKg5ghWVdsUcryLpI6OCj.X.unnEesF1SoSZhESZ/bsS1T7aFzT5i', 'iKg5ghWVdsUcryLpI6OCj.', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (128, 3, 0, 'Avyukt Pharmaceuticals', '', '', 'support2@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$X7DxQbaBld4V9ot.3OLt6uyZxlY2CQNr2ZCtCrGqE2WiRUtzNZ9Be', 'X7DxQbaBld4V9ot.3OLt68', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (129, 3, 0, 'Pragathi Polymers', '', '', 'pragathipolymers@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Nhu9/3lI2C7OdRX62hbHmOXg4AyIKGLBGi2hmiZfIIOA6IUzZOs6K', 'Nhu9/3lI2C7OdRX62hbHmb', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (130, 3, 0, 'Sai Charan', '', '', 'saicharancs44@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$CD1FTUbAVCyDB5LXYkmHfO/XcSeCeJOUuoegLC4VX42YoTmlmvhDq', 'CD1FTUbAVCyDB5LXYkmHfR', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (131, 3, 0, 'National Human Rights', '', '', 'imran@nhr.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$.F8JCsRyL58BL7kw1JQvaOM1ZDTS8ImJo9UJcHrg.cl9wG1zSwfGi', '.F8JCsRyL58BL7kw1JQvac', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (132, 3, 0, 'Excel Technologies', '', '', 'support1@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pEYX/0qdG.n4KRlGRRsGEOBnLja.iMOZY0ZzrBtvq6QRlmXToQ83e', 'pEYX/0qdG.n4KRlGRRsGEU', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (133, 3, 0, 'Century pools', '', '', 'support3@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$XwegcrvkbNQlSUHU7.KEx.IP/yaWezyb.V6yBQAXIhwfTu3007hn6', 'XwegcrvkbNQlSUHU7.KExJ', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (134, 3, 0, 'Siddhi Coaching', '', '', 'support4@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$BQ8enrODmAGc7iQ028F2tex2iauWCIQAP.bjay8I7o7pRCQnvcaNK', 'BQ8enrODmAGc7iQ028F2tk', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (135, 2, 3, 'Select Employee', 'Deepthi', '', 'deepthi22hathwar@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$D2du454fcbDRymJgEU8xTeNgKG/jclSNA46mPN39NXvl52CRSG25m', 'D2du454fcbDRymJgEU8xTf', 66, 'Tester', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-03-05 00:00:00', '0000-00-00 00:00:00'), (136, 3, 0, 'KPCC', '', '', 'support5@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$CgeKKttKvzjghD4jeK/uW.3bFto07PJivmfcOGaPG06zNKnyGhC4C', 'CgeKKttKvzjghD4jeK/uWK', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (137, 3, 0, 'Lifesys', '', '', 'dilip@lifesys.co.in', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$ebCtQMG1YYjBOtb4tG80aOPm5epEh1M.fxWeAHzjstvpFcdoELTNS', 'ebCtQMG1YYjBOtb4tG80aV', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (138, 3, 0, 'Calieo Properties Care Taker', '', '', 'suhas6623@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$yBPm1cRNpoF.RY/jzRXHjeYhJC1zcmGzCqBYEB0DJ.RWfcYT2PLnu', 'yBPm1cRNpoF.RY/jzRXHjt', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (139, 3, 0, 'Snoring and sleep annea clinic.', '', '', 'info@snoringandsleepapneacentre.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$fRBFxJH3ORk9V/3T4KgsVe6qK2w2/x2LWUQCmTqOutEKpzYJjS9V2', 'fRBFxJH3ORk9V/3T4KgsVs', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (140, 3, 0, 'Thapasia ', '', '', 'k.baburaj12@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$XFUIZ9jKHFS0dvW5JtUs9.4611WORinazn9aEuHz.wkAL.cy.1cfK', 'XFUIZ9jKHFS0dvW5JtUs9.', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (141, 3, 0, 'VS Ugrappa KPCC', '', '', 'info@vsugrappa.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$/nxMxTBHZre6Z/t6Q5I3JuA4cVr3OuoopXjQXtzS/rE11kUjIz5ji', '/nxMxTBHZre6Z/t6Q5I3J5', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (142, 2, 3, 'Shreya', 'Urs', '', 'shreya.urs22@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$XjnPrHhPnpwfo7.C87FkDeDv4k5TcKcYA6ChXre7S8cT0Lkxgmu16', 'XjnPrHhPnpwfo7.C87FkDl', 70, 'Admin', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-03-15 00:00:00', '0000-00-00 00:00:00'), (143, 3, 0, 'Shashidhar Hebbal KPCC', '', '', 'support10@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$doexQruChIHn..wUt3xZbeSf/R03U2MqWwnYzN52gPmKDg1UghrBi', 'doexQruChIHn..wUt3xZbo', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (144, 3, 0, 'Caremycar', '', '', 'ashokhalesh15@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$E6e7bWbptd2K7.IbhKijIOQZpk30XNIf9UBn.R7rGS2hgICiRVzme', 'E6e7bWbptd2K7.IbhKijIY', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (145, 3, 0, 'Indo Swiss Anti - Shock Limited', '', '', 'yash.patel@aerocisionindia.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$xsyIIMT8aqXr7xCgSYL4rOfJ6Konn5l6xpVFzusb9IpDJHOui1FD.', 'xsyIIMT8aqXr7xCgSYL4rb', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (146, 3, 0, 'Orangecountyspa', '', '', 'vinaykumar@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$bC1M/JXq.A9tkVj6t01Xy.HaNeGY.OGFs0pj26fU6FF.OMoiEc3Wy', 'bC1M/JXq.A9tkVj6t01XyH', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (147, 3, 0, 'RangaNayaki Food Products', '', '', 'anjalibindu@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$9m5zbuVBK.WUr17cHLq5TeHg7FEIijATAGdmZ1a25G0pBNwEsMeJi', '9m5zbuVBK.WUr17cHLq5Tg', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (148, 3, 0, 'FDOT', '', '', 'sureshsullia@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$GiHFkdOo.HFMaN5G60ZAeOQ8590QykuSJTPEPAm9eB3zj4.Zgz7Dm', 'GiHFkdOo.HFMaN5G60ZAeb', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (149, 3, 0, 'BN Chandrappa KPCC', '', '', 'info@bnchandrappa.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$d2vLb2UmlvT5gW2jDWc5uOYnN/xryxbikkxCkrsOMoIFmQ1x.16ui', 'd2vLb2UmlvT5gW2jDWc5uT', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (150, 3, 0, 'Unity Strength Associates', '', '', 'reply2yashboss@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Gzntr/ObbBxQQwEscq7Z4e7TNYNj/huOv8KpNlmTCNHENjmBoVHSu', 'Gzntr/ObbBxQQwEscq7Z4l', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (151, 2, 3, 'Krishna', 'Murali A', '', 'krishna@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$m6J.rtHgCSDSLpDJWrUm.OejhMlgUzHesue96mdR2tqJwPOa7z3Ki', 'm6J.rtHgCSDSLpDJWrUm.S', 59, 'Reg Manager', 'North', '', 0, '', '', '', '', 'ACTIVE', '2019-04-01 00:00:00', '2019-04-01 16:45:06'), (152, 3, 0, 'Think of Green', '', '', 'ithinkofgreen@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$pocRRLBAIVm13zEhW0ISbeV5mq4kntM7AWYiU5n5xP.lAOc4na7hS', 'pocRRLBAIVm13zEhW0ISbq', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (153, 3, 0, 'Hanuman Astrologer', '', '', 'raagu.padagale@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$TCRR76L9.W/O04zAG6zRQuyU96.PO1BbxEBeWxSIAp0LaBSCr.s8K', 'TCRR76L9.W/O04zAG6zRQz', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (154, 3, 0, 'Kou-Chan technologies Pvt Ltd', '', '', 'puneeth@kouchanindia.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$A.24TD.rWbruOivS6J2.wu7j3qhjYm3ikPbhfOwbjzDnvmJoYFsEy', 'A.24TD.rWbruOivS6J2.w4', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (155, 3, 0, 'Royal Stitches', '', '', 'aryangowda6666@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$o0e3ydfodpLtWV3PZwqW8.5QzdgcIpMSzZekn7X5GZrWszZYpzWYa', 'o0e3ydfodpLtWV3PZwqW8H', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (156, 3, 0, 'Astrologer Gururaj', '', '', 'vijaydani1432@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$4c.lZpVIBp.P.UX5f70iA.F2iANCxRPpKvujYjdiy.qiVW7lpKUc2', '4c.lZpVIBp.P.UX5f70iAC', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (157, 3, 0, 'NIRVANBODHI Yoga', '', '', 'ranjeetonline2008@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$VZuD6X4z8u9PwMrjlOJgb.ZD2qi.4fWhvXsUb4dCT.iPDAaE6s736', 'VZuD6X4z8u9PwMrjlOJgbD', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (158, 2, 3, 'Triveni', 'G', '', 'triveni@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$aDr51tj0uZlDLA2fefHe7e0LH0fcX7OJtcS15GDfUmmqplUGZ5u5y', 'aDr51tj0uZlDLA2fefHe7q', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-05-06 00:00:00', '0000-00-00 00:00:00'), (159, 2, 3, 'Ashwini', 'Gowda', '', 'hr@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$RS2vSUS1XvuKU7JorIca1.ChA4aPrKWlqMuryGU1lBFSHLJnSOU8O', 'RS2vSUS1XvuKU7JorIca1A', 73, 'HR Manager', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-05-17 00:00:00', '2019-05-20 11:47:27'), (160, 3, 0, 'Sphoorthi Jyothi Foundation', '', '', 'harishkumargr996@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$TezZgmY35OTOvxOQyjLFhuwm2kUDbRpVmUutPFYlsjhE6mVXv6.8m', 'TezZgmY35OTOvxOQyjLFhz', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (161, 3, 0, 'LASO ', '', '', 'vigneshwar@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$9v15DlCFsEd.NoAm6nXpuuiCbKQDyTicky/5oSJ0Zt6Lrf1Sx1thy', '9v15DlCFsEd.NoAm6nXpuv', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (162, 3, 0, 'Build Wick Ventures', '', '', 'rakesh@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$DWJz0k27kDXWdSGKeHc0UOrMi3xltIEUFR4gfXGUUJmLu2QRocY5O', 'DWJz0k27kDXWdSGKeHc0US', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (163, 3, 0, 'SIRI Global Services', '', '', 'sirihousing@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$wETwtOFzwnk1opBaOtlnN.GstLc3XZL3mffypHSGqo9Tq7C/d/tvK', 'wETwtOFzwnk1opBaOtlnN.', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (164, 2, 3, 'Rekha', 'R', '', 'rekha@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$O.LIlHpItWcZI2RSi92of.vizBmXP4J06p/cYm1/tDiiiSORQFbXW', 'O.LIlHpItWcZI2RSi92ofF', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-06-25 00:00:00', '0000-00-00 00:00:00'), (165, 3, 0, 'Kshathriya royal food and The Creams Corner', '', '', 'rakichandru91@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$okI14nJEUyZlOKM4w08V.ebY6b8x027nXwWRMnC5yUK7lBJP.I962', 'okI14nJEUyZlOKM4w08V.k', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (166, 3, 0, 'Nyshamedia Pvt Ltd', '', '', 'nyshamedia@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$NX4lOE3DH7IfWJdrzH9eUOM/jffJfqmYNytbFDOYNeVjXyJy2nz3K', 'NX4lOE3DH7IfWJdrzH9eUa', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (167, 3, 0, 'Favorito', '', '', 'mksingh@favoritoonline.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$BGmV6PinHPOwxKWThpgnou2B.1WIQa9hCeUem94UxR0F6xv2Xi/RW', 'BGmV6PinHPOwxKWThpgnow', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (168, 3, 0, 'BlueIndia', '', '', 'harish@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$GRW/Sa5KOvEVD9lz6WkuPOC0dOEs06q8kCikuiChB9.CQ5fdeQqh.', 'GRW/Sa5KOvEVD9lz6WkuPb', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (169, 3, 0, 'Sky Autoparts', '', '', 'joshua.stalinautoparts@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$sSOH/nOJczcR6Lt1Rjn47OK5wPVpKSj9okRYcofz/0S8lBbonDn9K', 'sSOH/nOJczcR6Lt1Rjn47V', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (170, 3, 0, 'B4B Data Solutions', '', '', 'vm2633@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$oon8iJ.UnszVD1iFHNyRGu9JoP.lklOD.VwS5mGEvWIKLZMS5JTM6', 'oon8iJ.UnszVD1iFHNyRGz', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (171, 3, 0, 'Leenik Biotech', '', '', 'leenik@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$OIoMm2Fs0t.qJ/YLrkvYKOSjuMt8NWqkGKCu3KwWaXN28FM3DFwdS', 'OIoMm2Fs0t.qJ/YLrkvYKV', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (172, 3, 0, 'Visista', '', '', 'info.visista@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$YzHZMjdAcEk7rP2ZEUVcHOJ/s2mxIzRFkUYTj0SRz9ot6UvCs/Joe', 'YzHZMjdAcEk7rP2ZEUVcHY', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (173, 3, 0, 'silicon Education', '', '', 'theharmonyprojects@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$65cPHEwRA3epG3d7at4rnuVhicaNv1nlOj1ghJRvQ/h4myB/L6pF6', '65cPHEwRA3epG3d7at4rn0', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (174, 3, 0, 'Pearl Wedding and Events', '', '', 'zabzz64@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$fUPCm7K91SdIB2oROY9rFu.UBaq.Cxjrx9KzHQV91dCe/ARb7bBDC', 'fUPCm7K91SdIB2oROY9rF2', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (175, 3, 0, 'Pandit Rm Rao Guruji', '', '', 'shreemookambikadeviastro@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$M0LvR54ACLZKmmrJPLefnuWi7FSsbsqNrFVmSMN85Gt3qQyJGBD8W', 'M0LvR54ACLZKmmrJPLefn1', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (176, 3, 0, 'Elite Canals Dental Clinic', '', '', 'lachuprasad81@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$hepjlJLD/8OsdeRRzY73su0AEDsRVKWXVoyGCp0m8vEJsypzZL/L.', 'hepjlJLD/8OsdeRRzY73sw', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (177, 3, 0, 'Shreenidhi Tours and Travels', '', '', 'hv.swamy83@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$UJL9sHOwr02P.M7KKPGGcuopOtoUx8LfEPOk8/EWHHw.3JFXsE6Ce', 'UJL9sHOwr02P.M7KKPGGcu', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (178, 3, 0, 'BHARATHIYA BELAKU PARTY ', '', '', 'bharathiyabelakuparty@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$7101MykiGKRS1gsIW5OLdupFijEof9M57lMr97zYhI6FfWdLOQfUm', '7101MykiGKRS1gsIW5OLd9', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (179, 3, 0, 'Royal Electricals', '', '', 'royalelectricalsj7@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$qRDlStOyM76OMawfbezlJuBjfaDxKDDFsujMb1bA.W0La3GcvlqA2', 'qRDlStOyM76OMawfbezlJ0', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (180, 3, 0, 'Vlight Services Private Limited', '', '', 'aianadevaiah123@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zKUJ9JoaM.puR1P2/0qemuFF4ahLxYS7/9nDefyVLN9DC/./jqb8e', 'zKUJ9JoaM.puR1P2/0qem5', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (181, 3, 0, 'Yume Tools', '', '', 'anitha@macindia.in', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$lAOqMquxCvzQClS3p90QGO.glXSX6JZK2OoZZIybOME.Y4J7WvHza', 'lAOqMquxCvzQClS3p90QGU', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (182, 3, 0, 'Trishul Builders & Developers', '', '', 'trishul@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$AW7s.VoIuqafOfj2/Qixxu8n7VA2HgFbv1tEOuu1U1dyQKkuWA34W', 'AW7s.VoIuqafOfj2/Qixxv', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (183, 3, 0, 'SLN Tours & Travels ', '', '', 'prohit322@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$blWjBaRryJuCW6.2Thp5Be1uxc1798jAhmkwJ3e.eHFAL4ykFHGbO', 'blWjBaRryJuCW6.2Thp5Bt', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (184, 3, 0, 'The Chief Traders ', '', '', 'Naveentaxak19@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$EHKsQHz/lIqtVWZlBOVmLObLLd8nZplxILWHy2bvznsdC47NJHxOe', 'EHKsQHz/lIqtVWZlBOVmLU', 68, 'Client', '', '', 0, '', '', '', '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (185, 2, 3, 'Manohar', 'Devaraj', '', 'manohar.devaraj@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Jyo/Asg51SRdlFYolivq1.7Oh48l5fhERAn/AEhuZbhGu7ivBgddO', 'Jyo/Asg51SRdlFYolivq1L', 58, 'Manager', ' ', '', 0, '', '', '', '', 'ACTIVE', '2019-12-06 00:00:00', '0000-00-00 00:00:00'), (186, 2, 3, 'Manohar', 'Devaraj', '', 'manohar@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$DW6klF4WxPEA8ZRGn0hjhuJHP.vjLlPNRzgJfj.3V.aSeOc7ehMGG', 'DW6klF4WxPEA8ZRGn0hjh8', 70, 'Admin', 'North', '', 0, '', '', '', '', 'ACTIVE', '2019-12-06 00:00:00', '2020-02-28 13:40:24'), (187, 2, 3, 'paritosh', 'srivastav', '', 'paritosh.srivastav@gmail.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$8Q/S2o92Ff23byYhp2bOd.1VDW.he8AMdhYk9zrbo/0fX4EbQH6T6', '8Q/S2o92Ff23byYhp2bOdG', 70, 'Admin', ' ', '', 0, '', '', '', '', 'ACTIVE', '2020-02-01 00:00:00', '0000-00-00 00:00:00'), (188, 2, 3, 'NISARGA', '', '', 'info@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$/WAdGLDs93bSzlgoUtVtBuWYJOJWaHwydt/Rl.2ff4S40VkopI9OC', '/WAdGLDs93bSzlgoUtVtB7', 70, 'Admin', ' ', '', 0, '', '', '', '', 'ACTIVE', '2021-04-08 00:00:00', '0000-00-00 00:00:00'), (189, 2, 3, 'Shivani', 'MV', '', 'shivani@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$Y2JG4slWIQf8wbuQHgxBuO5aYOOxdkqe8ivUeg6kxSbIdevVHN0dG', 'Y2JG4slWIQf8wbuQHgxBuX', 71, 'Support Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2021-04-12 00:00:00', '0000-00-00 00:00:00'), (190, 2, 3, 'Biddu', 'Bheemaiah ', '', 'biddu@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$hhwfarHUNXS1ICWvSqSumeWpwJGow8Kj1a2.lEXCaxp4hfHXaWaY6', 'hhwfarHUNXS1ICWvSqSumr', 70, 'Admin', ' ', '', 0, '', '', '', '', 'ACTIVE', '2021-08-02 00:00:00', '0000-00-00 00:00:00'), (191, 2, 3, 'vivek', 'M', '', 'raghavendra@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zHFx.E6RN82ecLR5d7Ovzu5J4o1sYYUf/GYqAKJng.8PYCA1XIz8a', 'zHFx.E6RN82ecLR5d7Ovz9', 61, 'Business Development Executive', ' ', '', 0, '', '', '', '', 'ACTIVE', '2021-10-22 00:00:00', '0000-00-00 00:00:00'), (192, 2, 3, 'Pooja', 'Devaraj', '', 'pooja@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$zSno7zrz7C/GpdXh7qJH6.t8XusqyzhQk85xh/hUW5x5YtU0YKh0y', 'zSno7zrz7C/GpdXh7qJH6G', 58, 'Manager', 'South', '', 0, '', '', '', '', 'ACTIVE', '2022-02-18 00:00:00', '2022-02-18 12:28:41'); INSERT INTO `users` (`user_id`, `user_type_id`, `department_id`, `user_name`, `last_name`, `Alias`, `email`, `Phone`, `Mobile`, `Fax`, `Website`, `Date_of_Birth`, `Street`, `Zip_Code`, `Country`, `City`, `State`, `password`, `salt_pass`, `role_id`, `role`, `zone`, `profile_pick`, `remember_status`, `customized_leave`, `Twitter`, `Facebook`, `Google`, `delete_status`, `created_at`, `updated_at`) VALUES (193, 2, 3, 'Manjesh', 'K', '', 'manjesh.k@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$djiGrrM1jB5YTnkYpPYJzevld8af/.VVONZYqE203pdOyW8Hgo5UO', 'djiGrrM1jB5YTnkYpPYJzf', 58, 'Manager', ' ', '', 0, '', '', '', '', 'ACTIVE', '2022-11-15 00:00:00', '0000-00-00 00:00:00'), (194, 2, 3, 'Reshma', 'B', '', 'reshma@jayblues.org', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$kxDDNCHJybkIKAgSTJaVOOm5ceIl6mDAJMHykZvrZiUrNz89svfzy', 'kxDDNCHJybkIKAgSTJaVOU', 1, 'CEO', 'West', '', 0, '', '', '', '', 'ACTIVE', '2023-02-11 00:00:00', '2023-02-22 15:57:45'), (195, 2, 3, 'Darshan', 'S', '', 'darshan@jayblues.com', '', '', '', '', '0000-00-00', '', '', '', '', '', '$2a$05$HuAdK3WfvyokAYFR5AnSU.J2/T61u6q8igbJnVxXq.eQ0.FE8j2yO', 'HuAdK3WfvyokAYFR5AnSUD', 61, 'Business Development Executive', 'North', '', 0, '', '', '', '', 'ACTIVE', '2024-02-28 00:00:00', '2024-02-28 14:24:42'); -- -------------------------------------------------------- -- -- Table structure for table `user_type` -- CREATE TABLE `user_type` ( `user_type_id` int(11) NOT NULL, `user_type_name` varchar(250) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `user_type` -- INSERT INTO `user_type` (`user_type_id`, `user_type_name`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Admin', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'User', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 'Client', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_access_controls` -- CREATE TABLE `yaskawa_access_controls` ( `access_id` int(11) NOT NULL, `menu_id` text NOT NULL, `department_id` varchar(255) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT; -- -- Dumping data for table `yaskawa_access_controls` -- INSERT INTO `yaskawa_access_controls` (`access_id`, `menu_id`, `department_id`, `delete_status`, `created_at`, `updated_at`) VALUES (2, 'a:24:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:1:\"6\";i:13;s:1:\"7\";i:14;s:2:\"10\";i:15;s:2:\"11\";i:16;s:2:\"12\";i:17;s:2:\"13\";i:18;s:2:\"18\";i:19;s:2:\"19\";i:20;s:2:\"20\";i:21;s:2:\"23\";i:22;s:2:\"24\";i:23;s:2:\"25\";}', '1', 'ACTIVE', '2018-03-23 17:37:37', '0000-00-00 00:00:00'), (7, 'a:45:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:1:\"7\";i:13;s:2:\"10\";i:14;s:2:\"11\";i:15;s:2:\"12\";i:16;s:2:\"13\";i:17;s:2:\"27\";i:18;s:2:\"28\";i:19;s:2:\"29\";i:20;s:2:\"30\";i:21;s:2:\"31\";i:22;s:2:\"18\";i:23;s:2:\"19\";i:24;s:2:\"20\";i:25;s:2:\"23\";i:26;s:2:\"24\";i:27;s:2:\"25\";i:28;s:2:\"32\";i:29;s:2:\"33\";i:30;s:2:\"34\";i:31;s:2:\"42\";i:32;s:2:\"43\";i:33;s:2:\"44\";i:34;s:2:\"54\";i:35;s:2:\"35\";i:36;s:2:\"36\";i:37;s:2:\"37\";i:38;s:2:\"38\";i:39;s:2:\"39\";i:40;s:2:\"40\";i:41;s:2:\"41\";i:42;s:2:\"57\";i:43;s:2:\"58\";i:44;s:2:\"59\";}', '58', 'ACTIVE', '2022-11-15 12:50:21', '0000-00-00 00:00:00'), (8, 'a:28:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:2:\"18\";i:9;s:2:\"19\";i:10;s:2:\"20\";i:11;s:2:\"23\";i:12;s:2:\"24\";i:13;s:2:\"25\";i:14;s:2:\"32\";i:15;s:2:\"33\";i:16;s:2:\"34\";i:17;s:2:\"43\";i:18;s:2:\"44\";i:19;s:2:\"51\";i:20;s:2:\"52\";i:21;s:2:\"53\";i:22;s:2:\"36\";i:23;s:2:\"37\";i:24;s:2:\"39\";i:25;s:2:\"40\";i:26;s:2:\"41\";i:27;s:2:\"59\";}', '61', 'ACTIVE', '2024-02-29 13:53:42', '0000-00-00 00:00:00'), (9, 'a:38:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:2:\"18\";i:13;s:2:\"19\";i:14;s:2:\"20\";i:15;s:2:\"23\";i:16;s:2:\"24\";i:17;s:2:\"25\";i:18;s:2:\"27\";i:19;s:2:\"28\";i:20;s:2:\"29\";i:21;s:2:\"30\";i:22;s:2:\"31\";i:23;s:2:\"32\";i:24;s:2:\"33\";i:25;s:2:\"34\";i:26;s:2:\"35\";i:27;s:2:\"36\";i:28;s:2:\"37\";i:29;s:2:\"38\";i:30;s:2:\"39\";i:31;s:2:\"40\";i:32;s:2:\"41\";i:33;s:2:\"42\";i:34;s:2:\"43\";i:35;s:2:\"44\";i:36;s:2:\"51\";i:37;s:2:\"52\";}', '57', 'ACTIVE', '2018-09-28 16:32:10', '0000-00-00 00:00:00'), (10, 'a:20:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"4\";i:4;s:2:\"21\";i:5;s:2:\"22\";i:6;s:1:\"5\";i:7;s:2:\"16\";i:8;s:2:\"17\";i:9;s:2:\"26\";i:10;s:2:\"42\";i:11;s:2:\"43\";i:12;s:2:\"44\";i:13;s:2:\"35\";i:14;s:2:\"36\";i:15;s:2:\"37\";i:16;s:2:\"38\";i:17;s:2:\"39\";i:18;s:2:\"40\";i:19;s:2:\"41\";}', '62', 'ACTIVE', '2019-03-05 13:47:27', '0000-00-00 00:00:00'), (11, 'a:3:{i:0;s:2:\"42\";i:1;s:2:\"43\";i:2;s:2:\"44\";}', '68', 'ACTIVE', '2018-09-05 12:17:40', '0000-00-00 00:00:00'), (12, 'a:2:{i:0;s:2:\"51\";i:1;s:2:\"52\";}', '60', 'ACTIVE', '2018-09-10 12:32:07', '0000-00-00 00:00:00'), (13, 'a:54:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:1:\"6\";i:13;s:1:\"7\";i:14;s:2:\"10\";i:15;s:2:\"11\";i:16;s:2:\"12\";i:17;s:2:\"13\";i:18;s:2:\"27\";i:19;s:2:\"28\";i:20;s:2:\"29\";i:21;s:2:\"30\";i:22;s:2:\"31\";i:23;s:2:\"48\";i:24;s:2:\"49\";i:25;s:2:\"50\";i:26;s:2:\"18\";i:27;s:2:\"19\";i:28;s:2:\"20\";i:29;s:2:\"23\";i:30;s:2:\"24\";i:31;s:2:\"25\";i:32;s:2:\"32\";i:33;s:2:\"33\";i:34;s:2:\"34\";i:35;s:2:\"42\";i:36;s:2:\"43\";i:37;s:2:\"44\";i:38;s:2:\"45\";i:39;s:2:\"46\";i:40;s:2:\"47\";i:41;s:2:\"51\";i:42;s:2:\"52\";i:43;s:2:\"53\";i:44;s:2:\"35\";i:45;s:2:\"36\";i:46;s:2:\"37\";i:47;s:2:\"38\";i:48;s:2:\"39\";i:49;s:2:\"40\";i:50;s:2:\"41\";i:51;s:2:\"57\";i:52;s:2:\"58\";i:53;s:2:\"59\";}', '69', 'ACTIVE', '2018-10-26 17:56:43', '0000-00-00 00:00:00'), (14, 'a:8:{i:0;s:1:\"1\";i:1;s:1:\"8\";i:2;s:1:\"9\";i:3;s:2:\"33\";i:4;s:2:\"34\";i:5;s:2:\"42\";i:6;s:2:\"43\";i:7;s:2:\"44\";}', '64', 'ACTIVE', '2019-03-05 13:24:37', '0000-00-00 00:00:00'), (15, 'a:30:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"22\";i:7;s:2:\"18\";i:8;s:2:\"19\";i:9;s:2:\"20\";i:10;s:2:\"23\";i:11;s:2:\"24\";i:12;s:2:\"25\";i:13;s:2:\"32\";i:14;s:2:\"33\";i:15;s:2:\"34\";i:16;s:2:\"42\";i:17;s:2:\"43\";i:18;s:2:\"44\";i:19;s:2:\"45\";i:20;s:2:\"46\";i:21;s:2:\"47\";i:22;s:2:\"51\";i:23;s:2:\"52\";i:24;s:2:\"53\";i:25;s:2:\"54\";i:26;s:2:\"35\";i:27;s:2:\"38\";i:28;s:2:\"40\";i:29;s:2:\"57\";}', '71', 'ACTIVE', '2019-08-19 16:45:07', '0000-00-00 00:00:00'), (16, 'a:6:{i:0;s:2:\"42\";i:1;s:2:\"43\";i:2;s:2:\"44\";i:3;s:2:\"51\";i:4;s:2:\"52\";i:5;s:2:\"53\";}', 'Select Role', 'ACTIVE', '2019-03-05 13:33:54', '0000-00-00 00:00:00'), (17, 'a:10:{i:0;s:1:\"7\";i:1;s:2:\"27\";i:2;s:2:\"48\";i:3;s:2:\"56\";i:4;s:2:\"32\";i:5;s:2:\"33\";i:6;s:2:\"34\";i:7;s:2:\"42\";i:8;s:2:\"43\";i:9;s:2:\"44\";}', '65', 'ACTIVE', '2019-01-31 13:01:45', '0000-00-00 00:00:00'), (18, 'a:24:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:2:\"18\";i:9;s:2:\"19\";i:10;s:2:\"20\";i:11;s:2:\"43\";i:12;s:2:\"44\";i:13;s:2:\"54\";i:14;s:2:\"35\";i:15;s:2:\"36\";i:16;s:2:\"37\";i:17;s:2:\"38\";i:18;s:2:\"39\";i:19;s:2:\"40\";i:20;s:2:\"41\";i:21;s:2:\"57\";i:22;s:2:\"58\";i:23;s:2:\"59\";}', '72', 'ACTIVE', '2023-02-22 15:55:54', '0000-00-00 00:00:00'), (19, 'a:5:{i:0;s:1:\"6\";i:1;s:1:\"7\";i:2;s:2:\"27\";i:3;s:2:\"48\";i:4;s:2:\"56\";}', '67', 'ACTIVE', '2019-01-29 16:53:58', '0000-00-00 00:00:00'), (20, 'a:6:{i:0;s:1:\"1\";i:1;s:2:\"42\";i:2;s:2:\"43\";i:3;s:2:\"44\";i:4;s:2:\"52\";i:5;s:2:\"53\";}', '66', 'ACTIVE', '2019-03-05 13:39:50', '0000-00-00 00:00:00'), (21, 'a:56:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:1:\"6\";i:13;s:1:\"7\";i:14;s:2:\"10\";i:15;s:2:\"11\";i:16;s:2:\"12\";i:17;s:2:\"13\";i:18;s:2:\"27\";i:19;s:2:\"28\";i:20;s:2:\"29\";i:21;s:2:\"30\";i:22;s:2:\"31\";i:23;s:2:\"48\";i:24;s:2:\"49\";i:25;s:2:\"50\";i:26;s:2:\"56\";i:27;s:2:\"18\";i:28;s:2:\"19\";i:29;s:2:\"20\";i:30;s:2:\"23\";i:31;s:2:\"24\";i:32;s:2:\"25\";i:33;s:2:\"32\";i:34;s:2:\"33\";i:35;s:2:\"34\";i:36;s:2:\"42\";i:37;s:2:\"43\";i:38;s:2:\"44\";i:39;s:2:\"45\";i:40;s:2:\"46\";i:41;s:2:\"47\";i:42;s:2:\"51\";i:43;s:2:\"52\";i:44;s:2:\"53\";i:45;s:2:\"54\";i:46;s:2:\"35\";i:47;s:2:\"36\";i:48;s:2:\"37\";i:49;s:2:\"38\";i:50;s:2:\"39\";i:51;s:2:\"40\";i:52;s:2:\"41\";i:53;s:2:\"57\";i:54;s:2:\"58\";i:55;s:2:\"59\";}', '70', 'ACTIVE', '2020-02-28 13:42:32', '0000-00-00 00:00:00'), (22, 'a:20:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:2:\"18\";i:9;s:2:\"19\";i:10;s:2:\"20\";i:11;s:2:\"23\";i:12;s:2:\"24\";i:13;s:2:\"25\";i:14;s:2:\"43\";i:15;s:2:\"44\";i:16;s:2:\"54\";i:17;s:2:\"35\";i:18;s:2:\"36\";i:19;s:2:\"37\";}', '59', 'ACTIVE', '2019-06-15 11:32:21', '0000-00-00 00:00:00'), (23, 'a:56:{i:0;s:1:\"1\";i:1;s:1:\"2\";i:2;s:1:\"3\";i:3;s:1:\"8\";i:4;s:1:\"9\";i:5;s:1:\"4\";i:6;s:2:\"21\";i:7;s:2:\"22\";i:8;s:1:\"5\";i:9;s:2:\"16\";i:10;s:2:\"17\";i:11;s:2:\"26\";i:12;s:1:\"6\";i:13;s:1:\"7\";i:14;s:2:\"10\";i:15;s:2:\"11\";i:16;s:2:\"12\";i:17;s:2:\"13\";i:18;s:2:\"27\";i:19;s:2:\"28\";i:20;s:2:\"29\";i:21;s:2:\"30\";i:22;s:2:\"31\";i:23;s:2:\"48\";i:24;s:2:\"49\";i:25;s:2:\"50\";i:26;s:2:\"56\";i:27;s:2:\"18\";i:28;s:2:\"19\";i:29;s:2:\"20\";i:30;s:2:\"23\";i:31;s:2:\"24\";i:32;s:2:\"25\";i:33;s:2:\"32\";i:34;s:2:\"33\";i:35;s:2:\"34\";i:36;s:2:\"42\";i:37;s:2:\"43\";i:38;s:2:\"44\";i:39;s:2:\"45\";i:40;s:2:\"46\";i:41;s:2:\"47\";i:42;s:2:\"51\";i:43;s:2:\"52\";i:44;s:2:\"53\";i:45;s:2:\"54\";i:46;s:2:\"35\";i:47;s:2:\"36\";i:48;s:2:\"37\";i:49;s:2:\"38\";i:50;s:2:\"39\";i:51;s:2:\"40\";i:52;s:2:\"41\";i:53;s:2:\"57\";i:54;s:2:\"58\";i:55;s:2:\"59\";}', '73', 'ACTIVE', '2019-08-06 12:52:35', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_emp_status_master` -- CREATE TABLE `yaskawa_emp_status_master` ( `id` int(11) NOT NULL, `status_name` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` text NOT NULL, `created_at` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `yaskawa_emp_status_master` -- INSERT INTO `yaskawa_emp_status_master` (`id`, `status_name`, `delete_status`, `modified_at`, `created_at`) VALUES (1, 'Test1', 'INACTIVE', '2018-03-28 11:34:50', '2018-03-27 19:43:52'), (2, 'Test2', 'INACTIVE', '2018-03-28 14:10:14', '2018-03-28 14:10:14'), (3, 'Active', 'ACTIVE', '2018-03-28 17:12:45', '2018-03-28 17:12:45'), (4, 'Terminated', 'ACTIVE', '2018-03-28 17:12:58', '2018-03-28 17:12:58'), (5, 'Deceased', 'ACTIVE', '2018-03-28 17:13:22', '2018-03-28 17:13:22'), (6, 'Resigned', 'ACTIVE', '2018-03-28 17:13:38', '2018-03-28 17:13:38'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_emp_type` -- CREATE TABLE `yaskawa_emp_type` ( `id` int(11) NOT NULL, `emp_type` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` text NOT NULL, `created_at` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `yaskawa_emp_type` -- INSERT INTO `yaskawa_emp_type` (`id`, `emp_type`, `delete_status`, `modified_at`, `created_at`) VALUES (1, 'Test1', 'INACTIVE', '2018-03-28 11:37:37', '2018-03-27 19:44:21'), (2, 'Test1', 'ACTIVE', '2018-03-28 14:12:41', '2018-03-28 14:12:41'), (3, 'Permanent', 'ACTIVE', '2018-03-28 17:13:55', '2018-03-28 17:13:55'), (4, 'On Contract', 'ACTIVE', '2018-03-28 17:14:28', '2018-03-28 17:14:28'), (5, 'Temporary', 'ACTIVE', '2018-03-28 17:14:40', '2018-03-28 17:14:40'), (6, 'Trainee', 'ACTIVE', '2018-03-28 17:14:48', '2018-03-28 17:14:48'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_location_master` -- CREATE TABLE `yaskawa_location_master` ( `id` int(11) NOT NULL, `location_name` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` text NOT NULL, `created_at` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `yaskawa_location_master` -- INSERT INTO `yaskawa_location_master` (`id`, `location_name`, `delete_status`, `modified_at`, `created_at`) VALUES (1, 'Test1', 'ACTIVE', '2018-03-28 11:24:49', '2018-03-27 19:39:52'), (2, 'Mysore', 'ACTIVE', '2018-03-28 14:14:47', '2018-03-28 14:14:47'), (3, 'Hasan', 'ACTIVE', '2018-03-28 15:17:30', '2018-03-28 15:17:30'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_menu` -- CREATE TABLE `yaskawa_menu` ( `menu_id` int(11) NOT NULL, `menu_name` varchar(100) NOT NULL, `menu_type` varchar(256) NOT NULL, `parent_id` int(11) NOT NULL, `department_id` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT; -- -- Dumping data for table `yaskawa_menu` -- INSERT INTO `yaskawa_menu` (`menu_id`, `menu_name`, `menu_type`, `parent_id`, `department_id`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'Home', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'Feeds', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (3, 'Leads', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'Accounts', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'Reports', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'Admin', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (7, 'Employee', 'TAB', 6, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (8, 'Add New Lead', 'FORM', 3, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (9, 'Leads List', 'LIST', 3, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (10, 'Add Employee', 'FORM', 7, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (11, 'Employee List', 'LIST', 7, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (12, 'Add Department', 'LIST', 7, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (13, 'Add Designation', 'LIST', 7, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (16, 'Lead Reports', 'FORM', 5, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (17, 'Accounts Reports', 'FORM', 5, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (18, 'Potential', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (19, 'Add Potential', 'FORM', 18, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (20, 'Potentials List', 'LIST', 18, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (21, 'Add Account', 'FORM', 4, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (22, 'Accounts List', 'LIST', 4, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (23, 'Contact', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (24, 'Add Contact', 'FORM', 23, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (25, 'Contact List', 'LIST', 23, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (26, 'Activity Report', 'FORM', 5, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (27, 'Master', 'FORM', 6, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (28, 'Add Master', 'FORM', 27, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (29, 'Master List', 'LIST', 27, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (30, 'Add Assets', 'FORM', 27, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (31, 'Assets List', 'LIST', 27, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (32, 'Projects', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (33, 'Website Requirement Sheet', 'FORM', 32, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (34, 'Website Requirement List', 'LIST', 32, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (35, 'Quotation', 'TAB', 54, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (36, 'Create Quotation', 'FORM', 35, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (37, 'Quotation List', 'LIST', 35, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (38, 'Invoice', 'TAB', 54, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (39, 'Create Invoice', 'FORM', 38, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (40, 'Invoice List', 'LIST', 38, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (41, 'Invoice Reports', 'FORM', 38, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (42, 'Tickets', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (43, 'Add Tickets', 'FORM', 42, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (44, 'Tickets List', 'LIST', 42, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (45, 'Documents', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (46, 'Document Renewal', 'FORM', 45, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (47, 'Document List', 'LIST', 45, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (48, 'Salary', 'TAB', 6, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (49, 'Add Employee Salary', 'FORM', 48, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (50, 'Employee Salary List', 'LIST', 48, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (51, 'Message', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (52, 'Add Message', 'FORM', 51, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (53, 'Send Email', 'FORM', 51, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (54, 'SALES', 'TAB', 0, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (55, 'Open Tickets', 'TAB', 0, '', 'INACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (56, 'User and Access', 'FORM', 6, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (57, 'Expense', 'TAB', 54, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (58, 'Add Expense', 'FORM', 57, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (59, 'Expense List', 'LIST', 57, '', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_potential_stage_master` -- CREATE TABLE `yaskawa_potential_stage_master` ( `id` int(11) NOT NULL, `p_stage_name` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` text NOT NULL, `created_at` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `yaskawa_potential_stage_master` -- INSERT INTO `yaskawa_potential_stage_master` (`id`, `p_stage_name`, `delete_status`, `modified_at`, `created_at`) VALUES (1, 'Test_new', 'ACTIVE', '2018-03-28 12:29:17', '2018-03-28 12:07:38'), (2, 'Test', 'ACTIVE', '2018-03-28 14:16:13', '2018-03-28 14:16:13'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_potential_type_master` -- CREATE TABLE `yaskawa_potential_type_master` ( `id` int(11) NOT NULL, `p_type` text NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `modified_at` text NOT NULL, `created_at` text NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; -- -- Dumping data for table `yaskawa_potential_type_master` -- INSERT INTO `yaskawa_potential_type_master` (`id`, `p_type`, `delete_status`, `modified_at`, `created_at`) VALUES (1, 'Test_now', 'INACTIVE', '2018-03-28 12:29:30', '2018-03-28 12:07:52'), (2, 'Test', 'INACTIVE', '2018-03-28 14:16:44', '2018-03-28 14:16:44'), (3, 'Existing Business', 'ACTIVE', '2018-03-28 17:15:33', '2018-03-28 17:15:33'), (4, 'New Business', 'ACTIVE', '2018-03-28 17:15:51', '2018-03-28 17:15:51'); -- -------------------------------------------------------- -- -- Table structure for table `yaskawa_user_type` -- CREATE TABLE `yaskawa_user_type` ( `user_type_id` int(11) NOT NULL, `user_type` varchar(50) NOT NULL, `delete_status` enum('ACTIVE','INACTIVE') NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci ROW_FORMAT=COMPACT; -- -- Dumping data for table `yaskawa_user_type` -- INSERT INTO `yaskawa_user_type` (`user_type_id`, `user_type`, `delete_status`, `created_at`, `updated_at`) VALUES (1, 'ADMIN', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (2, 'EXECUTIVE DIRECTOR', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (4, 'MANAGER', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (5, 'REG MANAGER', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'), (6, 'EXECUTIVE', 'ACTIVE', '0000-00-00 00:00:00', '0000-00-00 00:00:00'); -- -- Indexes for dumped tables -- -- -- Indexes for table `access_action_rights` -- ALTER TABLE `access_action_rights` ADD PRIMARY KEY (`action_id`); -- -- Indexes for table `account type` -- ALTER TABLE `account type` ADD PRIMARY KEY (`account_type_id`); -- -- Indexes for table `account_attach_notes` -- ALTER TABLE `account_attach_notes` ADD PRIMARY KEY (`notes_id`); -- -- Indexes for table `account_calls` -- ALTER TABLE `account_calls` ADD PRIMARY KEY (`call_id`); -- -- Indexes for table `account_events` -- ALTER TABLE `account_events` ADD PRIMARY KEY (`event_id`); -- -- Indexes for table `account_new_task` -- ALTER TABLE `account_new_task` ADD PRIMARY KEY (`acc_id`); -- -- Indexes for table `account_tasks` -- ALTER TABLE `account_tasks` ADD PRIMARY KEY (`task_id`); -- -- Indexes for table `account_type` -- ALTER TABLE `account_type` ADD PRIMARY KEY (`account_type_id`); -- -- Indexes for table `acc_report_menu` -- ALTER TABLE `acc_report_menu` ADD PRIMARY KEY (`acc_report_id`); -- -- Indexes for table `add_ticket_organization` -- ALTER TABLE `add_ticket_organization` ADD PRIMARY KEY (`id`); -- -- Indexes for table `add_ticket_user` -- ALTER TABLE `add_ticket_user` ADD PRIMARY KEY (`id`); -- -- Indexes for table `assets` -- ALTER TABLE `assets` ADD PRIMARY KEY (`assets_id`); -- -- Indexes for table `assigned_task_person_details` -- ALTER TABLE `assigned_task_person_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `assigned_tickets` -- ALTER TABLE `assigned_tickets` ADD PRIMARY KEY (`ticket_assigned_id`); -- -- Indexes for table `assign_task` -- ALTER TABLE `assign_task` ADD PRIMARY KEY (`id`); -- -- Indexes for table `client_assets` -- ALTER TABLE `client_assets` ADD PRIMARY KEY (`asset_id`); -- -- Indexes for table `client_requirements` -- ALTER TABLE `client_requirements` ADD PRIMARY KEY (`client_requirement_id`); -- -- Indexes for table `companies` -- ALTER TABLE `companies` ADD PRIMARY KEY (`company_id`); -- -- Indexes for table `company_details` -- ALTER TABLE `company_details` ADD PRIMARY KEY (`company_id`); -- -- Indexes for table `contact_activities` -- ALTER TABLE `contact_activities` ADD PRIMARY KEY (`cactivities_id`); -- -- Indexes for table `contact_attachments` -- ALTER TABLE `contact_attachments` ADD PRIMARY KEY (`cattachments_id`); -- -- Indexes for table `customer_assets` -- ALTER TABLE `customer_assets` ADD PRIMARY KEY (`c_id`); -- -- Indexes for table `customer_type` -- ALTER TABLE `customer_type` ADD PRIMARY KEY (`customer_type_id`); -- -- Indexes for table `department` -- ALTER TABLE `department` ADD PRIMARY KEY (`department_id`); -- -- Indexes for table `designation` -- ALTER TABLE `designation` ADD PRIMARY KEY (`designation_id`); -- -- Indexes for table `email_settings` -- ALTER TABLE `email_settings` ADD PRIMARY KEY (`email_settings_id`); -- -- Indexes for table `email_template` -- ALTER TABLE `email_template` ADD PRIMARY KEY (`e_template_id`); -- -- Indexes for table `employees` -- ALTER TABLE `employees` ADD PRIMARY KEY (`emp_id`); -- -- Indexes for table `employee_education` -- ALTER TABLE `employee_education` ADD PRIMARY KEY (`id`); -- -- Indexes for table `expense` -- ALTER TABLE `expense` ADD PRIMARY KEY (`expense_id`); -- -- Indexes for table `feeds` -- ALTER TABLE `feeds` ADD PRIMARY KEY (`feeds_id`); -- -- Indexes for table `feeds_comment` -- ALTER TABLE `feeds_comment` ADD PRIMARY KEY (`comment_id`); -- -- Indexes for table `holidays` -- ALTER TABLE `holidays` ADD PRIMARY KEY (`holiday_id`); -- -- Indexes for table `holiday_settings` -- ALTER TABLE `holiday_settings` ADD PRIMARY KEY (`holiday_id`); -- -- Indexes for table `honorific` -- ALTER TABLE `honorific` ADD PRIMARY KEY (`honorific_id`); -- -- Indexes for table `hr_file` -- ALTER TABLE `hr_file` ADD PRIMARY KEY (`hr_id`); -- -- Indexes for table `invoice` -- ALTER TABLE `invoice` ADD PRIMARY KEY (`id`); -- -- Indexes for table `invoice_numbers` -- ALTER TABLE `invoice_numbers` ADD PRIMARY KEY (`number_id`); -- -- Indexes for table `invoice_payments` -- ALTER TABLE `invoice_payments` ADD PRIMARY KEY (`payment_id`); -- -- Indexes for table `invoice_quotation_from_mail` -- ALTER TABLE `invoice_quotation_from_mail` ADD PRIMARY KEY (`id`); -- -- Indexes for table `leads` -- ALTER TABLE `leads` ADD PRIMARY KEY (`lead_id`); -- -- Indexes for table `lead_account_attachments` -- ALTER TABLE `lead_account_attachments` ADD PRIMARY KEY (`account_id`); -- -- Indexes for table `lead_account_linkurl` -- ALTER TABLE `lead_account_linkurl` ADD PRIMARY KEY (`account_url_id`); -- -- Indexes for table `lead_attachments` -- ALTER TABLE `lead_attachments` ADD PRIMARY KEY (`attachment_id`); -- -- Indexes for table `lead_attach_notes` -- ALTER TABLE `lead_attach_notes` ADD PRIMARY KEY (`notes_id`); -- -- Indexes for table `lead_industry` -- ALTER TABLE `lead_industry` ADD PRIMARY KEY (`industry_id`); -- -- Indexes for table `lead_new_calls` -- ALTER TABLE `lead_new_calls` ADD PRIMARY KEY (`call_id`); -- -- Indexes for table `lead_new_tasks` -- ALTER TABLE `lead_new_tasks` ADD PRIMARY KEY (`task_id`); -- -- Indexes for table `lead_process` -- ALTER TABLE `lead_process` ADD PRIMARY KEY (`lead_process_id`); -- -- Indexes for table `lead_profile_pic` -- ALTER TABLE `lead_profile_pic` ADD PRIMARY KEY (`profile_pic_id`); -- -- Indexes for table `lead_ratings` -- ALTER TABLE `lead_ratings` ADD PRIMARY KEY (`rating_id`); -- -- Indexes for table `lead_source` -- ALTER TABLE `lead_source` ADD PRIMARY KEY (`source_id`); -- -- Indexes for table `lead_status` -- ALTER TABLE `lead_status` ADD PRIMARY KEY (`status_id`); -- -- Indexes for table `leaves` -- ALTER TABLE `leaves` ADD PRIMARY KEY (`leave_id`); -- -- Indexes for table `leave_request` -- ALTER TABLE `leave_request` ADD PRIMARY KEY (`request_id`); -- -- Indexes for table `leave_types` -- ALTER TABLE `leave_types` ADD PRIMARY KEY (`lea_type_id`); -- -- Indexes for table `masters` -- ALTER TABLE `masters` ADD PRIMARY KEY (`master_id`); -- -- Indexes for table `master_type` -- ALTER TABLE `master_type` ADD PRIMARY KEY (`master_type_id`); -- -- Indexes for table `menu` -- ALTER TABLE `menu` ADD PRIMARY KEY (`menu_id`); -- -- Indexes for table `msg_template` -- ALTER TABLE `msg_template` ADD PRIMARY KEY (`templet_id`); -- -- Indexes for table `new_account` -- ALTER TABLE `new_account` ADD PRIMARY KEY (`account_id`); -- -- Indexes for table `new_contact` -- ALTER TABLE `new_contact` ADD PRIMARY KEY (`contact_id`); -- -- Indexes for table `new_potential` -- ALTER TABLE `new_potential` ADD PRIMARY KEY (`potential_id`); -- -- Indexes for table `new_task` -- ALTER TABLE `new_task` ADD PRIMARY KEY (`id`); -- -- Indexes for table `old_quotation_details` -- ALTER TABLE `old_quotation_details` ADD PRIMARY KEY (`id`); -- -- Indexes for table `potential_activities` -- ALTER TABLE `potential_activities` ADD PRIMARY KEY (`pactivities_id`); -- -- Indexes for table `potential_attachments` -- ALTER TABLE `potential_attachments` ADD PRIMARY KEY (`pattachment_id`); -- -- Indexes for table `potential_attach_notes` -- ALTER TABLE `potential_attach_notes` ADD PRIMARY KEY (`notes_id`); -- -- Indexes for table `potential_competitor` -- ALTER TABLE `potential_competitor` ADD PRIMARY KEY (`competitor_id`); -- -- Indexes for table `product_renewal` -- ALTER TABLE `product_renewal` ADD PRIMARY KEY (`product_id`); -- -- Indexes for table `quick_contact` -- ALTER TABLE `quick_contact` ADD PRIMARY KEY (`contact_id`); -- -- Indexes for table `quotations` -- ALTER TABLE `quotations` ADD PRIMARY KEY (`quotation_id`); -- -- Indexes for table `report_menu` -- ALTER TABLE `report_menu` ADD PRIMARY KEY (`report_id`); -- -- Indexes for table `role` -- ALTER TABLE `role` ADD PRIMARY KEY (`role_id`); -- -- Indexes for table `roles` -- ALTER TABLE `roles` ADD PRIMARY KEY (`role_id`); -- -- Indexes for table `salary` -- ALTER TABLE `salary` ADD PRIMARY KEY (`salary_id`); -- -- Indexes for table `service_type` -- ALTER TABLE `service_type` ADD PRIMARY KEY (`service_id`); -- -- Indexes for table `share_project_task` -- ALTER TABLE `share_project_task` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sms` -- ALTER TABLE `sms` ADD PRIMARY KEY (`sms_id`); -- -- Indexes for table `stage_master` -- ALTER TABLE `stage_master` ADD PRIMARY KEY (`smaster_id`); -- -- Indexes for table `task_shared_persons` -- ALTER TABLE `task_shared_persons` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tickets` -- ALTER TABLE `tickets` ADD PRIMARY KEY (`ticket_id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`user_id`); -- -- Indexes for table `user_type` -- ALTER TABLE `user_type` ADD PRIMARY KEY (`user_type_id`); -- -- Indexes for table `yaskawa_access_controls` -- ALTER TABLE `yaskawa_access_controls` ADD PRIMARY KEY (`access_id`); -- -- Indexes for table `yaskawa_emp_status_master` -- ALTER TABLE `yaskawa_emp_status_master` ADD PRIMARY KEY (`id`); -- -- Indexes for table `yaskawa_emp_type` -- ALTER TABLE `yaskawa_emp_type` ADD PRIMARY KEY (`id`); -- -- Indexes for table `yaskawa_location_master` -- ALTER TABLE `yaskawa_location_master` ADD PRIMARY KEY (`id`); -- -- Indexes for table `yaskawa_menu` -- ALTER TABLE `yaskawa_menu` ADD PRIMARY KEY (`menu_id`); -- -- Indexes for table `yaskawa_potential_stage_master` -- ALTER TABLE `yaskawa_potential_stage_master` ADD PRIMARY KEY (`id`); -- -- Indexes for table `yaskawa_potential_type_master` -- ALTER TABLE `yaskawa_potential_type_master` ADD PRIMARY KEY (`id`); -- -- Indexes for table `yaskawa_user_type` -- ALTER TABLE `yaskawa_user_type` ADD PRIMARY KEY (`user_type_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `access_action_rights` -- ALTER TABLE `access_action_rights` MODIFY `action_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `account type` -- ALTER TABLE `account type` MODIFY `account_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `account_attach_notes` -- ALTER TABLE `account_attach_notes` MODIFY `notes_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48; -- -- AUTO_INCREMENT for table `account_calls` -- ALTER TABLE `account_calls` MODIFY `call_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `account_events` -- ALTER TABLE `account_events` MODIFY `event_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `account_new_task` -- ALTER TABLE `account_new_task` MODIFY `acc_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `account_tasks` -- ALTER TABLE `account_tasks` MODIFY `task_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `account_type` -- ALTER TABLE `account_type` MODIFY `account_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20; -- -- AUTO_INCREMENT for table `acc_report_menu` -- ALTER TABLE `acc_report_menu` MODIFY `acc_report_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40; -- -- AUTO_INCREMENT for table `add_ticket_organization` -- ALTER TABLE `add_ticket_organization` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `add_ticket_user` -- ALTER TABLE `add_ticket_user` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `assets` -- ALTER TABLE `assets` MODIFY `assets_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `assigned_task_person_details` -- ALTER TABLE `assigned_task_person_details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `assigned_tickets` -- ALTER TABLE `assigned_tickets` MODIFY `ticket_assigned_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `assign_task` -- ALTER TABLE `assign_task` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `client_assets` -- ALTER TABLE `client_assets` MODIFY `asset_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11; -- -- AUTO_INCREMENT for table `client_requirements` -- ALTER TABLE `client_requirements` MODIFY `client_requirement_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=182; -- -- AUTO_INCREMENT for table `companies` -- ALTER TABLE `companies` MODIFY `company_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `company_details` -- ALTER TABLE `company_details` MODIFY `company_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `contact_activities` -- ALTER TABLE `contact_activities` MODIFY `cactivities_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `contact_attachments` -- ALTER TABLE `contact_attachments` MODIFY `cattachments_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `customer_assets` -- ALTER TABLE `customer_assets` MODIFY `c_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `customer_type` -- ALTER TABLE `customer_type` MODIFY `customer_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `department` -- ALTER TABLE `department` MODIFY `department_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18; -- -- AUTO_INCREMENT for table `designation` -- ALTER TABLE `designation` MODIFY `designation_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16; -- -- AUTO_INCREMENT for table `email_settings` -- ALTER TABLE `email_settings` MODIFY `email_settings_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `email_template` -- ALTER TABLE `email_template` MODIFY `e_template_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44; -- -- AUTO_INCREMENT for table `employees` -- ALTER TABLE `employees` MODIFY `emp_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=107; -- -- AUTO_INCREMENT for table `employee_education` -- ALTER TABLE `employee_education` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=239; -- -- AUTO_INCREMENT for table `expense` -- ALTER TABLE `expense` MODIFY `expense_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `feeds` -- ALTER TABLE `feeds` MODIFY `feeds_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=139; -- -- AUTO_INCREMENT for table `feeds_comment` -- ALTER TABLE `feeds_comment` MODIFY `comment_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=85; -- -- AUTO_INCREMENT for table `holidays` -- ALTER TABLE `holidays` MODIFY `holiday_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `holiday_settings` -- ALTER TABLE `holiday_settings` MODIFY `holiday_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `honorific` -- ALTER TABLE `honorific` MODIFY `honorific_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `hr_file` -- ALTER TABLE `hr_file` MODIFY `hr_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14; -- -- AUTO_INCREMENT for table `invoice` -- ALTER TABLE `invoice` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1486; -- -- AUTO_INCREMENT for table `invoice_numbers` -- ALTER TABLE `invoice_numbers` MODIFY `number_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=512; -- -- AUTO_INCREMENT for table `invoice_payments` -- ALTER TABLE `invoice_payments` MODIFY `payment_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1516; -- -- AUTO_INCREMENT for table `invoice_quotation_from_mail` -- ALTER TABLE `invoice_quotation_from_mail` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `leads` -- ALTER TABLE `leads` MODIFY `lead_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3282; -- -- AUTO_INCREMENT for table `lead_account_attachments` -- ALTER TABLE `lead_account_attachments` MODIFY `account_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_account_linkurl` -- ALTER TABLE `lead_account_linkurl` MODIFY `account_url_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_attachments` -- ALTER TABLE `lead_attachments` MODIFY `attachment_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; -- -- AUTO_INCREMENT for table `lead_attach_notes` -- ALTER TABLE `lead_attach_notes` MODIFY `notes_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2638; -- -- AUTO_INCREMENT for table `lead_industry` -- ALTER TABLE `lead_industry` MODIFY `industry_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; -- -- AUTO_INCREMENT for table `lead_new_calls` -- ALTER TABLE `lead_new_calls` MODIFY `call_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_new_tasks` -- ALTER TABLE `lead_new_tasks` MODIFY `task_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=63; -- -- AUTO_INCREMENT for table `lead_process` -- ALTER TABLE `lead_process` MODIFY `lead_process_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8; -- -- AUTO_INCREMENT for table `lead_profile_pic` -- ALTER TABLE `lead_profile_pic` MODIFY `profile_pic_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `lead_ratings` -- ALTER TABLE `lead_ratings` MODIFY `rating_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34; -- -- AUTO_INCREMENT for table `lead_source` -- ALTER TABLE `lead_source` MODIFY `source_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `lead_status` -- ALTER TABLE `lead_status` MODIFY `status_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `leaves` -- ALTER TABLE `leaves` MODIFY `leave_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `leave_request` -- ALTER TABLE `leave_request` MODIFY `request_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `leave_types` -- ALTER TABLE `leave_types` MODIFY `lea_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `masters` -- ALTER TABLE `masters` MODIFY `master_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=56; -- -- AUTO_INCREMENT for table `master_type` -- ALTER TABLE `master_type` MODIFY `master_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=28; -- -- AUTO_INCREMENT for table `menu` -- ALTER TABLE `menu` MODIFY `menu_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26; -- -- AUTO_INCREMENT for table `msg_template` -- ALTER TABLE `msg_template` MODIFY `templet_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `new_account` -- ALTER TABLE `new_account` MODIFY `account_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=756; -- -- AUTO_INCREMENT for table `new_contact` -- ALTER TABLE `new_contact` MODIFY `contact_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; -- -- AUTO_INCREMENT for table `new_potential` -- ALTER TABLE `new_potential` MODIFY `potential_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=76; -- -- AUTO_INCREMENT for table `new_task` -- ALTER TABLE `new_task` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `old_quotation_details` -- ALTER TABLE `old_quotation_details` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=230; -- -- AUTO_INCREMENT for table `potential_activities` -- ALTER TABLE `potential_activities` MODIFY `pactivities_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `potential_attachments` -- ALTER TABLE `potential_attachments` MODIFY `pattachment_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `potential_attach_notes` -- ALTER TABLE `potential_attach_notes` MODIFY `notes_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23; -- -- AUTO_INCREMENT for table `potential_competitor` -- ALTER TABLE `potential_competitor` MODIFY `competitor_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `product_renewal` -- ALTER TABLE `product_renewal` MODIFY `product_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `quick_contact` -- ALTER TABLE `quick_contact` MODIFY `contact_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `quotations` -- ALTER TABLE `quotations` MODIFY `quotation_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=730; -- -- AUTO_INCREMENT for table `report_menu` -- ALTER TABLE `report_menu` MODIFY `report_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; -- -- AUTO_INCREMENT for table `role` -- ALTER TABLE `role` MODIFY `role_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `roles` -- ALTER TABLE `roles` MODIFY `role_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=75; -- -- AUTO_INCREMENT for table `salary` -- ALTER TABLE `salary` MODIFY `salary_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; -- -- AUTO_INCREMENT for table `service_type` -- ALTER TABLE `service_type` MODIFY `service_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `share_project_task` -- ALTER TABLE `share_project_task` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sms` -- ALTER TABLE `sms` MODIFY `sms_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54; -- -- AUTO_INCREMENT for table `stage_master` -- ALTER TABLE `stage_master` MODIFY `smaster_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=38; -- -- AUTO_INCREMENT for table `task_shared_persons` -- ALTER TABLE `task_shared_persons` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `tickets` -- ALTER TABLE `tickets` MODIFY `ticket_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=196; -- -- AUTO_INCREMENT for table `user_type` -- ALTER TABLE `user_type` MODIFY `user_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `yaskawa_access_controls` -- ALTER TABLE `yaskawa_access_controls` MODIFY `access_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT for table `yaskawa_emp_status_master` -- ALTER TABLE `yaskawa_emp_status_master` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `yaskawa_emp_type` -- ALTER TABLE `yaskawa_emp_type` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `yaskawa_location_master` -- ALTER TABLE `yaskawa_location_master` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `yaskawa_menu` -- ALTER TABLE `yaskawa_menu` MODIFY `menu_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60; -- -- AUTO_INCREMENT for table `yaskawa_potential_stage_master` -- ALTER TABLE `yaskawa_potential_stage_master` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; -- -- AUTO_INCREMENT for table `yaskawa_potential_type_master` -- ALTER TABLE `yaskawa_potential_type_master` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `yaskawa_user_type` -- ALTER TABLE `yaskawa_user_type` MODIFY `user_type_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; COMMIT; /*!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 */;